Version Description
February 10, 2016 =
Added: Lithuanian language files
Added: German language files
Improved: Settings sidebar
Fixed: Don't display paid watermark when payment method is Cash on Delivery
Fixed: mPDF already included
Fixed: Margin between header and address sections
Fixed: Copy .htaccess and index.php files to many times into uploads folder
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4.0 to 2.4.1
- assets/css/admin.css +78 -36
- bootstrap.php +2 -2
- includes/abstracts/abstract-bewpi-document.php +1 -1
- includes/abstracts/abstract-bewpi-invoice.php +13 -2
- includes/be-woocommerce-pdf-invoices.php +18 -90
- includes/partials/settings-sidebar.php +84 -0
- includes/templates/invoices/simple/micro/body.php +2 -2
- includes/templates/invoices/simple/micro/header.php +2 -4
- includes/templates/invoices/simple/micro/style.css +0 -3
- lang/woocommerce-pdf-invoices-de_DE.mo +0 -0
- lang/woocommerce-pdf-invoices-de_DE.po +1177 -0
- lang/woocommerce-pdf-invoices-es_ES.po +92 -92
- lang/woocommerce-pdf-invoices-fr_FR.po +92 -92
- lang/woocommerce-pdf-invoices-lt_LT.mo +0 -0
- lang/woocommerce-pdf-invoices-lt_LT.po +665 -0
- lang/woocommerce-pdf-invoices-nb_NO.po +98 -98
- lang/woocommerce-pdf-invoices-nl_NL.mo +0 -0
- lang/woocommerce-pdf-invoices-nl_NL.po +101 -101
- lang/woocommerce-pdf-invoices-ro_RO.po +745 -745
- lang/woocommerce-pdf-invoices-ru_RU.po +711 -711
- lang/woocommerce-pdf-invoices-sk_SK.po +1 -1
- lang/woocommerce-pdf-invoices-sl_SI.po +92 -92
- lang/woocommerce-pdf-invoices-sv_SE.po +92 -92
- lang/woocommerce-pdf-invoices.pot +130 -130
- lib/mpdf/ttfontdata/opensansB.cw127.php +148 -0
- readme.txt +12 -2
assets/css/admin.css
CHANGED
@@ -1,44 +1,16 @@
|
|
1 |
-
form.
|
2 |
width: 75%;
|
3 |
display: block;
|
4 |
float: left;
|
5 |
padding-right: 40px;
|
6 |
box-sizing: border-box;
|
7 |
}
|
8 |
-
.
|
9 |
-
|
10 |
-
|
11 |
-
display: block;
|
12 |
-
float: right;
|
13 |
-
clear: right;
|
14 |
-
border: 1px solid #ccc;
|
15 |
-
background-color: white;
|
16 |
-
padding: 0 20px 20px;
|
17 |
-
margin-top: 20px;
|
18 |
-
}
|
19 |
-
.bewpi_sidebar.premium h3 {
|
20 |
-
color: white;
|
21 |
-
}
|
22 |
-
.bewpi_sidebar.premium {
|
23 |
-
background: #222;
|
24 |
-
color: #ccc;
|
25 |
-
}
|
26 |
-
.bewpi_sidebar.support .btn {
|
27 |
-
margin: 10px 10px 10px 0;
|
28 |
-
}
|
29 |
-
.bewpi_sidebar.support .github.btn {
|
30 |
-
margin-bottom: -3px !important;
|
31 |
-
margin-top: 20px;
|
32 |
-
}
|
33 |
-
.bewpi_sidebar.support .twitter.btn {
|
34 |
-
margin-bottom: 0 !important;
|
35 |
-
}
|
36 |
-
.be_woocommerce_pdf_invoices_settings_form select,
|
37 |
-
.be_woocommerce_pdf_invoices_settings_form input[type="text"],
|
38 |
-
.be_woocommerce_pdf_invoices_settings_form textarea {
|
39 |
width: 348px;
|
40 |
}
|
41 |
-
.
|
42 |
#bewpi-color-theme {
|
43 |
width: 70px;
|
44 |
}
|
@@ -107,11 +79,44 @@ form.be_woocommerce_pdf_invoices_settings_form {
|
|
107 |
#bewpi-plugin-activated-notice button.notice-dismiss {
|
108 |
display: none;
|
109 |
}
|
110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
margin: 0 !important;
|
112 |
padding: 0;
|
113 |
}
|
114 |
-
#
|
115 |
width: 100%;
|
116 |
}
|
117 |
.bewpi-learn-more {
|
@@ -128,9 +133,46 @@ form.be_woocommerce_pdf_invoices_settings_form {
|
|
128 |
background-color: #EE7600;
|
129 |
color: white;
|
130 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
@media screen and (max-width: 790px) {
|
133 |
-
.
|
134 |
display: none;
|
135 |
}
|
136 |
}
|
1 |
+
form.bewpi-settings-form {
|
2 |
width: 75%;
|
3 |
display: block;
|
4 |
float: left;
|
5 |
padding-right: 40px;
|
6 |
box-sizing: border-box;
|
7 |
}
|
8 |
+
.bewpi-settings-form select,
|
9 |
+
.bewpi-settings-form input[type="text"],
|
10 |
+
.bewpi-settings-form textarea {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
width: 348px;
|
12 |
}
|
13 |
+
.bewpi-settings-form input[type="number"],
|
14 |
#bewpi-color-theme {
|
15 |
width: 70px;
|
16 |
}
|
79 |
#bewpi-plugin-activated-notice button.notice-dismiss {
|
80 |
display: none;
|
81 |
}
|
82 |
+
/* Sidebar */
|
83 |
+
.bewpi-sidebar {
|
84 |
+
width: 25%;
|
85 |
+
box-sizing: border-box;
|
86 |
+
display: block;
|
87 |
+
float: right;
|
88 |
+
clear: right;
|
89 |
+
border: 1px solid #ccc;
|
90 |
+
background-color: white;
|
91 |
+
padding: 0 20px 20px;
|
92 |
+
margin-top: 20px;
|
93 |
+
}
|
94 |
+
.bewpi-sidebar.premium h3 {
|
95 |
+
color: white;
|
96 |
+
}
|
97 |
+
.bewpi-sidebar.premium {
|
98 |
+
background: #222;
|
99 |
+
color: #ccc;
|
100 |
+
}
|
101 |
+
.bewpi-sidebar.support .btn {
|
102 |
+
margin: 10px 10px 10px 0;
|
103 |
+
}
|
104 |
+
.bewpi-sidebar.support .github.btn {
|
105 |
+
margin-bottom: -3px !important;
|
106 |
+
margin-top: 20px;
|
107 |
+
}
|
108 |
+
.bewpi-sidebar.support .twitter.btn {
|
109 |
+
margin-bottom: 0 !important;
|
110 |
+
}
|
111 |
+
#bewpi-mc-embed-signup {
|
112 |
+
background: #222;
|
113 |
+
clear:left;
|
114 |
+
}
|
115 |
+
#bewpi-mc-embed-signup form {
|
116 |
margin: 0 !important;
|
117 |
padding: 0;
|
118 |
}
|
119 |
+
#bewpi-mc-embed-signup input[type="text"] {
|
120 |
width: 100%;
|
121 |
}
|
122 |
.bewpi-learn-more {
|
133 |
background-color: #EE7600;
|
134 |
color: white;
|
135 |
}
|
136 |
+
#bewpi-mc-embed-signup input.button {
|
137 |
+
margin: 0 !important;
|
138 |
+
}
|
139 |
+
#bewpi-mc-embedded-subscribe:hover {
|
140 |
+
background-color: #EE7600 !important;
|
141 |
+
}
|
142 |
+
#bewpi-mc-embedded-subscribe {
|
143 |
+
padding: 10px 0;
|
144 |
+
background-color: #F48C2D;
|
145 |
+
color: white;
|
146 |
+
text-decoration: none;
|
147 |
+
display: block;
|
148 |
+
font-weight: bold;
|
149 |
+
font-size: 15px;
|
150 |
+
text-align: center;
|
151 |
+
border-radius: 0;
|
152 |
+
box-shadow: none;
|
153 |
+
height: auto;
|
154 |
+
width: 100%;
|
155 |
+
line-height: normal;
|
156 |
+
border: none;
|
157 |
+
}
|
158 |
+
#bewpi-mce-EMAIL {
|
159 |
+
width: 100%;
|
160 |
+
border-radius: 0;
|
161 |
+
margin-top: 20px;
|
162 |
+
margin-left: 0;
|
163 |
+
border: 1px solid #ccc;
|
164 |
+
padding: 10px;
|
165 |
+
margin-bottom: 10px;
|
166 |
+
}
|
167 |
+
.bewpi-no-spam {
|
168 |
+
font-size: 11px;
|
169 |
+
text-align: center;
|
170 |
+
margin-top: 1px !important;
|
171 |
+
}
|
172 |
+
/* End sidebar */
|
173 |
|
174 |
@media screen and (max-width: 790px) {
|
175 |
+
.bewpi-sidebar {
|
176 |
display: none;
|
177 |
}
|
178 |
}
|
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.4.
|
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.4.
|
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.1
|
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.1' );
|
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,7 +42,7 @@ 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(
|
42 |
*/
|
43 |
protected function generate( $html_sections, $dest, $paid ) {
|
44 |
set_time_limit(0);
|
45 |
+
require_once BEWPI_LIB_DIR . 'mpdf/mpdf.php';
|
46 |
|
47 |
$mpdf_options = $this->get_mpdf_options();
|
48 |
$mpdf = new mPDF(
|
includes/abstracts/abstract-bewpi-invoice.php
CHANGED
@@ -174,6 +174,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
174 |
* Get all html from html files and store as vars
|
175 |
*/
|
176 |
private function output_template_files_to_buffer( $html_template_files ) {
|
|
|
177 |
$html_sections = array();
|
178 |
|
179 |
foreach ( $html_template_files as $section => $full_path ) {
|
@@ -181,6 +182,8 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
181 |
$html_sections[ $section ] = $html;
|
182 |
}
|
183 |
|
|
|
|
|
184 |
return $html_sections;
|
185 |
}
|
186 |
|
@@ -236,6 +239,10 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
236 |
return $wpdb->get_var( $query );
|
237 |
}
|
238 |
|
|
|
|
|
|
|
|
|
239 |
/**
|
240 |
* Generates and saves the invoice to the uploads folder.
|
241 |
* @param $dest
|
@@ -287,7 +294,11 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
287 |
* @return bool
|
288 |
*/
|
289 |
public function is_paid() {
|
290 |
-
|
|
|
|
|
|
|
|
|
291 |
}
|
292 |
|
293 |
/**
|
@@ -346,7 +357,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
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 |
}
|
174 |
* Get all html from html files and store as vars
|
175 |
*/
|
176 |
private function output_template_files_to_buffer( $html_template_files ) {
|
177 |
+
do_action( 'bewpi_before_output_template_to_buffer', array( 'order_id' => $this->order->id ) );
|
178 |
$html_sections = array();
|
179 |
|
180 |
foreach ( $html_template_files as $section => $full_path ) {
|
182 |
$html_sections[ $section ] = $html;
|
183 |
}
|
184 |
|
185 |
+
do_action( 'bewpi_after_output_template_to_buffer' );
|
186 |
+
|
187 |
return $html_sections;
|
188 |
}
|
189 |
|
239 |
return $wpdb->get_var( $query );
|
240 |
}
|
241 |
|
242 |
+
public function sh_icl_current_language($lang){
|
243 |
+
return 'nl';
|
244 |
+
}
|
245 |
+
|
246 |
/**
|
247 |
* Generates and saves the invoice to the uploads folder.
|
248 |
* @param $dest
|
294 |
* @return bool
|
295 |
*/
|
296 |
public function is_paid() {
|
297 |
+
if ( $this->order->payment_method_title !== 'Cash on Delivery' ) {
|
298 |
+
return false;
|
299 |
+
}
|
300 |
+
|
301 |
+
return ( ! in_array( $this->order->get_status(), array( 'pending', 'on-hold', 'auto-draft' ) ) );
|
302 |
}
|
303 |
|
304 |
/**
|
357 |
// try base64 encoding with or without relative path if MPDF gives images errors.
|
358 |
//$image_url = image_to_base64( $image_url );
|
359 |
|
360 |
+
echo '<img class="company-logo" style="max-height: 250px;" src="' . $image_url . '"/>';
|
361 |
} else {
|
362 |
echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
|
363 |
}
|
includes/be-woocommerce-pdf-invoices.php
CHANGED
@@ -225,11 +225,20 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
225 |
* Creates invoices dir in uploads folder
|
226 |
*/
|
227 |
private function create_bewpi_dirs() {
|
228 |
-
//
|
229 |
-
|
230 |
-
copy( BEWPI_DIR . 'tmp/.htaccess', BEWPI_INVOICES_DIR . date_i18n( 'Y' ) . '/.htaccess' );
|
231 |
-
copy( BEWPI_DIR . 'tmp/index.php', BEWPI_INVOICES_DIR . date_i18n( 'Y' ) . '/index.php' );
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
wp_mkdir_p( BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR . 'simple/' );
|
234 |
|
235 |
do_action( 'mk_custom_template_invoices_dir' );
|
@@ -284,7 +293,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
284 |
</script>
|
285 |
<div class="wrap">
|
286 |
<?php $this->plugin_options_tabs(); ?>
|
287 |
-
<form class="
|
288 |
enctype="multipart/form-data">
|
289 |
<?php wp_nonce_field( 'update-options' ); ?>
|
290 |
<?php settings_fields( $tab ); ?>
|
@@ -301,88 +310,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
301 |
}
|
302 |
|
303 |
private function options_page_sidebar_html() {
|
304 |
-
|
305 |
-
<aside class="bewpi_sidebar premium">
|
306 |
-
<h3><?php _e( 'WooCommerce PDF Invoices Premium', 'woocommerce-pdf-invoices' ); ?></h3>
|
307 |
-
<p>
|
308 |
-
<?php _e( 'This plugin offers a premium version which comes with the following features:', 'woocommerce-pdf-invoices' ); ?><br/>
|
309 |
-
- <?php _e( 'Bill periodically by generating and sending global invoices.', 'woocommerce-pdf-invoices' ); ?><br/>
|
310 |
-
- <?php _e( 'Add additional PDF\'s to customer invoices.', 'woocommerce-pdf-invoices' ); ?><br/>
|
311 |
-
- <?php _e( 'Send customer invoices directly to suppliers and others.', 'woocommerce-pdf-invoices' ); ?><br/>
|
312 |
-
- <?php printf( __( 'Compatible with <a href="%s">WooCommerce Subscriptions</a> plugin emails.', 'woocommerce-pdf-invoices' ), "http://www.woothemes.com/products/woocommerce-subscriptions/" ); ?><br/>
|
313 |
-
</p>
|
314 |
-
<a class="bewpi-learn-more" href="http://wcpdfinvoices.com" target="_blank"><?php _e ( 'Learn more', 'woocommerce-pdf-invoices' ); ?></a>
|
315 |
-
</aside>
|
316 |
-
|
317 |
-
<aside class="bewpi_sidebar premium">
|
318 |
-
<h3><?php _e( 'Stay up-to-date', 'woocommerce-pdf-invoices' ); ?></h3>
|
319 |
-
<!-- Begin MailChimp Signup Form -->
|
320 |
-
<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
|
321 |
-
<style type="text/css">
|
322 |
-
#mc_embed_signup{background: #222; clear:left;}
|
323 |
-
#mc-embedded-subscribe:hover { background-color: #EE7600 !important; }
|
324 |
-
#mc_embed_signup input.button { margin: 0 !important; }
|
325 |
-
</style>
|
326 |
-
<p>
|
327 |
-
<?php _e( 'We\'re constantly developing new features, stay up-to-date by subscribing to our newsletter.', 'woocommerce-pdf-invoices' ); ?>
|
328 |
-
</p>
|
329 |
-
<div id="mc_embed_signup">
|
330 |
-
<form action="//wcpdfinvoices.us11.list-manage.com/subscribe/post?u=f270649bc41a9687a38a8977f&id=395e1e319a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate style="padding: 0">
|
331 |
-
<div id="mc_embed_signup_scroll">
|
332 |
-
<?php $user_email = get_the_author_meta( 'user_email', get_current_user_id() ) ?>
|
333 |
-
<input style="width: 100%; border-radius: 0; margin-top: 20px; border: 1px solid #ccc;" type="email" value="<?php if( $user_email !== "" ) echo $user_email; ?>" name="EMAIL" class="email" id="mce-EMAIL" placeholder="<?php _e( 'Your email address', 'woocommerce-pdf-invoices' ); ?>" required>
|
334 |
-
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
335 |
-
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f270649bc41a9687a38a8977f_395e1e319a" tabindex="-1" value=""></div>
|
336 |
-
<div class="clear"><input style="width: 100%; background-color: #F48C2D; border-radius: 0; height: 37px;box-shadow: none;" type="submit" value="<?php _e( 'Signup', 'woocommerce-pdf-invoices' ); ?>" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
|
337 |
-
<div style="font-size: 11px; text-align: center; margin-top: 1px !important;"><?php _e( 'No spam, ever. Unsubscribe at any time', 'woocommerce-pdf-invoices' ); ?></div>
|
338 |
-
</div>
|
339 |
-
</form>
|
340 |
-
</div>
|
341 |
-
<!--End mc_embed_signup-->
|
342 |
-
</aside>
|
343 |
-
|
344 |
-
<aside class="bewpi_sidebar about">
|
345 |
-
<h3><?php _e( 'About', 'woocommerce-pdf-invoices' ); ?></h3>
|
346 |
-
<p><?php _e( 'This plugin is an open source project wich aims to fill the invoicing gap of <a href="http://www.woothemes.com/woocommerce">WooCommerce</a>.' , 'woocommerce-pdf-invoices' ); ?></p>
|
347 |
-
<?php _e( '<b>Version</b>: ' . BEWPI_VERSION, 'woocommerce-pdf-invoices' ); ?>
|
348 |
-
<br/>
|
349 |
-
<?php _e( '<b>Author</b>: <a href="https://github.com/baselbers">Bas Elbers</a>', 'woocommerce-pdf-invoices' ); ?>
|
350 |
-
</aside>
|
351 |
-
<aside class="bewpi_sidebar support">
|
352 |
-
<h3><?php _e( 'Support', 'woocommerce-pdf-invoices' ); ?></h3>
|
353 |
-
<p><?php _e( 'We will never ask for donations, but to garantee future development, we do need your support. Please show us your appreciation by leaving a <a href="https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform">★★★★★</a> rating and vote for <a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/">works</a>.', 'woocommerce-pdf-invoices' ); ?></p>
|
354 |
-
<!-- Github star -->
|
355 |
-
<div class="github btn">
|
356 |
-
<iframe src="https://ghbtns.com/github-btn.html?user=baselbers&repo=woocommerce-pdf-invoices&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
|
357 |
-
</div>
|
358 |
-
<!-- FB share -->
|
359 |
-
<div class="btn">
|
360 |
-
<div id="fb-root"></div>
|
361 |
-
<script>(function(d, s, id) {
|
362 |
-
var js, fjs = d.getElementsByTagName(s)[0];
|
363 |
-
if (d.getElementById(id)) return;
|
364 |
-
js = d.createElement(s); js.id = id;
|
365 |
-
js.src = "//connect.facebook.net/<?php echo $this->lang_code; ?>/sdk.js#xfbml=1&version=v2.4&appId=483906578380615";
|
366 |
-
fjs.parentNode.insertBefore(js, fjs);
|
367 |
-
}(document, 'script', 'facebook-jssdk'));</script>
|
368 |
-
<div class="fb-share-button" data-href="https://wordpress.org/plugins/woocommerce-pdf-invoices/" data-layout="button_count"></div>
|
369 |
-
</div>
|
370 |
-
<!-- Tweet -->
|
371 |
-
<div class="twitter btn">
|
372 |
-
<a href="https://twitter.com/share" class="twitter-share-button" data-url="https://wordpress.org/plugins/woocommerce-pdf-invoices/" data-text="<?php _e( 'Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!', 'woocommerce-pdf-invoices' ); ?>">Tweet</a>
|
373 |
-
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
374 |
-
</div>
|
375 |
-
</aside>
|
376 |
-
<aside class="bewpi_sidebar need-help">
|
377 |
-
<h3><?php _e( 'Need Help?', 'woocommerce-pdf-invoices' ); ?></h3>
|
378 |
-
<ul>
|
379 |
-
<li><a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/faq/"><?php _e( 'Frequently Asked Questions', 'woocommerce-pdf-invoices' ); ?> </a></li>
|
380 |
-
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Support forum', 'woocommerce-pdf-invoices' ); ?></a></li>
|
381 |
-
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Request a feature', 'woocommerce-pdf-invoices' ); ?></a></li>
|
382 |
-
<li><a href="mailto:baselbers@hotmail.com"><?php _e( 'Email us', 'woocommerce-pdf-invoices' ); ?></a></li>
|
383 |
-
</ul>
|
384 |
-
</aside>
|
385 |
-
<?php
|
386 |
}
|
387 |
|
388 |
/**
|
@@ -422,7 +350,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
422 |
|
423 |
if ( $status == $general_options[ 'bewpi_email_type'] || $general_options['bewpi_new_order'] && $status == "new_order" ) {
|
424 |
$invoice = new BEWPI_Invoice( $order->id );
|
425 |
-
// create new invoice if doesn't exists, else get the full path
|
426 |
$full_path = ( ! $invoice->exists() ) ? $invoice->save( "F" ) : $invoice->get_full_path();
|
427 |
$attachments[] = $full_path;
|
428 |
}
|
@@ -559,7 +487,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
559 |
|
560 |
if ( $datetime_past >= $datetime_install ) {
|
561 |
// 10 or more days ago, show admin notice
|
562 |
-
add_action( 'admin_notices', array( &$this, '
|
563 |
}
|
564 |
}
|
565 |
|
@@ -636,7 +564,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
636 |
/**
|
637 |
* Ask admin to review plugin.
|
638 |
*/
|
639 |
-
public function
|
640 |
$query_params = $this->get_admin_querystring_array();
|
641 |
$query_string = '?' . http_build_query( array_merge( $query_params, array( self::OPTION_ADMIN_NOTICE_KEY => '1' ) ) );
|
642 |
|
225 |
* Creates invoices dir in uploads folder
|
226 |
*/
|
227 |
private function create_bewpi_dirs() {
|
228 |
+
// invoices
|
229 |
+
$current_year_dir = BEWPI_INVOICES_DIR . date_i18n( 'Y', current_time( 'timestamp' ) ) . "/";
|
|
|
|
|
230 |
|
231 |
+
wp_mkdir_p( $current_year_dir );
|
232 |
+
|
233 |
+
if ( ! file_exists ( $current_year_dir . ".htaccess" ) ) {
|
234 |
+
copy( BEWPI_DIR . 'tmp/.htaccess', $current_year_dir . ".htaccess" );
|
235 |
+
}
|
236 |
+
|
237 |
+
if ( ! file_exists( $current_year_dir . "index.php" ) ) {
|
238 |
+
copy( BEWPI_DIR . 'tmp/index.php', $current_year_dir . "index.php" );
|
239 |
+
}
|
240 |
+
|
241 |
+
// custom templates
|
242 |
wp_mkdir_p( BEWPI_CUSTOM_TEMPLATES_INVOICES_DIR . 'simple/' );
|
243 |
|
244 |
do_action( 'mk_custom_template_invoices_dir' );
|
293 |
</script>
|
294 |
<div class="wrap">
|
295 |
<?php $this->plugin_options_tabs(); ?>
|
296 |
+
<form class="bewpi-settings-form" method="post" action="options.php"
|
297 |
enctype="multipart/form-data">
|
298 |
<?php wp_nonce_field( 'update-options' ); ?>
|
299 |
<?php settings_fields( $tab ); ?>
|
310 |
}
|
311 |
|
312 |
private function options_page_sidebar_html() {
|
313 |
+
include( BEWPI_DIR . 'includes/partials/settings-sidebar.php' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
}
|
315 |
|
316 |
/**
|
350 |
|
351 |
if ( $status == $general_options[ 'bewpi_email_type'] || $general_options['bewpi_new_order'] && $status == "new_order" ) {
|
352 |
$invoice = new BEWPI_Invoice( $order->id );
|
353 |
+
// create new invoice if doesn't exists, else get the full path..
|
354 |
$full_path = ( ! $invoice->exists() ) ? $invoice->save( "F" ) : $invoice->get_full_path();
|
355 |
$attachments[] = $full_path;
|
356 |
}
|
487 |
|
488 |
if ( $datetime_past >= $datetime_install ) {
|
489 |
// 10 or more days ago, show admin notice
|
490 |
+
add_action( 'admin_notices', array( &$this, 'display_rate_admin_notice' ) );
|
491 |
}
|
492 |
}
|
493 |
|
564 |
/**
|
565 |
* Ask admin to review plugin.
|
566 |
*/
|
567 |
+
public function display_rate_admin_notice() {
|
568 |
$query_params = $this->get_admin_querystring_array();
|
569 |
$query_string = '?' . http_build_query( array_merge( $query_params, array( self::OPTION_ADMIN_NOTICE_KEY => '1' ) ) );
|
570 |
|
includes/partials/settings-sidebar.php
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<aside class="bewpi-sidebar premium">
|
2 |
+
<h3><?php _e( 'WooCommerce PDF Invoices Premium', 'woocommerce-pdf-invoices' ); ?></h3>
|
3 |
+
<p>
|
4 |
+
<?php _e( 'This plugin offers a premium version which comes with the following features:', 'woocommerce-pdf-invoices' ); ?><br/>
|
5 |
+
- <?php _e( 'Bill periodically by generating and sending global invoices.', 'woocommerce-pdf-invoices' ); ?><br/>
|
6 |
+
- <?php _e( 'Add additional PDF\'s to customer invoices.', 'woocommerce-pdf-invoices' ); ?><br/>
|
7 |
+
- <?php _e( 'Send customer invoices directly to suppliers and others.', 'woocommerce-pdf-invoices' ); ?><br/>
|
8 |
+
- <?php printf( __( 'Compatible with <a href="%s">WooCommerce Subscriptions</a> plugin emails.', 'woocommerce-pdf-invoices' ), "http://www.woothemes.com/products/woocommerce-subscriptions/" ); ?><br/>
|
9 |
+
</p>
|
10 |
+
<a class="bewpi-learn-more" href="http://wcpdfinvoices.com" target="_blank"><?php _e ( 'Learn more', 'woocommerce-pdf-invoices' ); ?></a>
|
11 |
+
</aside>
|
12 |
+
<aside class="bewpi-sidebar premium">
|
13 |
+
<h3><?php _e( 'Stay up-to-date', 'woocommerce-pdf-invoices' ); ?></h3>
|
14 |
+
<!-- Begin MailChimp Signup Form -->
|
15 |
+
<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
|
16 |
+
<p>
|
17 |
+
<?php _e( 'We\'re constantly developing new features, stay up-to-date by subscribing to our newsletter.', 'woocommerce-pdf-invoices' ); ?>
|
18 |
+
</p>
|
19 |
+
<div id="bewpi-mc-embed-signup">
|
20 |
+
<form action="//wcpdfinvoices.us11.list-manage.com/subscribe/post?u=f270649bc41a9687a38a8977f&id=395e1e319a" method="post" id="bewpi-mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate style="padding: 0">
|
21 |
+
<div id="bewpi-mc-embed-signup-scroll">
|
22 |
+
<?php $user_email = get_the_author_meta( 'user_email', get_current_user_id() ) ?>
|
23 |
+
<input type="email" value="<?php if( $user_email !== "" ) echo $user_email; ?>" name="EMAIL" class="email" id="bewpi-mce-EMAIL" placeholder="<?php _e( 'Your email address', 'woocommerce-pdf-invoices' ); ?>" required>
|
24 |
+
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
25 |
+
<div style="position: absolute; left: -5000px;">
|
26 |
+
<input type="text" name="b_f270649bc41a9687a38a8977f_395e1e319a" tabindex="-1" value="">
|
27 |
+
</div>
|
28 |
+
<div class="clear">
|
29 |
+
<input style="" type="submit" value="<?php _e( 'Signup', 'woocommerce-pdf-invoices' ); ?>" name="subscribe" id="bewpi-mc-embedded-subscribe" class="button">
|
30 |
+
</div>
|
31 |
+
<div class="bewpi-no-spam">
|
32 |
+
<?php _e( 'No spam, ever. Unsubscribe at any time', 'woocommerce-pdf-invoices' ); ?>
|
33 |
+
</div>
|
34 |
+
</div>
|
35 |
+
</form>
|
36 |
+
</div>
|
37 |
+
<!--End mc_embed_signup-->
|
38 |
+
</aside>
|
39 |
+
|
40 |
+
<aside class="bewpi-sidebar about">
|
41 |
+
<h3><?php _e( 'About', 'woocommerce-pdf-invoices' ); ?></h3>
|
42 |
+
<p>
|
43 |
+
<?php _e( 'This plugin is an open source project wich aims to fill the invoicing gap of <a href="http://www.woothemes.com/woocommerce">WooCommerce</a>.' , 'woocommerce-pdf-invoices' ); ?>
|
44 |
+
</p>
|
45 |
+
<?php _e( '<b>Version</b>: ' . BEWPI_VERSION, 'woocommerce-pdf-invoices' ); ?>
|
46 |
+
<br/>
|
47 |
+
<?php _e( '<b>Author</b>: <a href="https://github.com/baselbers">Bas Elbers</a>', 'woocommerce-pdf-invoices' ); ?>
|
48 |
+
</aside>
|
49 |
+
<aside class="bewpi-sidebar support">
|
50 |
+
<h3><?php _e( 'Support', 'woocommerce-pdf-invoices' ); ?></h3>
|
51 |
+
<p>
|
52 |
+
<?php _e( 'We will never ask for donations, but to garantee future development, we do need your support. Please show us your appreciation by leaving a <a href="https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform">★★★★★</a> rating and vote for <a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/">works</a>.', 'woocommerce-pdf-invoices' ); ?>
|
53 |
+
</p>
|
54 |
+
<!-- Github star -->
|
55 |
+
<div class="github btn">
|
56 |
+
<iframe src="https://ghbtns.com/github-btn.html?user=baselbers&repo=woocommerce-pdf-invoices&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
|
57 |
+
</div>
|
58 |
+
<!-- FB share -->
|
59 |
+
<div class="btn">
|
60 |
+
<div id="fb-root"></div>
|
61 |
+
<script>(function(d, s, id) {
|
62 |
+
var js, fjs = d.getElementsByTagName(s)[0];
|
63 |
+
if (d.getElementById(id)) return;
|
64 |
+
js = d.createElement(s); js.id = id;
|
65 |
+
js.src = "//connect.facebook.net/<?php echo $this->lang_code; ?>/sdk.js#xfbml=1&version=v2.4&appId=483906578380615";
|
66 |
+
fjs.parentNode.insertBefore(js, fjs);
|
67 |
+
}(document, 'script', 'facebook-jssdk'));</script>
|
68 |
+
<div class="fb-share-button" data-href="https://wordpress.org/plugins/woocommerce-pdf-invoices/" data-layout="button_count"></div>
|
69 |
+
</div>
|
70 |
+
<!-- Tweet -->
|
71 |
+
<div class="twitter btn">
|
72 |
+
<a href="https://twitter.com/share" class="twitter-share-button" data-url="https://wordpress.org/plugins/woocommerce-pdf-invoices/" data-text="<?php _e( 'Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!', 'woocommerce-pdf-invoices' ); ?>">Tweet</a>
|
73 |
+
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
|
74 |
+
</div>
|
75 |
+
</aside>
|
76 |
+
<aside class="bewpi-sidebar need-help">
|
77 |
+
<h3><?php _e( 'Need Help?', 'woocommerce-pdf-invoices' ); ?></h3>
|
78 |
+
<ul>
|
79 |
+
<li><a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/faq/"><?php _e( 'Frequently Asked Questions', 'woocommerce-pdf-invoices' ); ?> </a></li>
|
80 |
+
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Support forum', 'woocommerce-pdf-invoices' ); ?></a></li>
|
81 |
+
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Request a feature', 'woocommerce-pdf-invoices' ); ?></a></li>
|
82 |
+
<li><a href="mailto:baselbers@hotmail.com"><?php _e( 'Email us', 'woocommerce-pdf-invoices' ); ?></a></li>
|
83 |
+
</ul>
|
84 |
+
</aside>
|
includes/templates/invoices/simple/micro/body.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<table class="two-column customer">
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
-
<td class="address small-font">
|
5 |
<b><?php _e( 'Invoice to', 'woocommerce-pdf-invoices' ); ?></b><br/>
|
6 |
<?php echo $this->order->get_formatted_billing_address(); ?><br/>
|
7 |
<?php if ( $this->order->billing_phone != "" ) printf( __( 'Phone: %s', 'woocommerce-pdf-invoices' ), $this->order->billing_phone ); ?>
|
8 |
</td>
|
9 |
-
<td class="address small-font">
|
10 |
<?php if ( $this->order->get_formatted_shipping_address() != "" ) { ?>
|
11 |
<b><?php _e( 'Ship to', 'woocommerce-pdf-invoices' ); ?></b><br/>
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
1 |
<table class="two-column customer">
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
+
<td class="address small-font" width="50%">
|
5 |
<b><?php _e( 'Invoice to', 'woocommerce-pdf-invoices' ); ?></b><br/>
|
6 |
<?php echo $this->order->get_formatted_billing_address(); ?><br/>
|
7 |
<?php if ( $this->order->billing_phone != "" ) printf( __( 'Phone: %s', 'woocommerce-pdf-invoices' ), $this->order->billing_phone ); ?>
|
8 |
</td>
|
9 |
+
<td class="address small-font" width="50%">
|
10 |
<?php if ( $this->order->get_formatted_shipping_address() != "" ) { ?>
|
11 |
<b><?php _e( 'Ship to', 'woocommerce-pdf-invoices' ); ?></b><br/>
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
includes/templates/invoices/simple/micro/header.php
CHANGED
@@ -1,11 +1,9 @@
|
|
1 |
<table class="company two-column">
|
2 |
-
<tbody>
|
3 |
<tr>
|
4 |
-
<td class="logo"><?php $this->get_company_logo_html(); ?></td>
|
5 |
-
<td class="info">
|
6 |
<?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?><br/>
|
7 |
<?php echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
|
8 |
</td>
|
9 |
</tr>
|
10 |
-
</tbody>
|
11 |
</table>
|
1 |
<table class="company two-column">
|
|
|
2 |
<tr>
|
3 |
+
<td class="logo" width="50%"><?php $this->get_company_logo_html(); ?></td>
|
4 |
+
<td class="info" width="50%">
|
5 |
<?php echo nl2br( $this->template_options['bewpi_company_address'] ); ?><br/>
|
6 |
<?php echo nl2br( $this->template_options['bewpi_company_details'] ); ?>
|
7 |
</td>
|
8 |
</tr>
|
|
|
9 |
</table>
|
includes/templates/invoices/simple/micro/style.css
CHANGED
@@ -4,9 +4,6 @@ div, table, td, tr, tfoot, tbody, thead, span, h1, h2, h3, h4, img {
|
|
4 |
h1.company-logo {
|
5 |
color: black;
|
6 |
}
|
7 |
-
img.company-logo {
|
8 |
-
max-height: 100%;
|
9 |
-
}
|
10 |
table {
|
11 |
border-collapse: collapse;
|
12 |
font-size: 14px;
|
4 |
h1.company-logo {
|
5 |
color: black;
|
6 |
}
|
|
|
|
|
|
|
7 |
table {
|
8 |
border-collapse: collapse;
|
9 |
font-size: 14px;
|
lang/woocommerce-pdf-invoices-de_DE.mo
ADDED
Binary file
|
lang/woocommerce-pdf-invoices-de_DE.po
ADDED
@@ -0,0 +1,1177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: de_DE\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.3\n"
|
13 |
+
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
|
22 |
+
#: includes/abstracts/abstract-bewpi-document.php:64
|
23 |
+
msgid "Paid"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
+
#, php-format
|
28 |
+
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:267
|
34 |
+
#, php-format
|
35 |
+
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:310
|
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-invoice.php:372
|
47 |
+
#, php-format
|
48 |
+
msgid "VAT Number: %s"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
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 ""
|
59 |
+
|
60 |
+
#: includes/abstracts/abstract-bewpi-setting.php:173
|
61 |
+
msgid "Remove logo"
|
62 |
+
msgstr "Logo entfernen"
|
63 |
+
|
64 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:86
|
65 |
+
msgid "Attach to Email"
|
66 |
+
msgstr "An Email anhängen"
|
67 |
+
|
68 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:94
|
69 |
+
msgid "Processing order"
|
70 |
+
msgstr "Bearbeiten der Bestellung"
|
71 |
+
|
72 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:98
|
73 |
+
msgid "Completed order"
|
74 |
+
msgstr "Fertiggestellte Bestellung"
|
75 |
+
|
76 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:102
|
77 |
+
msgid "Customer invoice"
|
78 |
+
msgstr "Kundenrechnung"
|
79 |
+
|
80 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:106
|
81 |
+
msgid "Do not attach"
|
82 |
+
msgstr "Nicht anhängen"
|
83 |
+
|
84 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:120
|
85 |
+
msgid "Attach to New order Email"
|
86 |
+
msgstr "An neue Bestell-Email anhängen"
|
87 |
+
|
88 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
89 |
+
msgid "View PDF"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
93 |
+
msgid "Download"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
97 |
+
msgid "Open in new browser tab/window"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
101 |
+
msgid "Enable download from account"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
105 |
+
msgid ""
|
106 |
+
"<br/><div class=\"bewpi-notes\">Let customers download invoice from account "
|
107 |
+
"page.</div>"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
111 |
+
msgid "Enable Email It In"
|
112 |
+
msgstr "Enable Email It In"
|
113 |
+
|
114 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:174
|
115 |
+
msgid "Email It In account"
|
116 |
+
msgstr "Email It In account"
|
117 |
+
|
118 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:179
|
119 |
+
#, php-format
|
120 |
+
msgid "Get your account from your Email It In %suser account%s."
|
121 |
+
msgstr "Get your account from your Email It In %suser account%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 "Email Optionen"
|
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 "Cloud Storage Optionen"
|
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 "
|
151 |
+
"Egnyte and enter your account below."
|
152 |
+
msgstr ""
|
153 |
+
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
154 |
+
"Egnyte and enter your account below."
|
155 |
+
|
156 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
157 |
+
#: includes/be-woocommerce-pdf-invoices.php:219
|
158 |
+
msgid "Template"
|
159 |
+
msgstr "Template"
|
160 |
+
|
161 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
162 |
+
msgid "Color theme"
|
163 |
+
msgstr "Farben Theme"
|
164 |
+
|
165 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:111
|
166 |
+
msgid "Date format"
|
167 |
+
msgstr "Datumsformat"
|
168 |
+
|
169 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:116
|
170 |
+
#, php-format
|
171 |
+
msgid "%sFormat%s of invoice date and order date."
|
172 |
+
msgstr "%sFormat%s von Rechnungsdatum und Bestellungsdatum."
|
173 |
+
|
174 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:131
|
175 |
+
msgid "Display prices including tax"
|
176 |
+
msgstr "Preis inklusive Mehrwertsteuer anzeigen"
|
177 |
+
|
178 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:132
|
179 |
+
msgid ""
|
180 |
+
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
181 |
+
"still be excluding tax, so disable it within the visible columns section."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:144
|
185 |
+
msgid "Shipping taxable"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:145
|
189 |
+
msgid "Enable to display subtotal including shipping."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:157
|
193 |
+
msgid "Mark invoice as paid"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:158
|
197 |
+
msgid "Invoice will be watermarked when order has been paid."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:166
|
201 |
+
msgid "Company name"
|
202 |
+
msgstr "Firmenname"
|
203 |
+
|
204 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:177
|
205 |
+
msgid "Company logo"
|
206 |
+
msgstr "Firmenlogo"
|
207 |
+
|
208 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
209 |
+
msgid "Company address"
|
210 |
+
msgstr "Firmenadresse"
|
211 |
+
|
212 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
213 |
+
msgid "Displayed in upper-right corner near logo."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
217 |
+
msgid "Company details"
|
218 |
+
msgstr "Firmendetails"
|
219 |
+
|
220 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
221 |
+
msgid "Displayed below company address."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
225 |
+
msgid "Thank you text"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
229 |
+
msgid "Displayed in big colored bar directly after invoice total."
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
233 |
+
msgid "Thank you for your purchase!"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
237 |
+
msgid "Show customer notes"
|
238 |
+
msgstr "Kundenkommentare anzeigen"
|
239 |
+
|
240 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:234
|
241 |
+
msgid "Terms & conditions, policies etc."
|
242 |
+
msgstr "AGB’s‚ Richtlinien etc."
|
243 |
+
|
244 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:239
|
245 |
+
#, php-format
|
246 |
+
msgid ""
|
247 |
+
"Displayed below customer notes and above footer. Want to attach additional "
|
248 |
+
"pages to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
252 |
+
msgid "Items will be shipped within 2 days."
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
256 |
+
msgid "Left footer column."
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
260 |
+
#, php-format
|
261 |
+
msgid "<b>Payment method</b> %s"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
265 |
+
msgid "Right footer column."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
269 |
+
msgid "Leave empty to show page numbering."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
273 |
+
msgid "Type"
|
274 |
+
msgstr "Type"
|
275 |
+
|
276 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
277 |
+
msgid "WooCommerce order number"
|
278 |
+
msgstr "WooCommerce Bestellungsnummer"
|
279 |
+
|
280 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:281
|
281 |
+
msgid "Sequential number"
|
282 |
+
msgstr "Aufeinanderfolgende nummer"
|
283 |
+
|
284 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:295
|
285 |
+
msgid "Reset invoice counter"
|
286 |
+
msgstr "Reset invoice counter"
|
287 |
+
|
288 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:305
|
289 |
+
msgid "Next"
|
290 |
+
msgstr "Weiter"
|
291 |
+
|
292 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:310
|
293 |
+
msgid ""
|
294 |
+
"Reset the invoice counter and start counting from given invoice number.<br/"
|
295 |
+
"><b>Note:</b> Only available for Sequential numbering and value will be "
|
296 |
+
"editable by selecting checkbox. Next number needs to be lower then highest "
|
297 |
+
"existing invoice number or delete invoices first."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
301 |
+
msgid "Digits"
|
302 |
+
msgstr "Ziffern"
|
303 |
+
|
304 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:336
|
305 |
+
msgid "[prefix]"
|
306 |
+
msgstr "[prefix]"
|
307 |
+
|
308 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:347
|
309 |
+
msgid "[suffix]"
|
310 |
+
msgstr "[suffix]"
|
311 |
+
|
312 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:358
|
313 |
+
msgid "Format"
|
314 |
+
msgstr "Format"
|
315 |
+
|
316 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:363
|
317 |
+
#, php-format
|
318 |
+
msgid ""
|
319 |
+
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
320 |
+
"slashes aren't supported."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
324 |
+
msgid "Reset on 1st of january"
|
325 |
+
msgstr "Am 1. Januar zurücksetzen"
|
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 "Prod.Nr."
|
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 "Zwischensumme"
|
338 |
+
|
339 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
340 |
+
msgid "Tax (item)"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
344 |
+
msgid "Tax (total)"
|
345 |
+
msgstr ""
|
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 "Rabatt"
|
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 "Lieferung"
|
360 |
+
|
361 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:464
|
362 |
+
msgid "General Options"
|
363 |
+
msgstr "Allgemeine Optionen"
|
364 |
+
|
365 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:470
|
366 |
+
msgid "Invoice Number Options"
|
367 |
+
msgstr "Rechnungsnummer Optionen"
|
368 |
+
|
369 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:476
|
370 |
+
msgid "Header Options"
|
371 |
+
msgstr "Header Optionen"
|
372 |
+
|
373 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
374 |
+
msgid "Body Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
378 |
+
msgid "Footer Options"
|
379 |
+
msgstr "Footer Optionen"
|
380 |
+
|
381 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:494
|
382 |
+
msgid "Visible Columns"
|
383 |
+
msgstr "Sichtbare Spalten"
|
384 |
+
|
385 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:500
|
386 |
+
msgid "These are the general template options."
|
387 |
+
msgstr "Dies sind die allgemeinen template Optionen."
|
388 |
+
|
389 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:501
|
390 |
+
msgid "These are the invoice number options."
|
391 |
+
msgstr "Dies sind die Rechnungsnummer Optionen"
|
392 |
+
|
393 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:502
|
394 |
+
msgid "The header will be visible on every page. "
|
395 |
+
msgstr "Der Header wird auf jeder Seite sichtbar sein."
|
396 |
+
|
397 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
398 |
+
msgid "The footer will be visible on every page."
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
402 |
+
msgid ""
|
403 |
+
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
404 |
+
"order payment method."
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
408 |
+
msgid "Enable or disable the columns."
|
409 |
+
msgstr "Aktiviere oder deaktiviere die Spalten."
|
410 |
+
|
411 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:579
|
412 |
+
msgid "File is invalid and contains either '..' or './'."
|
413 |
+
msgstr "Datei ist ungültig und enthält entweder '...' oder './'."
|
414 |
+
|
415 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:586
|
416 |
+
msgid "File is invalid and contains ':' after the first character."
|
417 |
+
msgstr "Datei ist ungültig und enthält ':' nach dem ersten Buchstaben."
|
418 |
+
|
419 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:595
|
420 |
+
msgid "File should be less then 2MB."
|
421 |
+
msgstr "Datei sollte kleiner als 2MB sein."
|
422 |
+
|
423 |
+
#: includes/be-woocommerce-pdf-invoices.php:126
|
424 |
+
#, php-format
|
425 |
+
msgid ""
|
426 |
+
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
427 |
+
"PDF Invoices</strong></a>."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/be-woocommerce-pdf-invoices.php:136
|
431 |
+
msgid "Settings"
|
432 |
+
msgstr "Einstellungen"
|
433 |
+
|
434 |
+
#: includes/be-woocommerce-pdf-invoices.php:137
|
435 |
+
msgid "Premium"
|
436 |
+
msgstr "Premium"
|
437 |
+
|
438 |
+
#: includes/be-woocommerce-pdf-invoices.php:182
|
439 |
+
msgid "Invalid request"
|
440 |
+
msgstr "Ungültige Anfrage"
|
441 |
+
|
442 |
+
#: includes/be-woocommerce-pdf-invoices.php:185
|
443 |
+
msgid "Invalid order ID"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: includes/be-woocommerce-pdf-invoices.php:191
|
447 |
+
msgid "Access denied"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: includes/be-woocommerce-pdf-invoices.php:218
|
451 |
+
msgid "General"
|
452 |
+
msgstr "Allgemein"
|
453 |
+
|
454 |
+
#: includes/be-woocommerce-pdf-invoices.php:242
|
455 |
+
msgid "Invoices"
|
456 |
+
msgstr "Rechnungen"
|
457 |
+
|
458 |
+
#: includes/be-woocommerce-pdf-invoices.php:281
|
459 |
+
#, php-format
|
460 |
+
msgid ""
|
461 |
+
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
462 |
+
"%s★★★★★%s rating. A huge thank you in advance!"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/be-woocommerce-pdf-invoices.php:282
|
466 |
+
#, php-format
|
467 |
+
msgid "Version %s"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
471 |
+
msgid "PDF Invoice"
|
472 |
+
msgstr "PDF Rechnung"
|
473 |
+
|
474 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
475 |
+
msgid "Invoiced on:"
|
476 |
+
msgstr "In Rechnung gestellt am:"
|
477 |
+
|
478 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
479 |
+
msgid "Invoice number:"
|
480 |
+
msgstr "Rechnungsnummer:"
|
481 |
+
|
482 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
483 |
+
msgid "View invoice"
|
484 |
+
msgstr "Rechnung anzeigen"
|
485 |
+
|
486 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
487 |
+
msgid "View"
|
488 |
+
msgstr "Anzeigen"
|
489 |
+
|
490 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
491 |
+
msgid "Cancel invoice"
|
492 |
+
msgstr "Rechnung stornieren"
|
493 |
+
|
494 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
495 |
+
msgid "Cancel"
|
496 |
+
msgstr "abbrechen"
|
497 |
+
|
498 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
499 |
+
msgid "Are you sure to delete the invoice?"
|
500 |
+
msgstr "Bist du dir sicher, dass du die Rechnung löschen willst?"
|
501 |
+
|
502 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
503 |
+
msgid "Create invoice"
|
504 |
+
msgstr "Rechnung erstellen"
|
505 |
+
|
506 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
507 |
+
msgid "Create"
|
508 |
+
msgstr "Erstellen"
|
509 |
+
|
510 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
511 |
+
#, php-format
|
512 |
+
msgid "Invoice %s (PDF)"
|
513 |
+
msgstr "Rechnung %s (PDF)"
|
514 |
+
|
515 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
516 |
+
#, php-format
|
517 |
+
msgid ""
|
518 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
519 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
520 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
521 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
522 |
+
"done it!</a>"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: includes/class-bewpi-invoice.php:48
|
526 |
+
msgid ""
|
527 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
528 |
+
"page first."
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/partials/settings-sidebar.php:2
|
532 |
+
msgid "WooCommerce PDF Invoices Premium"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/partials/settings-sidebar.php:4
|
536 |
+
msgid ""
|
537 |
+
"This plugin offers a premium version which comes with the following features:"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/partials/settings-sidebar.php:5
|
541 |
+
msgid "Bill periodically by generating and sending global invoices."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/partials/settings-sidebar.php:6
|
545 |
+
msgid "Add additional PDF's to customer invoices."
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/partials/settings-sidebar.php:7
|
549 |
+
msgid "Send customer invoices directly to suppliers and others."
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/partials/settings-sidebar.php:8
|
553 |
+
#, php-format
|
554 |
+
msgid ""
|
555 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: includes/partials/settings-sidebar.php:10
|
559 |
+
msgid "Learn more"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/partials/settings-sidebar.php:13
|
563 |
+
msgid "Stay up-to-date"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/partials/settings-sidebar.php:17
|
567 |
+
msgid ""
|
568 |
+
"We're constantly developing new features, stay up-to-date by subscribing to "
|
569 |
+
"our newsletter."
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/partials/settings-sidebar.php:23
|
573 |
+
msgid "Your email address"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/partials/settings-sidebar.php:29
|
577 |
+
msgid "Signup"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/partials/settings-sidebar.php:32
|
581 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/partials/settings-sidebar.php:41
|
585 |
+
msgid "About"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/partials/settings-sidebar.php:43
|
589 |
+
msgid ""
|
590 |
+
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
591 |
+
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: includes/partials/settings-sidebar.php:45
|
595 |
+
msgid "<b>Version</b>: "
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/partials/settings-sidebar.php:47
|
599 |
+
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/partials/settings-sidebar.php:50
|
603 |
+
msgid "Support"
|
604 |
+
msgstr "Hilfe"
|
605 |
+
|
606 |
+
#: includes/partials/settings-sidebar.php:52
|
607 |
+
msgid ""
|
608 |
+
"We will never ask for donations, but to garantee future development, we do "
|
609 |
+
"need your support. Please show us your appreciation by leaving a <a href="
|
610 |
+
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
611 |
+
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
612 |
+
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: includes/partials/settings-sidebar.php:72
|
616 |
+
msgid ""
|
617 |
+
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/partials/settings-sidebar.php:77
|
621 |
+
msgid "Need Help?"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/partials/settings-sidebar.php:79
|
625 |
+
msgid "Frequently Asked Questions"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/partials/settings-sidebar.php:80
|
629 |
+
msgid "Support forum"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/partials/settings-sidebar.php:81
|
633 |
+
msgid "Request a feature"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/partials/settings-sidebar.php:82
|
637 |
+
msgid "Email us"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/templates/invoices/global/micro/body.php:5
|
641 |
+
#: includes/templates/invoices/simple/micro/body.php:5
|
642 |
+
msgid "Invoice to"
|
643 |
+
msgstr "Rechnung an"
|
644 |
+
|
645 |
+
#: includes/templates/invoices/global/micro/body.php:7
|
646 |
+
#: includes/templates/invoices/simple/micro/body.php:7
|
647 |
+
#, php-format
|
648 |
+
msgid "Phone: %s"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/templates/invoices/global/micro/body.php:11
|
652 |
+
#: includes/templates/invoices/simple/micro/body.php:11
|
653 |
+
msgid "Ship to"
|
654 |
+
msgstr "Lieferadresse"
|
655 |
+
|
656 |
+
#: includes/templates/invoices/global/micro/body.php:22
|
657 |
+
msgid "Global Invoice"
|
658 |
+
msgstr "Global Invoice"
|
659 |
+
|
660 |
+
#: includes/templates/invoices/global/micro/body.php:40
|
661 |
+
#: includes/templates/invoices/simple/micro/body.php:44
|
662 |
+
msgid "Description"
|
663 |
+
msgstr "Beschreibung"
|
664 |
+
|
665 |
+
#: includes/templates/invoices/global/micro/body.php:48
|
666 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
667 |
+
msgid "Cost"
|
668 |
+
msgstr "Preis"
|
669 |
+
|
670 |
+
#: includes/templates/invoices/global/micro/body.php:50
|
671 |
+
#: includes/templates/invoices/simple/micro/body.php:54
|
672 |
+
msgid "Qty"
|
673 |
+
msgstr "Anzahl"
|
674 |
+
|
675 |
+
#: includes/templates/invoices/global/micro/body.php:56
|
676 |
+
#: includes/templates/invoices/simple/micro/body.php:60
|
677 |
+
msgid "VAT"
|
678 |
+
msgstr "Mehrwertsteuer"
|
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 "Gesamt"
|
686 |
+
|
687 |
+
#: includes/templates/invoices/global/micro/body.php:75
|
688 |
+
#, php-format
|
689 |
+
msgid "Order #%d - %s"
|
690 |
+
msgstr "Bestellung #%d - %s"
|
691 |
+
|
692 |
+
#: includes/templates/invoices/global/micro/body.php:255
|
693 |
+
#: includes/templates/invoices/simple/micro/body.php:120
|
694 |
+
msgid "Fee"
|
695 |
+
msgstr "Gebühr"
|
696 |
+
|
697 |
+
#: includes/templates/invoices/global/micro/body.php:287
|
698 |
+
#: includes/templates/invoices/simple/micro/body.php:152
|
699 |
+
msgid "Refunded"
|
700 |
+
msgstr "Erstattet"
|
701 |
+
|
702 |
+
#: includes/templates/invoices/global/micro/footer.php:15
|
703 |
+
#: includes/templates/invoices/simple/micro/footer.php:18
|
704 |
+
#, php-format
|
705 |
+
msgid "%s of %s"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: includes/templates/invoices/simple/micro/body.php:22
|
709 |
+
msgid "Invoice"
|
710 |
+
msgstr "Rechnung"
|
711 |
+
|
712 |
+
#: includes/templates/invoices/simple/micro/body.php:25
|
713 |
+
#, fuzzy, php-format
|
714 |
+
msgid "Order Number: %s"
|
715 |
+
msgstr "Bestellungsnummer:"
|
716 |
+
|
717 |
+
#: includes/templates/invoices/simple/micro/body.php:26
|
718 |
+
#, php-format
|
719 |
+
msgid "Order Date: %s"
|
720 |
+
msgstr "Bestellungsdatum: %s"
|
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 "Kundenkommentar"
|
726 |
+
|
727 |
+
#~ msgid "Purchase email"
|
728 |
+
#~ msgstr "Käufer Email"
|
729 |
+
|
730 |
+
#~ msgid ""
|
731 |
+
#~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
|
732 |
+
#~ "\">wcpdfinvoices.com</a>."
|
733 |
+
#~ msgstr ""
|
734 |
+
#~ "Enter your email account from <a href=\"http://wcpdfinvoices.com"
|
735 |
+
#~ "\">wcpdfinvoices.com</a>."
|
736 |
+
|
737 |
+
#~ msgid "License"
|
738 |
+
#~ msgstr "Lizenz"
|
739 |
+
|
740 |
+
#~ msgid ""
|
741 |
+
#~ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
|
742 |
+
#~ "\">wcpdfinvoices.com</a> to receive updates."
|
743 |
+
#~ msgstr ""
|
744 |
+
#~ "Gib deinen Lizenzschlüssel von <a href=\"http://wcpdfinvoices.com"
|
745 |
+
#~ "\">wcpdfinvoices.com</a> ein um Updates zu erhalten."
|
746 |
+
|
747 |
+
#~ msgid "Processing Renewal Order"
|
748 |
+
#~ msgstr "Bearbeiten der erneuerten Bestellung"
|
749 |
+
|
750 |
+
#~ msgid "Completed Renewal Order"
|
751 |
+
#~ msgstr "Erneuerte Rechnung fertiggestellt"
|
752 |
+
|
753 |
+
#~ msgid "Customer Renewal Invoice"
|
754 |
+
#~ msgstr "Erneuerte Kundenrechnung"
|
755 |
+
|
756 |
+
#~ msgid "Attach to New Renewal Order Email"
|
757 |
+
#~ msgstr "An neue erneuerte Bestell-Email anhängen"
|
758 |
+
|
759 |
+
#~ msgid "PDF attachment"
|
760 |
+
#~ msgstr "PDF-Anhang"
|
761 |
+
|
762 |
+
#~ msgid "Add for example a PDF with your terms & conditions."
|
763 |
+
#~ msgstr "Hänge ein PDF-Dokument an, wie zum Beispiel deine AGBs."
|
764 |
+
|
765 |
+
#~ msgid "Suppliers"
|
766 |
+
#~ msgstr "Lieferanten"
|
767 |
+
|
768 |
+
#~ msgid ""
|
769 |
+
#~ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by "
|
770 |
+
#~ "simply adding there Email It In email addresses. Email addresses need to "
|
771 |
+
#~ "be seperated by comma's."
|
772 |
+
#~ msgstr ""
|
773 |
+
#~ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by "
|
774 |
+
#~ "simply adding there Email It In email addresses. Email addresses need to "
|
775 |
+
#~ "be seperated by comma's."
|
776 |
+
|
777 |
+
#~ msgid ""
|
778 |
+
#~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
|
779 |
+
#~ "generate a global invoice from within there account</div>"
|
780 |
+
#~ msgstr ""
|
781 |
+
#~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
|
782 |
+
#~ "generate a global invoice from within there account</div>"
|
783 |
+
|
784 |
+
#~ msgid "Customer generation period"
|
785 |
+
#~ msgstr "Customer generation period"
|
786 |
+
|
787 |
+
#~ msgid ""
|
788 |
+
#~ "Should your customers have the ability to generate a global invoice by "
|
789 |
+
#~ "month or by year?<br/><strong>Note:</strong> Customer generation should "
|
790 |
+
#~ "be enabled."
|
791 |
+
#~ msgstr ""
|
792 |
+
#~ "Should your customers have the ability to generate a global invoice by "
|
793 |
+
#~ "month or by year?<br/><strong>Note:</strong> Customer generation should "
|
794 |
+
#~ "be enabled."
|
795 |
+
|
796 |
+
#~ msgid "Month"
|
797 |
+
#~ msgstr "Monat"
|
798 |
+
|
799 |
+
#~ msgid "Year"
|
800 |
+
#~ msgstr "Jahr"
|
801 |
+
|
802 |
+
#~ msgid "Send to your Cloud Storage"
|
803 |
+
#~ msgstr "An Cloud Storage senden"
|
804 |
+
|
805 |
+
#~ msgid "Email to customer"
|
806 |
+
#~ msgstr "Email an Kunden"
|
807 |
+
|
808 |
+
#~ msgid "Email to supplier(s)"
|
809 |
+
#~ msgstr "Email an Lieferanten"
|
810 |
+
|
811 |
+
#~ msgid "Email subject"
|
812 |
+
#~ msgstr "Email Betreff"
|
813 |
+
|
814 |
+
#~ msgid "Subject for the global invoice email."
|
815 |
+
#~ msgstr "Subject for the global invoice email."
|
816 |
+
|
817 |
+
#~ msgid "Email message"
|
818 |
+
#~ msgstr "Email Nachricht"
|
819 |
+
|
820 |
+
#~ msgid "Message for the global invoice email."
|
821 |
+
#~ msgstr "Message for the global invoice email."
|
822 |
+
|
823 |
+
#~ msgid "Premium Options"
|
824 |
+
#~ msgstr "Premium Optionen"
|
825 |
+
|
826 |
+
#~ msgid "Woocommerce Subscriptions Email Options"
|
827 |
+
#~ msgstr "Woocommerce Subscriptions Email Options"
|
828 |
+
|
829 |
+
#~ msgid "Attachment Options"
|
830 |
+
#~ msgstr "Anhangs Optionen"
|
831 |
+
|
832 |
+
#~ msgid "Supplier Options"
|
833 |
+
#~ msgstr "Lieferanten Optionen"
|
834 |
+
|
835 |
+
#~ msgid "Global Invoice Options"
|
836 |
+
#~ msgstr "Global Invoice Options"
|
837 |
+
|
838 |
+
#~ msgid ""
|
839 |
+
#~ "Attach PDF invoice to <a href=\"http://www.woothemes.com/products/"
|
840 |
+
#~ "woocommerce-subscriptions/\">WooCommerce Subscriptions</a> email. Plugin "
|
841 |
+
#~ "should be activated in order to work."
|
842 |
+
#~ msgstr ""
|
843 |
+
#~ "PDF Rechnung an <a href=\"http://www.woothemes.com/products/woocommerce-"
|
844 |
+
#~ "subscriptions/\">WooCommerce Subscriptions</a> email anhängen. Plugin "
|
845 |
+
#~ "sollte aktiviert sein um die Funktion zu ermöglichen."
|
846 |
+
|
847 |
+
#~ msgid "Attach a PDF to the invoice."
|
848 |
+
#~ msgstr "Ein PDF-Dokument an die Rechnung anhängen."
|
849 |
+
|
850 |
+
#~ msgid "Send customer invoice automatically to your supplier(s)."
|
851 |
+
#~ msgstr "Kunden Rechnung automatisch an Lieferanten senden."
|
852 |
+
|
853 |
+
#~ msgid ""
|
854 |
+
#~ "Generate global invoices on Orders page by selecting multiple orders and "
|
855 |
+
#~ "applying action or let customers generate periodically from My Account "
|
856 |
+
#~ "page."
|
857 |
+
#~ msgstr ""
|
858 |
+
#~ "Generate global invoices on Orders page by selecting multiple orders and "
|
859 |
+
#~ "applying action or let customers generate periodically from My Account "
|
860 |
+
#~ "page."
|
861 |
+
|
862 |
+
#~ msgid "File to large."
|
863 |
+
#~ msgstr "Datei zu groß."
|
864 |
+
|
865 |
+
#~ msgid "Only PDF files are allowed."
|
866 |
+
#~ msgstr "Es sind lediglich PDF-Dokumente zulässig."
|
867 |
+
|
868 |
+
#~ msgid "Remove"
|
869 |
+
#~ msgstr "Entfernen"
|
870 |
+
|
871 |
+
#~ msgid "Choose"
|
872 |
+
#~ msgstr "Auswählen"
|
873 |
+
|
874 |
+
#~ msgid "Active"
|
875 |
+
#~ msgstr "Aktiv"
|
876 |
+
|
877 |
+
#~ msgid "Inactive"
|
878 |
+
#~ msgstr "Inaktiv"
|
879 |
+
|
880 |
+
#~ msgid "Something went wrong."
|
881 |
+
#~ msgstr "Uuhps! Da ist wohl etwas schief gelaufen."
|
882 |
+
|
883 |
+
#~ msgid "No orders found."
|
884 |
+
#~ msgstr "Keine Bestellungen gefunden."
|
885 |
+
|
886 |
+
#~ msgid ""
|
887 |
+
#~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
|
888 |
+
#~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
|
889 |
+
#~ "Get the free version (%s+) and try again.</p>"
|
890 |
+
#~ msgstr ""
|
891 |
+
#~ "<p><a href=\"%s\"><strong>WooCommerce PDF Invoices Premium</strong></a> "
|
892 |
+
#~ "requires <a href=\"%s\"><strong>WooCommerce PDF Invoices</strong></a>. "
|
893 |
+
#~ "Get the free version (%s+) and try again.</p>"
|
894 |
+
|
895 |
+
#~ msgid "Generate global invoice"
|
896 |
+
#~ msgstr "Generate global invoice"
|
897 |
+
|
898 |
+
#~ msgid "Please select more then one order."
|
899 |
+
#~ msgstr "Bitte mehr als eine Bestellungen auswählen."
|
900 |
+
|
901 |
+
#~ msgid "Global invoice succesfully generated! "
|
902 |
+
#~ msgstr "Global invoice succesfully generated! "
|
903 |
+
|
904 |
+
#~ msgid "Generate Global Invoice"
|
905 |
+
#~ msgstr "Generate Global Invoice"
|
906 |
+
|
907 |
+
#~ msgid "Select a month"
|
908 |
+
#~ msgstr "Monat auswählen"
|
909 |
+
|
910 |
+
#~ msgid "Select a year"
|
911 |
+
#~ msgstr "Jahr auswählen"
|
912 |
+
|
913 |
+
#~ msgid "Generate invoice"
|
914 |
+
#~ msgstr "Rechnung generieren."
|
915 |
+
|
916 |
+
#~ msgid "Feel free to use "
|
917 |
+
#~ msgstr "Feel free to use "
|
918 |
+
|
919 |
+
#~ msgid "Subtotal will be including tax and excluding discount and shipping."
|
920 |
+
#~ msgstr ""
|
921 |
+
#~ "Zwischensumme enthält Mehrwertsteuer aber keine Rabatte oder Lieferkosten."
|
922 |
+
|
923 |
+
#~ msgid "Intro text"
|
924 |
+
#~ msgstr "Einleitungstext"
|
925 |
+
|
926 |
+
#~ msgid ""
|
927 |
+
#~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
|
928 |
+
#~ "%s Only available with sequential numbering type and you need to check "
|
929 |
+
#~ "the checkbox to actually reset the value."
|
930 |
+
#~ msgstr ""
|
931 |
+
#~ "Reset the invoice counter and start with next invoice number. %s %sNote:"
|
932 |
+
#~ "%s Only available with sequential numbering type and you need to check "
|
933 |
+
#~ "the checkbox to actually reset the value."
|
934 |
+
|
935 |
+
#~ msgid ""
|
936 |
+
#~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
|
937 |
+
#~ "is required."
|
938 |
+
#~ msgstr ""
|
939 |
+
#~ "Feel free to use the placeholders %s %s %s %s %s and %s. %s %sNote:%s %s "
|
940 |
+
#~ "is required."
|
941 |
+
|
942 |
+
#~ msgid "Tax"
|
943 |
+
#~ msgstr "Steuer"
|
944 |
+
|
945 |
+
#~ msgid "The footer will be visible on every page. "
|
946 |
+
#~ msgstr "Der Footer wird auf jeder Seite sichtbar sein."
|
947 |
+
|
948 |
+
#~ msgid ""
|
949 |
+
#~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
|
950 |
+
#~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
|
951 |
+
#~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
|
952 |
+
#~ "away!</a> - <a href='%s'>No, already done it!</a>"
|
953 |
+
#~ msgstr ""
|
954 |
+
#~ "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
|
955 |
+
#~ "Please show us your appreciation by leaving a ★★★★★ rating. A huge thank "
|
956 |
+
#~ "you in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right "
|
957 |
+
#~ "away!</a> - <a href='%s'>No, already done it!</a>"
|
958 |
+
|
959 |
+
#~ msgid "%sPayment%s via"
|
960 |
+
#~ msgstr "Bezahlt per"
|
961 |
+
|
962 |
+
#~ msgid "PAID"
|
963 |
+
#~ msgstr "BEZAHLT"
|
964 |
+
|
965 |
+
#~ msgid "UNPAID"
|
966 |
+
#~ msgstr "NICHT BEZAHLT"
|
967 |
+
|
968 |
+
#~ msgid "Order Number %s"
|
969 |
+
#~ msgstr "Bestellungsnummer"
|
970 |
+
|
971 |
+
#~ msgid "Order Date %s"
|
972 |
+
#~ msgstr "Bestellungsdatum"
|
973 |
+
|
974 |
+
#~ msgid "Download invoice (PDF)"
|
975 |
+
#~ msgstr "Download Rechnung (PDF)"
|
976 |
+
|
977 |
+
#~ msgid ""
|
978 |
+
#~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
|
979 |
+
#~ "required."
|
980 |
+
#~ msgstr ""
|
981 |
+
#~ "Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
|
982 |
+
#~ "required."
|
983 |
+
|
984 |
+
#~ msgid "VAT %s"
|
985 |
+
#~ msgstr "Mehrwertsteuer %s"
|
986 |
+
|
987 |
+
#~ msgid "General Settings"
|
988 |
+
#~ msgstr "Allgemeine Einstellungen"
|
989 |
+
|
990 |
+
#~ msgid ""
|
991 |
+
#~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
|
992 |
+
#~ msgstr ""
|
993 |
+
#~ "Sende Rechnung automatisch an Google Drive, Egnyte, Dropbox of OneDrive"
|
994 |
+
|
995 |
+
#~ msgid "For bookkeeping purposes."
|
996 |
+
#~ msgstr "Zu Buchhaltungszwecken."
|
997 |
+
|
998 |
+
#~ msgid "Signup at %s and enter your account below."
|
999 |
+
#~ msgstr "Melde dich an bei %s und gib unten deine Account ein."
|
1000 |
+
|
1001 |
+
#~ msgid "Enter your %s account."
|
1002 |
+
#~ msgstr "Enter your %s account."
|
1003 |
+
|
1004 |
+
#~ msgid "Invalid type of Email."
|
1005 |
+
#~ msgstr "Ungültiger Emailtyp."
|
1006 |
+
|
1007 |
+
#~ msgid "Please don't try to change the values."
|
1008 |
+
#~ msgstr "Bitte versuche nicht die Werte zu ändern."
|
1009 |
+
|
1010 |
+
#~ msgid "Invalid Email address."
|
1011 |
+
#~ msgstr "Ungültige Email-Adresse."
|
1012 |
+
|
1013 |
+
#~ msgid "Allowed tags: "
|
1014 |
+
#~ msgstr "Allowed tags: "
|
1015 |
+
|
1016 |
+
#~ msgid "Template Settings"
|
1017 |
+
#~ msgstr "Template Einstellungen"
|
1018 |
+
|
1019 |
+
#~ msgid "Invoice number type"
|
1020 |
+
#~ msgstr "Rechnungsnummerntyp"
|
1021 |
+
|
1022 |
+
#~ msgid "Next invoice number"
|
1023 |
+
#~ msgstr "Nächste Rechnungsnummer"
|
1024 |
+
|
1025 |
+
#~ msgid "Number of digits"
|
1026 |
+
#~ msgstr "Anzahl der Nachkommastellen"
|
1027 |
+
|
1028 |
+
#~ msgid "Invoice number prefix"
|
1029 |
+
#~ msgstr "Rechnungsnummer Vorsilbe"
|
1030 |
+
|
1031 |
+
#~ msgid "Invoice number suffix"
|
1032 |
+
#~ msgstr "Rechnungsnummer Nachsilbe"
|
1033 |
+
|
1034 |
+
#~ msgid "Invoice number format"
|
1035 |
+
#~ msgstr "Rechnungsnummernformat"
|
1036 |
+
|
1037 |
+
#~ msgid "Reset on 1st January"
|
1038 |
+
#~ msgstr "Am 1. Januar zurücksetzen"
|
1039 |
+
|
1040 |
+
#~ msgid "Invoice date format"
|
1041 |
+
#~ msgstr "Format des Rechnungsdatums"
|
1042 |
+
|
1043 |
+
#~ msgid "Order date format"
|
1044 |
+
#~ msgstr "Format des Bestellungsdatums"
|
1045 |
+
|
1046 |
+
#~ msgid "Show SKU"
|
1047 |
+
#~ msgstr "Zeige Sorte"
|
1048 |
+
|
1049 |
+
#~ msgid "Show discount"
|
1050 |
+
#~ msgstr "Zeige Rabatt"
|
1051 |
+
|
1052 |
+
#~ msgid "Show subtotal"
|
1053 |
+
#~ msgstr "Zeige Zwischensumme"
|
1054 |
+
|
1055 |
+
#~ msgid "Show tax"
|
1056 |
+
#~ msgstr "Zeige Steuer"
|
1057 |
+
|
1058 |
+
#~ msgid "Show shipping"
|
1059 |
+
#~ msgstr "Zeige Lieferkosten"
|
1060 |
+
|
1061 |
+
#~ msgid "Color theme of the invoice."
|
1062 |
+
#~ msgstr "Farb-theme der Rechnung."
|
1063 |
+
|
1064 |
+
#~ msgid ""
|
1065 |
+
#~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
|
1066 |
+
#~ "png."
|
1067 |
+
#~ msgstr ""
|
1068 |
+
#~ "Bitte lade ein Bild kleiner als 200Kb hoch. Erlaubt sind jpeg, jpg oder "
|
1069 |
+
#~ "png -Formate."
|
1070 |
+
|
1071 |
+
#~ msgid "Invoice number to use for next invoice."
|
1072 |
+
#~ msgstr "Rechnungsnummer für nächste Rechnung verwenden."
|
1073 |
+
|
1074 |
+
#~ msgid "Number of zero digits."
|
1075 |
+
#~ msgstr "Anzahl der Nullen."
|
1076 |
+
|
1077 |
+
#~ msgid "Prefix text for the invoice number. Not required."
|
1078 |
+
#~ msgstr "Prefix text for the invoice number. Not required."
|
1079 |
+
|
1080 |
+
#~ msgid "Suffix text for the invoice number. Not required."
|
1081 |
+
#~ msgstr "Suffix text for the invoice number. Not required."
|
1082 |
+
|
1083 |
+
#~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
|
1084 |
+
#~ msgstr ""
|
1085 |
+
#~ "Vorhandene Platzhalter sind %s %s %s %s und %s. %s ist verpflichtend."
|
1086 |
+
|
1087 |
+
#~ msgid "Reset on the first of January."
|
1088 |
+
#~ msgstr "Am 1. Januar zurücksetzen"
|
1089 |
+
|
1090 |
+
#~ msgid "%sFormat%s of the date. Examples: %s or %s."
|
1091 |
+
#~ msgstr "%sFormat%s vom Datum. Beispiele: %s oder %s."
|
1092 |
+
|
1093 |
+
#~ msgid "Order date %sformat%s. Examples: %s or %s."
|
1094 |
+
#~ msgstr "Bestellungsdatum %sFormat%s. Beispiele: %s oder %s."
|
1095 |
+
|
1096 |
+
#~ msgid "Invalid template."
|
1097 |
+
#~ msgstr "Ungültiges Template."
|
1098 |
+
|
1099 |
+
#~ msgid "Invalid color theme code."
|
1100 |
+
#~ msgstr "Ungültiger Farb-Theme Code."
|
1101 |
+
|
1102 |
+
#~ msgid "Invalid company name."
|
1103 |
+
#~ msgstr "Ungültiger Firmenname."
|
1104 |
+
|
1105 |
+
#~ msgid "Invalid input into one of the textarea's."
|
1106 |
+
#~ msgstr "Ungültige Eingabe in eines der Textfelder."
|
1107 |
+
|
1108 |
+
#~ msgid "Invalid type of invoice number."
|
1109 |
+
#~ msgstr "Ungültiger Rechnungsnummern-Typ."
|
1110 |
+
|
1111 |
+
#~ msgid "Invalid (next) invoice number."
|
1112 |
+
#~ msgstr "Ungültige (nächste) Rechnungsnummer."
|
1113 |
+
|
1114 |
+
#~ msgid "Invalid invoice number digits."
|
1115 |
+
#~ msgstr "Ungültige Rechnungsnummer-Ziffern."
|
1116 |
+
|
1117 |
+
#~ msgid "The [number] placeholder is required as invoice number format."
|
1118 |
+
#~ msgstr ""
|
1119 |
+
#~ "Der [Nummer] Platzhalter ist als Rechnungsnummern-Format erforderlich."
|
1120 |
+
|
1121 |
+
#~ msgid "Invalid invoice number format."
|
1122 |
+
#~ msgstr "Ungültiges Rechnungsnummern-Format."
|
1123 |
+
|
1124 |
+
#~ msgid "Invalid date format."
|
1125 |
+
#~ msgstr "Ungültiges Datums-Format."
|
1126 |
+
|
1127 |
+
#~ msgid "Please upload image with extension jpg, jpeg or png."
|
1128 |
+
#~ msgstr "Please upload image with extension jpg, jpeg or png."
|
1129 |
+
|
1130 |
+
#~ msgid "Quantity"
|
1131 |
+
#~ msgstr "Anzahl"
|
1132 |
+
|
1133 |
+
#~ msgid "Unit price"
|
1134 |
+
#~ msgstr "Stückpreis"
|
1135 |
+
|
1136 |
+
#~ msgid ""
|
1137 |
+
#~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
|
1138 |
+
#~ msgstr ""
|
1139 |
+
#~ "Benutze [prefix], [suffix] und [number] als Platzhalter. [number] ist "
|
1140 |
+
#~ "erforderlich."
|
1141 |
+
|
1142 |
+
#~ msgid "Signup at %s and enter your account beyond."
|
1143 |
+
#~ msgstr "Signup at %s and enter your account beyond."
|
1144 |
+
|
1145 |
+
#~ msgid "%sFormat%s of the date. Examples: %s or %s"
|
1146 |
+
#~ msgstr "%sFormat%s des Datums. Beispiele: %s oder %s"
|
1147 |
+
|
1148 |
+
#~ msgid "Show invoice"
|
1149 |
+
#~ msgstr "Zeige Rechnung"
|
1150 |
+
|
1151 |
+
#~ msgid "%sFormat%s of the date."
|
1152 |
+
#~ msgstr "%sFormat%s des Datums."
|
1153 |
+
|
1154 |
+
#~ msgid "Use [prefix], [suffix] and [number] as placeholders."
|
1155 |
+
#~ msgstr "Benutze [suffix], [prefix] und [number] als Platzhalter."
|
1156 |
+
|
1157 |
+
#~ msgid "Choose the color witch fits your company."
|
1158 |
+
#~ msgstr "Wähle eine Farbe die zu deiner Firma passt."
|
1159 |
+
|
1160 |
+
#~ msgid ""
|
1161 |
+
#~ "Choose the format for the invoice number. Use [prefix], [suffix] and "
|
1162 |
+
#~ "[number] as placeholders."
|
1163 |
+
#~ msgstr ""
|
1164 |
+
#~ "Wähle das Format der Rechnungsnummer. Benutze [prefix], [suffix] und "
|
1165 |
+
#~ "[number] als Platzhalter."
|
1166 |
+
|
1167 |
+
#~ msgid "Text to greet, congratulate or thank the customer. "
|
1168 |
+
#~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
|
1169 |
+
|
1170 |
+
#~ msgid "Some text"
|
1171 |
+
#~ msgstr "Etwas Text"
|
1172 |
+
|
1173 |
+
#~ msgid "Text to greet, congratulate or thank the customer."
|
1174 |
+
#~ msgstr "Text um Kunden zu begrüßen, gratulieren oder danken. "
|
1175 |
+
|
1176 |
+
#~ msgid "Start all over on the first of January."
|
1177 |
+
#~ msgstr "Am 1. Januar komplett neu beginnen."
|
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: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -26,32 +26,32 @@ msgstr ""
|
|
26 |
msgid "Paid"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../includes/abstracts/abstract-bewpi-invoice.php:
|
30 |
#, php-format
|
31 |
msgid ""
|
32 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
33 |
"all invoices with invoice number %s and greater."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: ../includes/abstracts/abstract-bewpi-invoice.php:
|
37 |
#, php-format
|
38 |
msgid ""
|
39 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
40 |
"First delete invoice and try again."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../includes/abstracts/abstract-bewpi-invoice.php:
|
44 |
#, php-format
|
45 |
msgid ""
|
46 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: ../includes/abstracts/abstract-bewpi-invoice.php:
|
50 |
#, php-format
|
51 |
msgid "VAT Number: %s"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: ../includes/abstracts/abstract-bewpi-invoice.php:
|
55 |
#, php-format
|
56 |
msgid "Purchase Order Number: %s"
|
57 |
msgstr ""
|
@@ -468,82 +468,143 @@ msgstr ""
|
|
468 |
msgid "Version %s"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
msgid "WooCommerce PDF Invoices Premium"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: ../includes/
|
476 |
msgid ""
|
477 |
"This plugin offers a premium version which comes with the following features:"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../includes/
|
481 |
msgid "Bill periodically by generating and sending global invoices."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../includes/
|
485 |
msgid "Add additional PDF's to customer invoices."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: ../includes/
|
489 |
msgid "Send customer invoices directly to suppliers and others."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../includes/
|
493 |
#, php-format
|
494 |
msgid ""
|
495 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../includes/
|
499 |
msgid "Learn more"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../includes/
|
503 |
msgid "Stay up-to-date"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../includes/
|
507 |
msgid ""
|
508 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
509 |
"our newsletter."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../includes/
|
513 |
msgid "Your email address"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../includes/
|
517 |
msgid "Signup"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../includes/
|
521 |
msgid "No spam, ever. Unsubscribe at any time"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../includes/
|
525 |
msgid "About"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../includes/
|
529 |
msgid ""
|
530 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
531 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../includes/
|
535 |
msgid "<b>Version</b>: "
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../includes/
|
539 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../includes/
|
543 |
msgid "Support"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../includes/
|
547 |
msgid ""
|
548 |
"We will never ask for donations, but to garantee future development, we do "
|
549 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -552,92 +613,31 @@ msgid ""
|
|
552 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: ../includes/
|
556 |
msgid ""
|
557 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../includes/
|
561 |
msgid "Need Help?"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../includes/
|
565 |
msgid "Frequently Asked Questions"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../includes/
|
569 |
msgid "Support forum"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../includes/
|
573 |
msgid "Request a feature"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../includes/
|
577 |
msgid "Email us"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:437
|
581 |
-
msgid "PDF Invoice"
|
582 |
-
msgstr "PDF Factura"
|
583 |
-
|
584 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:463
|
585 |
-
msgid "Invoiced on:"
|
586 |
-
msgstr "Facturado en:"
|
587 |
-
|
588 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:467
|
589 |
-
msgid "Invoice number:"
|
590 |
-
msgstr "Nº de factura"
|
591 |
-
|
592 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:505
|
593 |
-
msgid "View invoice"
|
594 |
-
msgstr "Ver factura"
|
595 |
-
|
596 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:505
|
597 |
-
msgid "View"
|
598 |
-
msgstr "Ver"
|
599 |
-
|
600 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:506
|
601 |
-
msgid "Cancel invoice"
|
602 |
-
msgstr "Cancelar factura"
|
603 |
-
|
604 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:506
|
605 |
-
msgid "Cancel"
|
606 |
-
msgstr "Cancelar"
|
607 |
-
|
608 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:508
|
609 |
-
msgid "Are you sure to delete the invoice?"
|
610 |
-
msgstr "¿Está seguro de eliminar la factura?"
|
611 |
-
|
612 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:511
|
613 |
-
msgid "Create invoice"
|
614 |
-
msgstr "Crear factura"
|
615 |
-
|
616 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:511
|
617 |
-
msgid "Create"
|
618 |
-
msgstr "Crear"
|
619 |
-
|
620 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:534
|
621 |
-
#, php-format
|
622 |
-
msgid "Invoice %s (PDF)"
|
623 |
-
msgstr "Factura %s (PDF)"
|
624 |
-
|
625 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:644
|
626 |
-
#, php-format
|
627 |
-
msgid ""
|
628 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
629 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
630 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
631 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
632 |
-
"done it!</a>"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: ../includes/class-bewpi-invoice.php:48
|
636 |
-
msgid ""
|
637 |
-
"Whoops, no template found. Please select a template on the Template settings "
|
638 |
-
"page first."
|
639 |
-
msgstr ""
|
640 |
-
|
641 |
#: ../includes/templates/invoices/global/micro/body.php:5
|
642 |
#: ../includes/templates/invoices/simple/micro/body.php:5
|
643 |
msgid "Invoice to"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
26 |
msgid "Paid"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:262
|
30 |
#, php-format
|
31 |
msgid ""
|
32 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
33 |
"all invoices with invoice number %s and greater."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:267
|
37 |
#, php-format
|
38 |
msgid ""
|
39 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
40 |
"First delete invoice and try again."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:310
|
44 |
#, php-format
|
45 |
msgid ""
|
46 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:372
|
50 |
#, php-format
|
51 |
msgid "VAT Number: %s"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:383
|
55 |
#, php-format
|
56 |
msgid "Purchase Order Number: %s"
|
57 |
msgstr ""
|
468 |
msgid "Version %s"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:356
|
472 |
+
msgid "PDF Invoice"
|
473 |
+
msgstr "PDF Factura"
|
474 |
+
|
475 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:382
|
476 |
+
msgid "Invoiced on:"
|
477 |
+
msgstr "Facturado en:"
|
478 |
+
|
479 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:386
|
480 |
+
msgid "Invoice number:"
|
481 |
+
msgstr "Nº de factura"
|
482 |
+
|
483 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:424
|
484 |
+
msgid "View invoice"
|
485 |
+
msgstr "Ver factura"
|
486 |
+
|
487 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:424
|
488 |
+
msgid "View"
|
489 |
+
msgstr "Ver"
|
490 |
+
|
491 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:425
|
492 |
+
msgid "Cancel invoice"
|
493 |
+
msgstr "Cancelar factura"
|
494 |
+
|
495 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:425
|
496 |
+
msgid "Cancel"
|
497 |
+
msgstr "Cancelar"
|
498 |
+
|
499 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:427
|
500 |
+
msgid "Are you sure to delete the invoice?"
|
501 |
+
msgstr "¿Está seguro de eliminar la factura?"
|
502 |
+
|
503 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:430
|
504 |
+
msgid "Create invoice"
|
505 |
+
msgstr "Crear factura"
|
506 |
+
|
507 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:430
|
508 |
+
msgid "Create"
|
509 |
+
msgstr "Crear"
|
510 |
+
|
511 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:453
|
512 |
+
#, php-format
|
513 |
+
msgid "Invoice %s (PDF)"
|
514 |
+
msgstr "Factura %s (PDF)"
|
515 |
+
|
516 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:563
|
517 |
+
#, php-format
|
518 |
+
msgid ""
|
519 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
520 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
521 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
522 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
523 |
+
"done it!</a>"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: ../includes/class-bewpi-invoice.php:48
|
527 |
+
msgid ""
|
528 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
529 |
+
"page first."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: ../includes/partials/settings-sidebar.php:2
|
533 |
msgid "WooCommerce PDF Invoices Premium"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../includes/partials/settings-sidebar.php:4
|
537 |
msgid ""
|
538 |
"This plugin offers a premium version which comes with the following features:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/partials/settings-sidebar.php:5
|
542 |
msgid "Bill periodically by generating and sending global invoices."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/partials/settings-sidebar.php:6
|
546 |
msgid "Add additional PDF's to customer invoices."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/partials/settings-sidebar.php:7
|
550 |
msgid "Send customer invoices directly to suppliers and others."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/partials/settings-sidebar.php:8
|
554 |
#, php-format
|
555 |
msgid ""
|
556 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: ../includes/partials/settings-sidebar.php:10
|
560 |
msgid "Learn more"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: ../includes/partials/settings-sidebar.php:13
|
564 |
msgid "Stay up-to-date"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: ../includes/partials/settings-sidebar.php:17
|
568 |
msgid ""
|
569 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
570 |
"our newsletter."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/partials/settings-sidebar.php:23
|
574 |
msgid "Your email address"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/partials/settings-sidebar.php:29
|
578 |
msgid "Signup"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/partials/settings-sidebar.php:32
|
582 |
msgid "No spam, ever. Unsubscribe at any time"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/partials/settings-sidebar.php:41
|
586 |
msgid "About"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/partials/settings-sidebar.php:43
|
590 |
msgid ""
|
591 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
592 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../includes/partials/settings-sidebar.php:45
|
596 |
msgid "<b>Version</b>: "
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../includes/partials/settings-sidebar.php:47
|
600 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../includes/partials/settings-sidebar.php:50
|
604 |
msgid "Support"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../includes/partials/settings-sidebar.php:52
|
608 |
msgid ""
|
609 |
"We will never ask for donations, but to garantee future development, we do "
|
610 |
"need your support. Please show us your appreciation by leaving a <a href="
|
613 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../includes/partials/settings-sidebar.php:72
|
617 |
msgid ""
|
618 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/partials/settings-sidebar.php:77
|
622 |
msgid "Need Help?"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/partials/settings-sidebar.php:79
|
626 |
msgid "Frequently Asked Questions"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/partials/settings-sidebar.php:80
|
630 |
msgid "Support forum"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/partials/settings-sidebar.php:81
|
634 |
msgid "Request a feature"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/partials/settings-sidebar.php:82
|
638 |
msgid "Email us"
|
639 |
msgstr ""
|
640 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
641 |
#: ../includes/templates/invoices/global/micro/body.php:5
|
642 |
#: ../includes/templates/invoices/simple/micro/body.php:5
|
643 |
msgid "Invoice to"
|
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: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
|
7 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
8 |
"Language: fr_FR\n"
|
@@ -23,32 +23,32 @@ msgstr ""
|
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
27 |
#, php-format
|
28 |
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:
|
34 |
#, php-format
|
35 |
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:
|
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-invoice.php:
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
@@ -467,82 +467,143 @@ msgstr ""
|
|
467 |
msgid "Version %s"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
msgid "WooCommerce PDF Invoices Premium"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/
|
475 |
msgid ""
|
476 |
"This plugin offers a premium version which comes with the following features:"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/
|
480 |
msgid "Bill periodically by generating and sending global invoices."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/
|
484 |
msgid "Add additional PDF's to customer invoices."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/
|
488 |
msgid "Send customer invoices directly to suppliers and others."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/
|
492 |
#, php-format
|
493 |
msgid ""
|
494 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: includes/
|
498 |
msgid "Learn more"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/
|
502 |
msgid "Stay up-to-date"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/
|
506 |
msgid ""
|
507 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
508 |
"our newsletter."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/
|
512 |
msgid "Your email address"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/
|
516 |
msgid "Signup"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/
|
520 |
msgid "No spam, ever. Unsubscribe at any time"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/
|
524 |
msgid "About"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/
|
528 |
msgid ""
|
529 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
530 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/
|
534 |
msgid "<b>Version</b>: "
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: includes/
|
538 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/
|
542 |
msgid "Support"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: includes/
|
546 |
msgid ""
|
547 |
"We will never ask for donations, but to garantee future development, we do "
|
548 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -551,92 +612,31 @@ msgid ""
|
|
551 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: includes/
|
555 |
msgid ""
|
556 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/
|
560 |
msgid "Need Help?"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/
|
564 |
msgid "Frequently Asked Questions"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/
|
568 |
msgid "Support forum"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/
|
572 |
msgid "Request a feature"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/
|
576 |
msgid "Email us"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
580 |
-
msgid "PDF Invoice"
|
581 |
-
msgstr "Facture PDF"
|
582 |
-
|
583 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
584 |
-
msgid "Invoiced on:"
|
585 |
-
msgstr "Facturés sur"
|
586 |
-
|
587 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
588 |
-
msgid "Invoice number:"
|
589 |
-
msgstr "Numéro de facture"
|
590 |
-
|
591 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
592 |
-
msgid "View invoice"
|
593 |
-
msgstr " Voir la facture"
|
594 |
-
|
595 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
596 |
-
msgid "View"
|
597 |
-
msgstr "Voir"
|
598 |
-
|
599 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
600 |
-
msgid "Cancel invoice"
|
601 |
-
msgstr "Annuler la facture"
|
602 |
-
|
603 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
604 |
-
msgid "Cancel"
|
605 |
-
msgstr "Annuler"
|
606 |
-
|
607 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
608 |
-
msgid "Are you sure to delete the invoice?"
|
609 |
-
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
610 |
-
|
611 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
612 |
-
msgid "Create invoice"
|
613 |
-
msgstr "Créer une facture"
|
614 |
-
|
615 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
616 |
-
msgid "Create"
|
617 |
-
msgstr "créer"
|
618 |
-
|
619 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
620 |
-
#, php-format
|
621 |
-
msgid "Invoice %s (PDF)"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
625 |
-
#, php-format
|
626 |
-
msgid ""
|
627 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
628 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
629 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
630 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
631 |
-
"done it!</a>"
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: includes/class-bewpi-invoice.php:48
|
635 |
-
msgid ""
|
636 |
-
"Whoops, no template found. Please select a template on the Template settings "
|
637 |
-
"page first."
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
#: includes/templates/invoices/global/micro/body.php:5
|
641 |
#: includes/templates/invoices/simple/micro/body.php:5
|
642 |
msgid "Invoice to"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+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"
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
#, php-format
|
28 |
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:267
|
34 |
#, php-format
|
35 |
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:310
|
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-invoice.php:372
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
467 |
msgid "Version %s"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
471 |
+
msgid "PDF Invoice"
|
472 |
+
msgstr "Facture PDF"
|
473 |
+
|
474 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
475 |
+
msgid "Invoiced on:"
|
476 |
+
msgstr "Facturés sur"
|
477 |
+
|
478 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
479 |
+
msgid "Invoice number:"
|
480 |
+
msgstr "Numéro de facture"
|
481 |
+
|
482 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
483 |
+
msgid "View invoice"
|
484 |
+
msgstr " Voir la facture"
|
485 |
+
|
486 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
487 |
+
msgid "View"
|
488 |
+
msgstr "Voir"
|
489 |
+
|
490 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
491 |
+
msgid "Cancel invoice"
|
492 |
+
msgstr "Annuler la facture"
|
493 |
+
|
494 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
495 |
+
msgid "Cancel"
|
496 |
+
msgstr "Annuler"
|
497 |
+
|
498 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
499 |
+
msgid "Are you sure to delete the invoice?"
|
500 |
+
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
501 |
+
|
502 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
503 |
+
msgid "Create invoice"
|
504 |
+
msgstr "Créer une facture"
|
505 |
+
|
506 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
507 |
+
msgid "Create"
|
508 |
+
msgstr "créer"
|
509 |
+
|
510 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
511 |
+
#, php-format
|
512 |
+
msgid "Invoice %s (PDF)"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
516 |
+
#, php-format
|
517 |
+
msgid ""
|
518 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
519 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
520 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
521 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
522 |
+
"done it!</a>"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: includes/class-bewpi-invoice.php:48
|
526 |
+
msgid ""
|
527 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
528 |
+
"page first."
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/partials/settings-sidebar.php:2
|
532 |
msgid "WooCommerce PDF Invoices Premium"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/partials/settings-sidebar.php:4
|
536 |
msgid ""
|
537 |
"This plugin offers a premium version which comes with the following features:"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/partials/settings-sidebar.php:5
|
541 |
msgid "Bill periodically by generating and sending global invoices."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/partials/settings-sidebar.php:6
|
545 |
msgid "Add additional PDF's to customer invoices."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/partials/settings-sidebar.php:7
|
549 |
msgid "Send customer invoices directly to suppliers and others."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/partials/settings-sidebar.php:8
|
553 |
#, php-format
|
554 |
msgid ""
|
555 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: includes/partials/settings-sidebar.php:10
|
559 |
msgid "Learn more"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/partials/settings-sidebar.php:13
|
563 |
msgid "Stay up-to-date"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/partials/settings-sidebar.php:17
|
567 |
msgid ""
|
568 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
569 |
"our newsletter."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/partials/settings-sidebar.php:23
|
573 |
msgid "Your email address"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/partials/settings-sidebar.php:29
|
577 |
msgid "Signup"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/partials/settings-sidebar.php:32
|
581 |
msgid "No spam, ever. Unsubscribe at any time"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/partials/settings-sidebar.php:41
|
585 |
msgid "About"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/partials/settings-sidebar.php:43
|
589 |
msgid ""
|
590 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
591 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/partials/settings-sidebar.php:45
|
595 |
msgid "<b>Version</b>: "
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/partials/settings-sidebar.php:47
|
599 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/partials/settings-sidebar.php:50
|
603 |
msgid "Support"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: includes/partials/settings-sidebar.php:52
|
607 |
msgid ""
|
608 |
"We will never ask for donations, but to garantee future development, we do "
|
609 |
"need your support. Please show us your appreciation by leaving a <a href="
|
612 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: includes/partials/settings-sidebar.php:72
|
616 |
msgid ""
|
617 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/partials/settings-sidebar.php:77
|
621 |
msgid "Need Help?"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/partials/settings-sidebar.php:79
|
625 |
msgid "Frequently Asked Questions"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/partials/settings-sidebar.php:80
|
629 |
msgid "Support forum"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/partials/settings-sidebar.php:81
|
633 |
msgid "Request a feature"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/partials/settings-sidebar.php:82
|
637 |
msgid "Email us"
|
638 |
msgstr ""
|
639 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
#: includes/templates/invoices/global/micro/body.php:5
|
641 |
#: includes/templates/invoices/simple/micro/body.php:5
|
642 |
msgid "Invoice to"
|
lang/woocommerce-pdf-invoices-lt_LT.mo
ADDED
Binary file
|
lang/woocommerce-pdf-invoices-lt_LT.po
ADDED
@@ -0,0 +1,665 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-11-27 15:21+0100\n"
|
6 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
7 |
+
"Last-Translator: Denisas <setasss@yahoo.com>\n"
|
8 |
+
"Language: lt\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 &&(n"
|
10 |
+
"%100<10||n%100 >= 20)? 1 : 2);\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
17 |
+
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
18 |
+
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
19 |
+
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
20 |
+
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
21 |
+
"X-Loco-Target-Locale: lt_LT\n"
|
22 |
+
"X-Generator: Poedit 1.7.3\n"
|
23 |
+
"Language-Team: \n"
|
24 |
+
"X-Poedit-SearchPath-0: ../../plugins/woocommerce-pdf-invoices\n"
|
25 |
+
|
26 |
+
#: includes/be-woocommerce-pdf-invoices.php:119
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr "Nustatymai"
|
29 |
+
|
30 |
+
#: includes/be-woocommerce-pdf-invoices.php:120
|
31 |
+
msgid "Premium"
|
32 |
+
msgstr "Premium versija"
|
33 |
+
|
34 |
+
#: includes/be-woocommerce-pdf-invoices.php:135
|
35 |
+
#, php-format
|
36 |
+
msgid ""
|
37 |
+
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce PDF "
|
38 |
+
"Invoices</strong></a>."
|
39 |
+
msgstr ""
|
40 |
+
"Tuomet! <a href=\"%s\">Pradėkime konfigūruoti<strong>WooCommerce PDF Invoices</"
|
41 |
+
"strong></a>."
|
42 |
+
|
43 |
+
#: includes/be-woocommerce-pdf-invoices.php:194
|
44 |
+
msgid "General"
|
45 |
+
msgstr "Pagrindinis"
|
46 |
+
|
47 |
+
#: includes/be-woocommerce-pdf-invoices.php:195
|
48 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
49 |
+
msgid "Template"
|
50 |
+
msgstr "Šablonas"
|
51 |
+
|
52 |
+
#: includes/be-woocommerce-pdf-invoices.php:218
|
53 |
+
msgid "Invoices"
|
54 |
+
msgstr "Sąskaitos"
|
55 |
+
|
56 |
+
#: includes/be-woocommerce-pdf-invoices.php:257
|
57 |
+
#, php-format
|
58 |
+
msgid ""
|
59 |
+
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a %s★★★★★%s "
|
60 |
+
"rating. A huge thank you in advance!"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: includes/be-woocommerce-pdf-invoices.php:258
|
64 |
+
#, php-format
|
65 |
+
msgid "Version %s"
|
66 |
+
msgstr "Versija %s "
|
67 |
+
|
68 |
+
#: includes/be-woocommerce-pdf-invoices.php:282
|
69 |
+
msgid "WooCommerce PDF Invoices Premium"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
73 |
+
msgid "This plugin offers a premium version wich comes with the following features:"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
77 |
+
msgid "Bill periodically by generating and sending global invoices."
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/be-woocommerce-pdf-invoices.php:286
|
81 |
+
msgid "Add additional PDF's to customer invoices."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: includes/be-woocommerce-pdf-invoices.php:287
|
85 |
+
msgid "Send customer invoices directly to suppliers and others."
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/be-woocommerce-pdf-invoices.php:289
|
89 |
+
msgid "Learn more"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: includes/be-woocommerce-pdf-invoices.php:293
|
93 |
+
msgid "Stay up-to-date"
|
94 |
+
msgstr "Sekite naujienas"
|
95 |
+
|
96 |
+
#: includes/be-woocommerce-pdf-invoices.php:302
|
97 |
+
msgid ""
|
98 |
+
"We're constantly developing new features, stay up-to-date by subscribing to our "
|
99 |
+
"newsletter."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/be-woocommerce-pdf-invoices.php:308
|
103 |
+
msgid "Your email address"
|
104 |
+
msgstr "Jūsų el. paštas"
|
105 |
+
|
106 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
107 |
+
msgid "Signup"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
111 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/be-woocommerce-pdf-invoices.php:320
|
115 |
+
msgid "About"
|
116 |
+
msgstr "Apie"
|
117 |
+
|
118 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
119 |
+
msgid ""
|
120 |
+
"This plugin is an open source project wich aims to fill the invoicing gap of <a "
|
121 |
+
"href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/be-woocommerce-pdf-invoices.php:322
|
125 |
+
msgid "<b>Version</b>: "
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/be-woocommerce-pdf-invoices.php:324
|
129 |
+
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/be-woocommerce-pdf-invoices.php:327
|
133 |
+
msgid "Support"
|
134 |
+
msgstr "Palaikymas"
|
135 |
+
|
136 |
+
#: includes/be-woocommerce-pdf-invoices.php:328
|
137 |
+
msgid ""
|
138 |
+
"We will never ask for donations, but to garantee future development, we do need "
|
139 |
+
"your support. Please show us your appreciation by leaving a <a href=\"https://"
|
140 |
+
"wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform"
|
141 |
+
"\">★★★★★</a> rating and vote for <a href=\"https://wordpress.org/plugins/"
|
142 |
+
"woocommerce-pdf-invoices/\">works</a>."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/be-woocommerce-pdf-invoices.php:347
|
146 |
+
msgid "Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
150 |
+
msgid "Need Help?"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: includes/be-woocommerce-pdf-invoices.php:354
|
154 |
+
msgid "Frequently Asked Questions"
|
155 |
+
msgstr "Dažnai užduodami klausimai"
|
156 |
+
|
157 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
158 |
+
msgid "Support forum"
|
159 |
+
msgstr "Aplankyti pagalbos forumą"
|
160 |
+
|
161 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
162 |
+
msgid "Request a feature"
|
163 |
+
msgstr "Pasiūlyti galimybę"
|
164 |
+
|
165 |
+
#: includes/be-woocommerce-pdf-invoices.php:357
|
166 |
+
msgid "Email us"
|
167 |
+
msgstr "Susiekite el. paštu"
|
168 |
+
|
169 |
+
#: includes/be-woocommerce-pdf-invoices.php:412
|
170 |
+
msgid "PDF Invoice"
|
171 |
+
msgstr "Sąskaita-faktūra pdf formatu"
|
172 |
+
|
173 |
+
#: includes/be-woocommerce-pdf-invoices.php:438
|
174 |
+
msgid "Invoiced on:"
|
175 |
+
msgstr "Sąskaita išrašyta:"
|
176 |
+
|
177 |
+
#: includes/be-woocommerce-pdf-invoices.php:442
|
178 |
+
msgid "Invoice number:"
|
179 |
+
msgstr "Sąskaitos faktūros numeris"
|
180 |
+
|
181 |
+
#: includes/be-woocommerce-pdf-invoices.php:480
|
182 |
+
msgid "View invoice"
|
183 |
+
msgstr "Peržiūrėti sąskaitą faktūrą"
|
184 |
+
|
185 |
+
#: includes/be-woocommerce-pdf-invoices.php:480
|
186 |
+
msgid "View"
|
187 |
+
msgstr "Peržiūrėti"
|
188 |
+
|
189 |
+
#: includes/be-woocommerce-pdf-invoices.php:481
|
190 |
+
msgid "Cancel invoice"
|
191 |
+
msgstr "Atšaukti sąskaitą-faktūrą"
|
192 |
+
|
193 |
+
#: includes/be-woocommerce-pdf-invoices.php:481
|
194 |
+
msgid "Cancel"
|
195 |
+
msgstr "Atšaukti"
|
196 |
+
|
197 |
+
#: includes/be-woocommerce-pdf-invoices.php:483
|
198 |
+
msgid "Are you sure to delete the invoice?"
|
199 |
+
msgstr "Ar Jūs esate tikras, kad norite ištrinti sąskaitą faktūrą?"
|
200 |
+
|
201 |
+
#: includes/be-woocommerce-pdf-invoices.php:486
|
202 |
+
msgid "Create invoice"
|
203 |
+
msgstr "Sukurti sąskaitą"
|
204 |
+
|
205 |
+
#: includes/be-woocommerce-pdf-invoices.php:486
|
206 |
+
msgid "Create"
|
207 |
+
msgstr "Sukurti"
|
208 |
+
|
209 |
+
#: includes/be-woocommerce-pdf-invoices.php:519
|
210 |
+
#, php-format
|
211 |
+
msgid "Invoice %s (PDF)"
|
212 |
+
msgstr "Sąskaita-faktūra %s (PDF)"
|
213 |
+
|
214 |
+
#: includes/be-woocommerce-pdf-invoices.php:630
|
215 |
+
#, php-format
|
216 |
+
msgid ""
|
217 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We really "
|
218 |
+
"need your ★★★★★ rating. It will support future development big-time. A huge thanks "
|
219 |
+
"in advance and keep up the good work! <br /> <a href='%s' target='_blank'>Yes, "
|
220 |
+
"will do it right away!</a> - <a href='%s'>No, already done it!</a>"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/class-bewpi-invoice.php:48
|
224 |
+
msgid ""
|
225 |
+
"Whoops, no template found. Please select a template on the Template settings page "
|
226 |
+
"first."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/abstracts/abstract-bewpi-document.php:69
|
230 |
+
msgid "Paid"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
234 |
+
#, php-format
|
235 |
+
msgid "Invoice with invoice number %s not found. First create invoice and try again."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/abstracts/abstract-bewpi-setting.php:96
|
239 |
+
msgid "Allowed HTML tags: "
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/abstracts/abstract-bewpi-setting.php:176
|
243 |
+
msgid "Remove logo"
|
244 |
+
msgstr "Pašalinti Logotipą"
|
245 |
+
|
246 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:86
|
247 |
+
msgid "View PDF"
|
248 |
+
msgstr "Peržiūrėti PDF"
|
249 |
+
|
250 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:94
|
251 |
+
msgid "Download"
|
252 |
+
msgstr "Parsisiųsti"
|
253 |
+
|
254 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:98
|
255 |
+
msgid "Open in new browser tab/window"
|
256 |
+
msgstr "Atverti nuorodą naujame lange / kortelėje"
|
257 |
+
|
258 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:107
|
259 |
+
msgid "Attach to Email"
|
260 |
+
msgstr "pridėti prie el. pašto"
|
261 |
+
|
262 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:115
|
263 |
+
msgid "Processing order"
|
264 |
+
msgstr "Vykdomas užsakymas"
|
265 |
+
|
266 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:119
|
267 |
+
msgid "Completed order"
|
268 |
+
msgstr "Įvykdytas užsakymas"
|
269 |
+
|
270 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:123
|
271 |
+
msgid "Customer invoice"
|
272 |
+
msgstr "Sąskaita pirkėjui"
|
273 |
+
|
274 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:127
|
275 |
+
msgid "Do not attach"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:141
|
279 |
+
msgid "Attach to New order Email"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
283 |
+
msgid "Enable Email It In"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:161
|
287 |
+
msgid "Email It In account"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:166
|
291 |
+
#, php-format
|
292 |
+
msgid "Get your account from your Email It In %suser account%s."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:180
|
296 |
+
msgid "Email Options"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:186
|
300 |
+
msgid "Cloud Storage Options"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:193
|
304 |
+
#, php-format
|
305 |
+
msgid ""
|
306 |
+
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or Egnyte "
|
307 |
+
"and enter your account below."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:100
|
311 |
+
msgid "Color theme"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:111
|
315 |
+
msgid "Date format"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:116
|
319 |
+
#, php-format
|
320 |
+
msgid "%sFormat%s of invoice date and order date."
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:131
|
324 |
+
msgid "Display prices including tax"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:132
|
328 |
+
msgid ""
|
329 |
+
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will still be "
|
330 |
+
"excluding tax, so disable it within the visible columns section."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:144
|
334 |
+
msgid "Shipping taxable"
|
335 |
+
msgstr "Apmokęstinamas pristatymas"
|
336 |
+
|
337 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:145
|
338 |
+
msgid "Enable to display subtotal including shipping."
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:157
|
342 |
+
msgid "Mark invoice as paid"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:158
|
346 |
+
msgid "Invoice will be watermarked when order has been paid."
|
347 |
+
msgstr "Sąskaita bus pažymėta vandens ženklais kai užsakymas bus apmokėtas."
|
348 |
+
|
349 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:166
|
350 |
+
msgid "Company name"
|
351 |
+
msgstr "Įmonės pavadinimas"
|
352 |
+
|
353 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:177
|
354 |
+
msgid "Company logo"
|
355 |
+
msgstr "Įmonės logo"
|
356 |
+
|
357 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
358 |
+
msgid ""
|
359 |
+
"<b>Note</b>: If your logo doesn't show up, try to enable <code>allow_url_fopen</"
|
360 |
+
"code>."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
364 |
+
msgid "Company address"
|
365 |
+
msgstr "Įmonės adresas"
|
366 |
+
|
367 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
368 |
+
msgid "Displayed in upper-right corner near logo."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
372 |
+
msgid "Company details"
|
373 |
+
msgstr "Įmonės rekvizitai"
|
374 |
+
|
375 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
376 |
+
msgid "Displayed below company address."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
380 |
+
msgid "Thank you text"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
384 |
+
msgid "Displayed in big colored bar directly after invoice total."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
388 |
+
msgid "Thank you for your purchase!"
|
389 |
+
msgstr "Dėkojame už užsakymą"
|
390 |
+
|
391 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
392 |
+
msgid "Show customer notes"
|
393 |
+
msgstr "Rodyti pirkėjų pastabas"
|
394 |
+
|
395 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:234
|
396 |
+
msgid "Terms & conditions, policies etc."
|
397 |
+
msgstr "Terminai ir sąlygos"
|
398 |
+
|
399 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:239
|
400 |
+
#, php-format
|
401 |
+
msgid ""
|
402 |
+
"Displayed below customer notes and above footer. Want to attach additional pages "
|
403 |
+
"to the invoice? Take a look at the <a href=\"%s\">Premium</a> plugin."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:240
|
407 |
+
msgid "Items will be shipped within 2 days."
|
408 |
+
msgstr "Prekės bus pristatytos per 2 dienas."
|
409 |
+
|
410 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
411 |
+
msgid "Left footer column."
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
415 |
+
#, php-format
|
416 |
+
msgid "<b>Payment method</b> %s"
|
417 |
+
msgstr "<b>Apmokėjimo būdas</b> %s"
|
418 |
+
|
419 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
420 |
+
msgid "Right footer column."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
424 |
+
msgid "Leave empty to show page numbering."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
428 |
+
msgid "Type"
|
429 |
+
msgstr "Tipas"
|
430 |
+
|
431 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:277
|
432 |
+
msgid "WooCommerce order number"
|
433 |
+
msgstr "WooCommerce užsakymo numeris"
|
434 |
+
|
435 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:281
|
436 |
+
msgid "Sequential number"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:295
|
440 |
+
msgid "Reset invoice counter"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:305
|
444 |
+
msgid "Next"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:310
|
448 |
+
msgid ""
|
449 |
+
"Reset the invoice counter and start counting from given invoice number.<br/"
|
450 |
+
"><b>Note:</b> Only available for Sequential numbering and value will be editable "
|
451 |
+
"by selecting checkbox. Next number needs to be lower then highest existing invoice "
|
452 |
+
"number or delete invoices first."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:320
|
456 |
+
msgid "Digits"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:336
|
460 |
+
msgid "[prefix]"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:347
|
464 |
+
msgid "[suffix]"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:358
|
468 |
+
msgid "Format"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:363
|
472 |
+
#, php-format
|
473 |
+
msgid ""
|
474 |
+
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and slashes "
|
475 |
+
"aren't supported."
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
479 |
+
msgid "Reset on 1st of january"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
483 |
+
#: includes/templates/invoices/global/micro/body.php:44
|
484 |
+
#: includes/templates/invoices/simple/micro/body.php:46
|
485 |
+
msgid "SKU"
|
486 |
+
msgstr "prekės ID"
|
487 |
+
|
488 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:402
|
489 |
+
#: includes/templates/invoices/global/micro/body.php:236
|
490 |
+
#: includes/templates/invoices/simple/micro/body.php:222
|
491 |
+
msgid "Subtotal"
|
492 |
+
msgstr "Viso"
|
493 |
+
|
494 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
495 |
+
msgid "Tax (item)"
|
496 |
+
msgstr "Mokesčiai (prekės)"
|
497 |
+
|
498 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
499 |
+
msgid "Tax (total)"
|
500 |
+
msgstr "Mokesčiai (viso)"
|
501 |
+
|
502 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:438
|
503 |
+
#: includes/templates/invoices/global/micro/body.php:220
|
504 |
+
#: includes/templates/invoices/simple/micro/body.php:206
|
505 |
+
msgid "Discount"
|
506 |
+
msgstr "Nuolaida"
|
507 |
+
|
508 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:450
|
509 |
+
#: includes/templates/invoices/global/micro/body.php:228
|
510 |
+
#: includes/templates/invoices/global/micro/body.php:244
|
511 |
+
#: includes/templates/invoices/simple/micro/body.php:214
|
512 |
+
#: includes/templates/invoices/simple/micro/body.php:230
|
513 |
+
msgid "Shipping"
|
514 |
+
msgstr "Siuntimas"
|
515 |
+
|
516 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:464
|
517 |
+
msgid "General Options"
|
518 |
+
msgstr "Pagrindiniai nustatymai"
|
519 |
+
|
520 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:470
|
521 |
+
msgid "Invoice Number Options"
|
522 |
+
msgstr "Sąskaitos faktūros numerio nustatymai"
|
523 |
+
|
524 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:476
|
525 |
+
msgid "Header Options"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
529 |
+
msgid "Body Options"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:488
|
533 |
+
msgid "Footer Options"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:494
|
537 |
+
msgid "Visible Columns"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:500
|
541 |
+
msgid "These are the general template options."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:501
|
545 |
+
msgid "These are the invoice number options."
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:502
|
549 |
+
msgid "The header will be visible on every page. "
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
553 |
+
msgid "The footer will be visible on every page."
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:506
|
557 |
+
msgid ""
|
558 |
+
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the order "
|
559 |
+
"payment method."
|
560 |
+
msgstr ""
|
561 |
+
"<b>Patarimas:</b> Naudokite <code>[payment_method]</code> rezervavimo ženklas "
|
562 |
+
"rodyti kad mokėjimo būdą."
|
563 |
+
|
564 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:509
|
565 |
+
msgid "Enable or disable the columns."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:579
|
569 |
+
msgid "File is invalid and contains either '..' or './'."
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:586
|
573 |
+
msgid "File is invalid and contains ':' after the first character."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:595
|
577 |
+
msgid "File should be less then 2MB."
|
578 |
+
msgstr "Failas turi būti mažesnis nei 2MB"
|
579 |
+
|
580 |
+
#: includes/templates/invoices/global/micro/body.php:5
|
581 |
+
#: includes/templates/invoices/simple/micro/body.php:5
|
582 |
+
msgid "Invoice to"
|
583 |
+
msgstr "Sąskaita išrašyta"
|
584 |
+
|
585 |
+
#: includes/templates/invoices/global/micro/body.php:7
|
586 |
+
#: includes/templates/invoices/simple/micro/body.php:7
|
587 |
+
#, php-format
|
588 |
+
msgid "Phone: %s"
|
589 |
+
msgstr "Telefonas: %s"
|
590 |
+
|
591 |
+
#: includes/templates/invoices/global/micro/body.php:11
|
592 |
+
#: includes/templates/invoices/simple/micro/body.php:11
|
593 |
+
msgid "Ship to"
|
594 |
+
msgstr "Siųsti į"
|
595 |
+
|
596 |
+
#: includes/templates/invoices/global/micro/body.php:22
|
597 |
+
msgid "Global Invoice"
|
598 |
+
msgstr "Bendra sąskaita"
|
599 |
+
|
600 |
+
#: includes/templates/invoices/global/micro/body.php:40
|
601 |
+
#: includes/templates/invoices/simple/micro/body.php:42
|
602 |
+
msgid "Description"
|
603 |
+
msgstr "Aprašymas"
|
604 |
+
|
605 |
+
#: includes/templates/invoices/global/micro/body.php:48
|
606 |
+
#: includes/templates/invoices/simple/micro/body.php:50
|
607 |
+
msgid "Cost"
|
608 |
+
msgstr "Kaina"
|
609 |
+
|
610 |
+
#: includes/templates/invoices/global/micro/body.php:50
|
611 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
612 |
+
msgid "Qty"
|
613 |
+
msgstr "Kiekis"
|
614 |
+
|
615 |
+
#: includes/templates/invoices/global/micro/body.php:56
|
616 |
+
#: includes/templates/invoices/simple/micro/body.php:58
|
617 |
+
msgid "VAT"
|
618 |
+
msgstr "PVM"
|
619 |
+
|
620 |
+
#: includes/templates/invoices/global/micro/body.php:67
|
621 |
+
#: includes/templates/invoices/global/micro/body.php:280
|
622 |
+
#: includes/templates/invoices/simple/micro/body.php:69
|
623 |
+
#: includes/templates/invoices/simple/micro/body.php:266
|
624 |
+
msgid "Total"
|
625 |
+
msgstr "Viso"
|
626 |
+
|
627 |
+
#: includes/templates/invoices/global/micro/body.php:75
|
628 |
+
#, php-format
|
629 |
+
msgid "Order #%d - %s"
|
630 |
+
msgstr "Užsakymas #%d - %s"
|
631 |
+
|
632 |
+
#: includes/templates/invoices/global/micro/body.php:255
|
633 |
+
#: includes/templates/invoices/simple/micro/body.php:241
|
634 |
+
msgid "Fee"
|
635 |
+
msgstr "Mokestis"
|
636 |
+
|
637 |
+
#: includes/templates/invoices/global/micro/body.php:287
|
638 |
+
#: includes/templates/invoices/simple/micro/body.php:273
|
639 |
+
msgid "Refunded"
|
640 |
+
msgstr "Grąžinta"
|
641 |
+
|
642 |
+
#: includes/templates/invoices/global/micro/footer.php:15
|
643 |
+
#: includes/templates/invoices/simple/micro/footer.php:18
|
644 |
+
#, php-format
|
645 |
+
msgid "%s of %s"
|
646 |
+
msgstr "%s iš %s"
|
647 |
+
|
648 |
+
#: includes/templates/invoices/simple/micro/body.php:22
|
649 |
+
msgid "Invoice"
|
650 |
+
msgstr "Sąskaita"
|
651 |
+
|
652 |
+
#: includes/templates/invoices/simple/micro/body.php:25
|
653 |
+
#, php-format
|
654 |
+
msgid "Order Number: %s"
|
655 |
+
msgstr "Užsaymo numeris: %s"
|
656 |
+
|
657 |
+
#: includes/templates/invoices/simple/micro/body.php:26
|
658 |
+
#, php-format
|
659 |
+
msgid "Order Date: %s"
|
660 |
+
msgstr "Užsakymo data: %s"
|
661 |
+
|
662 |
+
#: includes/templates/invoices/simple/micro/body.php:288
|
663 |
+
#: includes/templates/invoices/simple/micro/body.php:293
|
664 |
+
msgid "Customer note"
|
665 |
+
msgstr "Pirkėjo pastaba"
|
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: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
msgid "Paid"
|
24 |
msgstr "Betalt"
|
25 |
|
26 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
"Kunne ikke opprette faktira. For å tilbakestille fakturanummer med %d, slett "
|
33 |
"alle fakturaer med fakturanummer %s og høyere."
|
34 |
|
35 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
36 |
#, php-format
|
37 |
msgid ""
|
38 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
@@ -41,7 +41,7 @@ msgstr ""
|
|
41 |
"Kunne ikke opprette faktura. Faktura med fakturanummer %s eksisterer "
|
42 |
"allerede. Først må du slette denne fakturaen før du forsøker igjen."
|
43 |
|
44 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
@@ -49,12 +49,12 @@ msgstr ""
|
|
49 |
"Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
|
50 |
"igjen."
|
51 |
|
52 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
53 |
#, php-format
|
54 |
msgid "VAT Number: %s"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
58 |
#, php-format
|
59 |
msgid "Purchase Order Number: %s"
|
60 |
msgstr ""
|
@@ -491,30 +491,97 @@ msgstr ""
|
|
491 |
msgid "Version %s"
|
492 |
msgstr "Versjon %s"
|
493 |
|
494 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
msgid "WooCommerce PDF Invoices Premium"
|
496 |
msgstr "WooCommerce PDF Faktura Premium"
|
497 |
|
498 |
-
#: includes/
|
499 |
msgid ""
|
500 |
"This plugin offers a premium version which comes with the following features:"
|
501 |
msgstr ""
|
502 |
"Denne utvidelsen tilbyr også en premium versjon som kommer med følgende "
|
503 |
"funksjoner:"
|
504 |
|
505 |
-
#: includes/
|
506 |
msgid "Bill periodically by generating and sending global invoices."
|
507 |
msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
|
508 |
|
509 |
-
#: includes/
|
510 |
msgid "Add additional PDF's to customer invoices."
|
511 |
msgstr "Legg til flere PDFer til kundefakturaer."
|
512 |
|
513 |
-
#: includes/
|
514 |
msgid "Send customer invoices directly to suppliers and others."
|
515 |
msgstr "Send kundefakturaer direkte til leverandører og andre."
|
516 |
|
517 |
-
#: includes/
|
518 |
#, php-format
|
519 |
msgid ""
|
520 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
@@ -522,15 +589,15 @@ msgstr ""
|
|
522 |
"Kompatibel med <a href=\"%s\">WooCommerce Subscriptions</a> utvidelses e-"
|
523 |
"poster."
|
524 |
|
525 |
-
#: includes/
|
526 |
msgid "Learn more"
|
527 |
msgstr "Les mer"
|
528 |
|
529 |
-
#: includes/
|
530 |
msgid "Stay up-to-date"
|
531 |
msgstr "Hold deg oppdatert"
|
532 |
|
533 |
-
#: includes/
|
534 |
msgid ""
|
535 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
536 |
"our newsletter."
|
@@ -538,23 +605,23 @@ msgstr ""
|
|
538 |
"Vi jobber kontinuerlig med å utvikle nye funksjoner, så hold deg oppdatert "
|
539 |
"ved å melde deg på nyhetsbrevet vårt."
|
540 |
|
541 |
-
#: includes/
|
542 |
msgid "Your email address"
|
543 |
msgstr "Din e-post adresse"
|
544 |
|
545 |
-
#: includes/
|
546 |
msgid "Signup"
|
547 |
msgstr "Registrer"
|
548 |
|
549 |
-
#: includes/
|
550 |
msgid "No spam, ever. Unsubscribe at any time"
|
551 |
msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
|
552 |
|
553 |
-
#: includes/
|
554 |
msgid "About"
|
555 |
msgstr "Om"
|
556 |
|
557 |
-
#: includes/
|
558 |
msgid ""
|
559 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
560 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -563,19 +630,19 @@ msgstr ""
|
|
563 |
"funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
|
564 |
"com/woocommerce\">WooCommerce</a>."
|
565 |
|
566 |
-
#: includes/
|
567 |
msgid "<b>Version</b>: "
|
568 |
msgstr "<b>Versjon</b>: "
|
569 |
|
570 |
-
#: includes/
|
571 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
572 |
msgstr "<b>Skaper</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
573 |
|
574 |
-
#: includes/
|
575 |
msgid "Support"
|
576 |
msgstr "Hjelp"
|
577 |
|
578 |
-
#: includes/
|
579 |
msgid ""
|
580 |
"We will never ask for donations, but to garantee future development, we do "
|
581 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -589,100 +656,33 @@ msgstr ""
|
|
589 |
"pdf-invoices?rate=5#postform\">★★★★★</a> vurdering og stem på <a href="
|
590 |
"\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">arbeidet</a>."
|
591 |
|
592 |
-
#: includes/
|
593 |
msgid ""
|
594 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
595 |
msgstr ""
|
596 |
"Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
|
597 |
"for WordPress!"
|
598 |
|
599 |
-
#: includes/
|
600 |
msgid "Need Help?"
|
601 |
msgstr "Trenger du hjelp?"
|
602 |
|
603 |
-
#: includes/
|
604 |
msgid "Frequently Asked Questions"
|
605 |
msgstr "Ofte stilte spørsmål"
|
606 |
|
607 |
-
#: includes/
|
608 |
msgid "Support forum"
|
609 |
msgstr "Supportforum"
|
610 |
|
611 |
-
#: includes/
|
612 |
msgid "Request a feature"
|
613 |
msgstr "Foreslå en ny funksjon"
|
614 |
|
615 |
-
#: includes/
|
616 |
msgid "Email us"
|
617 |
msgstr "Send oss en e-post"
|
618 |
|
619 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
620 |
-
msgid "PDF Invoice"
|
621 |
-
msgstr "PDF Faktura"
|
622 |
-
|
623 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
624 |
-
msgid "Invoiced on:"
|
625 |
-
msgstr "Sendt:"
|
626 |
-
|
627 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
628 |
-
msgid "Invoice number:"
|
629 |
-
msgstr "Fakturanummer:"
|
630 |
-
|
631 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
632 |
-
msgid "View invoice"
|
633 |
-
msgstr "Vis faktura"
|
634 |
-
|
635 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
636 |
-
msgid "View"
|
637 |
-
msgstr "Vis"
|
638 |
-
|
639 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
640 |
-
msgid "Cancel invoice"
|
641 |
-
msgstr "Slett faktura"
|
642 |
-
|
643 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
644 |
-
msgid "Cancel"
|
645 |
-
msgstr "Slett"
|
646 |
-
|
647 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
648 |
-
msgid "Are you sure to delete the invoice?"
|
649 |
-
msgstr "Er du sikker på at du vil slette fakturaen?"
|
650 |
-
|
651 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
652 |
-
msgid "Create invoice"
|
653 |
-
msgstr "Opprett faktura"
|
654 |
-
|
655 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
656 |
-
msgid "Create"
|
657 |
-
msgstr "Opprett"
|
658 |
-
|
659 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
660 |
-
#, php-format
|
661 |
-
msgid "Invoice %s (PDF)"
|
662 |
-
msgstr "Faktura %s (PDF)"
|
663 |
-
|
664 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
665 |
-
#, php-format
|
666 |
-
msgid ""
|
667 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
668 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
669 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
670 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
671 |
-
"done it!</a>"
|
672 |
-
msgstr ""
|
673 |
-
"Du har brukt <b>WooCommerce PDF Faktura</b> en stund nå. Vi trenger virkelig "
|
674 |
-
"din ★★★★★ vurdering. Det vil virkelig støtte fremtidig utvikling. På forhånd "
|
675 |
-
"tusen takk, og fortsett det fantastiske arbeidet! <br /> <a href='%s' "
|
676 |
-
"target='_blank'>Ja, jeg skal gjøre det med en gang!</a> - <a href='%s'>Nei, "
|
677 |
-
"jeg har allerede gjort det!</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 |
-
"Ooops! Ingen mal ble funnet. Vennligt velg en mal under innstillinger først."
|
685 |
-
|
686 |
#: includes/templates/invoices/global/micro/body.php:5
|
687 |
#: includes/templates/invoices/simple/micro/body.php:5
|
688 |
msgid "Invoice to"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
23 |
msgid "Paid"
|
24 |
msgstr "Betalt"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
32 |
"Kunne ikke opprette faktira. For å tilbakestille fakturanummer med %d, slett "
|
33 |
"alle fakturaer med fakturanummer %s og høyere."
|
34 |
|
35 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:267
|
36 |
#, php-format
|
37 |
msgid ""
|
38 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
41 |
"Kunne ikke opprette faktura. Faktura med fakturanummer %s eksisterer "
|
42 |
"allerede. Først må du slette denne fakturaen før du forsøker igjen."
|
43 |
|
44 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:310
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
49 |
"Faktura med fakturanummer %s finnes ikke. Opprett denne fakturaen og forsøk "
|
50 |
"igjen."
|
51 |
|
52 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
53 |
#, php-format
|
54 |
msgid "VAT Number: %s"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
58 |
#, php-format
|
59 |
msgid "Purchase Order Number: %s"
|
60 |
msgstr ""
|
491 |
msgid "Version %s"
|
492 |
msgstr "Versjon %s"
|
493 |
|
494 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
495 |
+
msgid "PDF Invoice"
|
496 |
+
msgstr "PDF Faktura"
|
497 |
+
|
498 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
499 |
+
msgid "Invoiced on:"
|
500 |
+
msgstr "Sendt:"
|
501 |
+
|
502 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
503 |
+
msgid "Invoice number:"
|
504 |
+
msgstr "Fakturanummer:"
|
505 |
+
|
506 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
507 |
+
msgid "View invoice"
|
508 |
+
msgstr "Vis faktura"
|
509 |
+
|
510 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
511 |
+
msgid "View"
|
512 |
+
msgstr "Vis"
|
513 |
+
|
514 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
515 |
+
msgid "Cancel invoice"
|
516 |
+
msgstr "Slett faktura"
|
517 |
+
|
518 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
519 |
+
msgid "Cancel"
|
520 |
+
msgstr "Slett"
|
521 |
+
|
522 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
523 |
+
msgid "Are you sure to delete the invoice?"
|
524 |
+
msgstr "Er du sikker på at du vil slette fakturaen?"
|
525 |
+
|
526 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
527 |
+
msgid "Create invoice"
|
528 |
+
msgstr "Opprett faktura"
|
529 |
+
|
530 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
531 |
+
msgid "Create"
|
532 |
+
msgstr "Opprett"
|
533 |
+
|
534 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
535 |
+
#, php-format
|
536 |
+
msgid "Invoice %s (PDF)"
|
537 |
+
msgstr "Faktura %s (PDF)"
|
538 |
+
|
539 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
540 |
+
#, php-format
|
541 |
+
msgid ""
|
542 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
543 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
544 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
545 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
546 |
+
"done it!</a>"
|
547 |
+
msgstr ""
|
548 |
+
"Du har brukt <b>WooCommerce PDF Faktura</b> en stund nå. Vi trenger virkelig "
|
549 |
+
"din ★★★★★ vurdering. Det vil virkelig støtte fremtidig utvikling. På forhånd "
|
550 |
+
"tusen takk, og fortsett det fantastiske arbeidet! <br /> <a href='%s' "
|
551 |
+
"target='_blank'>Ja, jeg skal gjøre det med en gang!</a> - <a href='%s'>Nei, "
|
552 |
+
"jeg har allerede gjort det!</a>"
|
553 |
+
|
554 |
+
#: includes/class-bewpi-invoice.php:48
|
555 |
+
msgid ""
|
556 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
557 |
+
"page first."
|
558 |
+
msgstr ""
|
559 |
+
"Ooops! Ingen mal ble funnet. Vennligt velg en mal under innstillinger først."
|
560 |
+
|
561 |
+
#: includes/partials/settings-sidebar.php:2
|
562 |
msgid "WooCommerce PDF Invoices Premium"
|
563 |
msgstr "WooCommerce PDF Faktura Premium"
|
564 |
|
565 |
+
#: includes/partials/settings-sidebar.php:4
|
566 |
msgid ""
|
567 |
"This plugin offers a premium version which comes with the following features:"
|
568 |
msgstr ""
|
569 |
"Denne utvidelsen tilbyr også en premium versjon som kommer med følgende "
|
570 |
"funksjoner:"
|
571 |
|
572 |
+
#: includes/partials/settings-sidebar.php:5
|
573 |
msgid "Bill periodically by generating and sending global invoices."
|
574 |
msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
|
575 |
|
576 |
+
#: includes/partials/settings-sidebar.php:6
|
577 |
msgid "Add additional PDF's to customer invoices."
|
578 |
msgstr "Legg til flere PDFer til kundefakturaer."
|
579 |
|
580 |
+
#: includes/partials/settings-sidebar.php:7
|
581 |
msgid "Send customer invoices directly to suppliers and others."
|
582 |
msgstr "Send kundefakturaer direkte til leverandører og andre."
|
583 |
|
584 |
+
#: includes/partials/settings-sidebar.php:8
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
589 |
"Kompatibel med <a href=\"%s\">WooCommerce Subscriptions</a> utvidelses e-"
|
590 |
"poster."
|
591 |
|
592 |
+
#: includes/partials/settings-sidebar.php:10
|
593 |
msgid "Learn more"
|
594 |
msgstr "Les mer"
|
595 |
|
596 |
+
#: includes/partials/settings-sidebar.php:13
|
597 |
msgid "Stay up-to-date"
|
598 |
msgstr "Hold deg oppdatert"
|
599 |
|
600 |
+
#: includes/partials/settings-sidebar.php:17
|
601 |
msgid ""
|
602 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
603 |
"our newsletter."
|
605 |
"Vi jobber kontinuerlig med å utvikle nye funksjoner, så hold deg oppdatert "
|
606 |
"ved å melde deg på nyhetsbrevet vårt."
|
607 |
|
608 |
+
#: includes/partials/settings-sidebar.php:23
|
609 |
msgid "Your email address"
|
610 |
msgstr "Din e-post adresse"
|
611 |
|
612 |
+
#: includes/partials/settings-sidebar.php:29
|
613 |
msgid "Signup"
|
614 |
msgstr "Registrer"
|
615 |
|
616 |
+
#: includes/partials/settings-sidebar.php:32
|
617 |
msgid "No spam, ever. Unsubscribe at any time"
|
618 |
msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
|
619 |
|
620 |
+
#: includes/partials/settings-sidebar.php:41
|
621 |
msgid "About"
|
622 |
msgstr "Om"
|
623 |
|
624 |
+
#: includes/partials/settings-sidebar.php:43
|
625 |
msgid ""
|
626 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
627 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
630 |
"funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
|
631 |
"com/woocommerce\">WooCommerce</a>."
|
632 |
|
633 |
+
#: includes/partials/settings-sidebar.php:45
|
634 |
msgid "<b>Version</b>: "
|
635 |
msgstr "<b>Versjon</b>: "
|
636 |
|
637 |
+
#: includes/partials/settings-sidebar.php:47
|
638 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
639 |
msgstr "<b>Skaper</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
640 |
|
641 |
+
#: includes/partials/settings-sidebar.php:50
|
642 |
msgid "Support"
|
643 |
msgstr "Hjelp"
|
644 |
|
645 |
+
#: includes/partials/settings-sidebar.php:52
|
646 |
msgid ""
|
647 |
"We will never ask for donations, but to garantee future development, we do "
|
648 |
"need your support. Please show us your appreciation by leaving a <a href="
|
656 |
"pdf-invoices?rate=5#postform\">★★★★★</a> vurdering og stem på <a href="
|
657 |
"\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">arbeidet</a>."
|
658 |
|
659 |
+
#: includes/partials/settings-sidebar.php:72
|
660 |
msgid ""
|
661 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
662 |
msgstr ""
|
663 |
"Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
|
664 |
"for WordPress!"
|
665 |
|
666 |
+
#: includes/partials/settings-sidebar.php:77
|
667 |
msgid "Need Help?"
|
668 |
msgstr "Trenger du hjelp?"
|
669 |
|
670 |
+
#: includes/partials/settings-sidebar.php:79
|
671 |
msgid "Frequently Asked Questions"
|
672 |
msgstr "Ofte stilte spørsmål"
|
673 |
|
674 |
+
#: includes/partials/settings-sidebar.php:80
|
675 |
msgid "Support forum"
|
676 |
msgstr "Supportforum"
|
677 |
|
678 |
+
#: includes/partials/settings-sidebar.php:81
|
679 |
msgid "Request a feature"
|
680 |
msgstr "Foreslå en ny funksjon"
|
681 |
|
682 |
+
#: includes/partials/settings-sidebar.php:82
|
683 |
msgid "Email us"
|
684 |
msgstr "Send oss en e-post"
|
685 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
686 |
#: includes/templates/invoices/global/micro/body.php:5
|
687 |
#: includes/templates/invoices/simple/micro/body.php:5
|
688 |
msgid "Invoice to"
|
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: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -23,7 +23,7 @@ msgstr ""
|
|
23 |
msgid "Paid"
|
24 |
msgstr "Betaald"
|
25 |
|
26 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
@@ -32,7 +32,7 @@ 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:
|
36 |
#, php-format
|
37 |
msgid ""
|
38 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
@@ -41,7 +41,7 @@ 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:
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
@@ -49,15 +49,15 @@ msgstr ""
|
|
49 |
"Factuur met factuurnummer %s niet gevonden. Maak eerst de factuur en probeer "
|
50 |
"opnieuw."
|
51 |
|
52 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
53 |
#, php-format
|
54 |
msgid "VAT Number: %s"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
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: "
|
@@ -490,31 +490,99 @@ msgstr ""
|
|
490 |
msgid "Version %s"
|
491 |
msgstr "Versie %s"
|
492 |
|
493 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
msgid "WooCommerce PDF Invoices Premium"
|
495 |
msgstr "WooCommerce PDF Invoices Premium"
|
496 |
|
497 |
-
#: includes/
|
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/
|
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/
|
510 |
msgid "Add additional PDF's to customer invoices."
|
511 |
msgstr "Voeg meerdere PDF's toe aan de factuur."
|
512 |
|
513 |
-
#: includes/
|
514 |
msgid "Send customer invoices directly to suppliers and others."
|
515 |
msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
|
516 |
|
517 |
-
#: includes/
|
518 |
#, php-format
|
519 |
msgid ""
|
520 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
@@ -522,15 +590,15 @@ msgstr ""
|
|
522 |
"Compatibel met de emails van de <a href=\"%s\">WooCommerce Subscriptions</a> "
|
523 |
"plugin"
|
524 |
|
525 |
-
#: includes/
|
526 |
msgid "Learn more"
|
527 |
msgstr "Leer meer"
|
528 |
|
529 |
-
#: includes/
|
530 |
msgid "Stay up-to-date"
|
531 |
msgstr "Blijf op de hoogte"
|
532 |
|
533 |
-
#: includes/
|
534 |
msgid ""
|
535 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
536 |
"our newsletter."
|
@@ -538,23 +606,23 @@ msgstr ""
|
|
538 |
"Wij ontwikkelen constant nieuwe functionaliteiten, blijf up-to-date door je "
|
539 |
"in te schrijven op de nieuwsbrief."
|
540 |
|
541 |
-
#: includes/
|
542 |
msgid "Your email address"
|
543 |
msgstr "Jouw Emailadres"
|
544 |
|
545 |
-
#: includes/
|
546 |
msgid "Signup"
|
547 |
msgstr "Inschrijven"
|
548 |
|
549 |
-
#: includes/
|
550 |
msgid "No spam, ever. Unsubscribe at any time"
|
551 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
552 |
|
553 |
-
#: includes/
|
554 |
msgid "About"
|
555 |
msgstr "Over"
|
556 |
|
557 |
-
#: includes/
|
558 |
msgid ""
|
559 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
560 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -562,19 +630,19 @@ msgstr ""
|
|
562 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
563 |
"WooCommerce op te vullen."
|
564 |
|
565 |
-
#: includes/
|
566 |
msgid "<b>Version</b>: "
|
567 |
msgstr "<b>Versie</b>:"
|
568 |
|
569 |
-
#: includes/
|
570 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
571 |
msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
572 |
|
573 |
-
#: includes/
|
574 |
msgid "Support"
|
575 |
msgstr "Ondersteuning"
|
576 |
|
577 |
-
#: includes/
|
578 |
msgid ""
|
579 |
"We will never ask for donations, but to garantee future development, we do "
|
580 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -589,101 +657,33 @@ msgstr ""
|
|
589 |
"<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
|
590 |
"a>."
|
591 |
|
592 |
-
#: includes/
|
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/
|
600 |
msgid "Need Help?"
|
601 |
msgstr "Hulp Nodig?"
|
602 |
|
603 |
-
#: includes/
|
604 |
msgid "Frequently Asked Questions"
|
605 |
msgstr "Veel gestelde vragen"
|
606 |
|
607 |
-
#: includes/
|
608 |
msgid "Support forum"
|
609 |
msgstr "Support Forum"
|
610 |
|
611 |
-
#: includes/
|
612 |
msgid "Request a feature"
|
613 |
msgstr "Verzoek een nieuwe functionaliteit"
|
614 |
|
615 |
-
#: includes/
|
616 |
msgid "Email us"
|
617 |
msgstr "Email ons"
|
618 |
|
619 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
620 |
-
msgid "PDF Invoice"
|
621 |
-
msgstr "PDF Factuur"
|
622 |
-
|
623 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
624 |
-
msgid "Invoiced on:"
|
625 |
-
msgstr "Gefactureerd op:"
|
626 |
-
|
627 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
628 |
-
msgid "Invoice number:"
|
629 |
-
msgstr "Factuurnummer:"
|
630 |
-
|
631 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
632 |
-
msgid "View invoice"
|
633 |
-
msgstr "Toon factuur"
|
634 |
-
|
635 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
636 |
-
msgid "View"
|
637 |
-
msgstr "Bekijk"
|
638 |
-
|
639 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
640 |
-
msgid "Cancel invoice"
|
641 |
-
msgstr "Factuur annuleren"
|
642 |
-
|
643 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
644 |
-
msgid "Cancel"
|
645 |
-
msgstr "Annuleer"
|
646 |
-
|
647 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
648 |
-
msgid "Are you sure to delete the invoice?"
|
649 |
-
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
650 |
-
|
651 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
652 |
-
msgid "Create invoice"
|
653 |
-
msgstr "Maak factuur"
|
654 |
-
|
655 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
656 |
-
msgid "Create"
|
657 |
-
msgstr "Aanmaken"
|
658 |
-
|
659 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
660 |
-
#, php-format
|
661 |
-
msgid "Invoice %s (PDF)"
|
662 |
-
msgstr "Factuur %s (PDF)"
|
663 |
-
|
664 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
665 |
-
#, php-format
|
666 |
-
msgid ""
|
667 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
668 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
669 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
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
|
689 |
msgid "Invoice to"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
23 |
msgid "Paid"
|
24 |
msgstr "Betaald"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
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:267
|
36 |
#, php-format
|
37 |
msgid ""
|
38 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
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:310
|
45 |
#, php-format
|
46 |
msgid ""
|
47 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
49 |
"Factuur met factuurnummer %s niet gevonden. Maak eerst de factuur en probeer "
|
50 |
"opnieuw."
|
51 |
|
52 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
53 |
#, php-format
|
54 |
msgid "VAT Number: %s"
|
55 |
+
msgstr "BTW nummer: %s"
|
56 |
|
57 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
58 |
#, php-format
|
59 |
msgid "Purchase Order Number: %s"
|
60 |
+
msgstr "Aankoopnummer: %s"
|
61 |
|
62 |
#: includes/abstracts/abstract-bewpi-setting.php:98
|
63 |
msgid "Allowed HTML tags: "
|
490 |
msgid "Version %s"
|
491 |
msgstr "Versie %s"
|
492 |
|
493 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
494 |
+
msgid "PDF Invoice"
|
495 |
+
msgstr "PDF Factuur"
|
496 |
+
|
497 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
498 |
+
msgid "Invoiced on:"
|
499 |
+
msgstr "Gefactureerd op:"
|
500 |
+
|
501 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
502 |
+
msgid "Invoice number:"
|
503 |
+
msgstr "Factuurnummer:"
|
504 |
+
|
505 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
506 |
+
msgid "View invoice"
|
507 |
+
msgstr "Toon factuur"
|
508 |
+
|
509 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
510 |
+
msgid "View"
|
511 |
+
msgstr "Bekijk"
|
512 |
+
|
513 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
514 |
+
msgid "Cancel invoice"
|
515 |
+
msgstr "Factuur annuleren"
|
516 |
+
|
517 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
518 |
+
msgid "Cancel"
|
519 |
+
msgstr "Annuleer"
|
520 |
+
|
521 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
522 |
+
msgid "Are you sure to delete the invoice?"
|
523 |
+
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
524 |
+
|
525 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
526 |
+
msgid "Create invoice"
|
527 |
+
msgstr "Maak factuur"
|
528 |
+
|
529 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
530 |
+
msgid "Create"
|
531 |
+
msgstr "Aanmaken"
|
532 |
+
|
533 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
534 |
+
#, php-format
|
535 |
+
msgid "Invoice %s (PDF)"
|
536 |
+
msgstr "Factuur %s (PDF)"
|
537 |
+
|
538 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
539 |
+
#, php-format
|
540 |
+
msgid ""
|
541 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
542 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
543 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
544 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
545 |
+
"done it!</a>"
|
546 |
+
msgstr ""
|
547 |
+
"Je werkt nu al een tijd met <b>WooCommerce PDF Invoices</b>. Om de "
|
548 |
+
"toekomstige ontwikkeling te bevorderen, vragen wij jouw om ons een ★★★★★ "
|
549 |
+
"beoordeling te geven. Alvast bedankt! <br /> <a href='%s' "
|
550 |
+
"target='_blank'>Ja, zal het direct doen!</a> - <a href='%s'>Nee, heb ik al "
|
551 |
+
"gedaan!</a>"
|
552 |
+
|
553 |
+
#: includes/class-bewpi-invoice.php:48
|
554 |
+
msgid ""
|
555 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
556 |
+
"page first."
|
557 |
+
msgstr ""
|
558 |
+
"Oeps, geen template gevonden. Selecteer een template op de Template Opties "
|
559 |
+
"pagina."
|
560 |
+
|
561 |
+
#: includes/partials/settings-sidebar.php:2
|
562 |
msgid "WooCommerce PDF Invoices Premium"
|
563 |
msgstr "WooCommerce PDF Invoices Premium"
|
564 |
|
565 |
+
#: includes/partials/settings-sidebar.php:4
|
566 |
msgid ""
|
567 |
"This plugin offers a premium version which comes with the following features:"
|
568 |
msgstr ""
|
569 |
"Deze plugin heeft ook een betaalde versie beschikbaar en komt met de "
|
570 |
"volgende functies: "
|
571 |
|
572 |
+
#: includes/partials/settings-sidebar.php:5
|
573 |
msgid "Bill periodically by generating and sending global invoices."
|
574 |
msgstr ""
|
575 |
"Factureer periodiek door globale facturen te genereren en te verzenden."
|
576 |
|
577 |
+
#: includes/partials/settings-sidebar.php:6
|
578 |
msgid "Add additional PDF's to customer invoices."
|
579 |
msgstr "Voeg meerdere PDF's toe aan de factuur."
|
580 |
|
581 |
+
#: includes/partials/settings-sidebar.php:7
|
582 |
msgid "Send customer invoices directly to suppliers and others."
|
583 |
msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
|
584 |
|
585 |
+
#: includes/partials/settings-sidebar.php:8
|
586 |
#, php-format
|
587 |
msgid ""
|
588 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
590 |
"Compatibel met de emails van de <a href=\"%s\">WooCommerce Subscriptions</a> "
|
591 |
"plugin"
|
592 |
|
593 |
+
#: includes/partials/settings-sidebar.php:10
|
594 |
msgid "Learn more"
|
595 |
msgstr "Leer meer"
|
596 |
|
597 |
+
#: includes/partials/settings-sidebar.php:13
|
598 |
msgid "Stay up-to-date"
|
599 |
msgstr "Blijf op de hoogte"
|
600 |
|
601 |
+
#: includes/partials/settings-sidebar.php:17
|
602 |
msgid ""
|
603 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
604 |
"our newsletter."
|
606 |
"Wij ontwikkelen constant nieuwe functionaliteiten, blijf up-to-date door je "
|
607 |
"in te schrijven op de nieuwsbrief."
|
608 |
|
609 |
+
#: includes/partials/settings-sidebar.php:23
|
610 |
msgid "Your email address"
|
611 |
msgstr "Jouw Emailadres"
|
612 |
|
613 |
+
#: includes/partials/settings-sidebar.php:29
|
614 |
msgid "Signup"
|
615 |
msgstr "Inschrijven"
|
616 |
|
617 |
+
#: includes/partials/settings-sidebar.php:32
|
618 |
msgid "No spam, ever. Unsubscribe at any time"
|
619 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
620 |
|
621 |
+
#: includes/partials/settings-sidebar.php:41
|
622 |
msgid "About"
|
623 |
msgstr "Over"
|
624 |
|
625 |
+
#: includes/partials/settings-sidebar.php:43
|
626 |
msgid ""
|
627 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
628 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
630 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
631 |
"WooCommerce op te vullen."
|
632 |
|
633 |
+
#: includes/partials/settings-sidebar.php:45
|
634 |
msgid "<b>Version</b>: "
|
635 |
msgstr "<b>Versie</b>:"
|
636 |
|
637 |
+
#: includes/partials/settings-sidebar.php:47
|
638 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
639 |
msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
640 |
|
641 |
+
#: includes/partials/settings-sidebar.php:50
|
642 |
msgid "Support"
|
643 |
msgstr "Ondersteuning"
|
644 |
|
645 |
+
#: includes/partials/settings-sidebar.php:52
|
646 |
msgid ""
|
647 |
"We will never ask for donations, but to garantee future development, we do "
|
648 |
"need your support. Please show us your appreciation by leaving a <a href="
|
657 |
"<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
|
658 |
"a>."
|
659 |
|
660 |
+
#: includes/partials/settings-sidebar.php:72
|
661 |
msgid ""
|
662 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
663 |
msgstr ""
|
664 |
"Bekijk nu deze geweldige gratis WooCommerce PDF Invoices plugin voor "
|
665 |
"WordPress!"
|
666 |
|
667 |
+
#: includes/partials/settings-sidebar.php:77
|
668 |
msgid "Need Help?"
|
669 |
msgstr "Hulp Nodig?"
|
670 |
|
671 |
+
#: includes/partials/settings-sidebar.php:79
|
672 |
msgid "Frequently Asked Questions"
|
673 |
msgstr "Veel gestelde vragen"
|
674 |
|
675 |
+
#: includes/partials/settings-sidebar.php:80
|
676 |
msgid "Support forum"
|
677 |
msgstr "Support Forum"
|
678 |
|
679 |
+
#: includes/partials/settings-sidebar.php:81
|
680 |
msgid "Request a feature"
|
681 |
msgstr "Verzoek een nieuwe functionaliteit"
|
682 |
|
683 |
+
#: includes/partials/settings-sidebar.php:82
|
684 |
msgid "Email us"
|
685 |
msgstr "Email ons"
|
686 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
#: includes/templates/invoices/global/micro/body.php:5
|
688 |
#: includes/templates/invoices/simple/micro/body.php:5
|
689 |
msgid "Invoice to"
|
lang/woocommerce-pdf-invoices-ro_RO.po
CHANGED
@@ -1,745 +1,745 @@
|
|
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: 2015-12-25 09:22+0200\n"
|
11 |
-
"PO-Revision-Date: 2016-
|
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
|
24 |
-
msgid ""
|
25 |
-
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
26 |
-
"PDF Invoices</strong></a>."
|
27 |
-
msgstr ""
|
28 |
-
"Să incepem <a href=\"%s\">configurarea <strong>WooCommerce Facturi PDF</"
|
29 |
-
"strong></a>."
|
30 |
-
|
31 |
-
#: includes/be-woocommerce-pdf-invoices.php:136
|
32 |
-
msgid "Settings"
|
33 |
-
msgstr "Setări"
|
34 |
-
|
35 |
-
#: includes/be-woocommerce-pdf-invoices.php:137
|
36 |
-
msgid "Premium"
|
37 |
-
msgstr "Premium"
|
38 |
-
|
39 |
-
#: includes/be-woocommerce-pdf-invoices.php:182
|
40 |
-
msgid "Invalid request"
|
41 |
-
msgstr "Cerere invalidă"
|
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"
|
49 |
-
msgstr "Acces interzis"
|
50 |
-
|
51 |
-
#: includes/be-woocommerce-pdf-invoices.php:218
|
52 |
-
msgid "General"
|
53 |
-
msgstr "General"
|
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 "Template"
|
59 |
-
|
60 |
-
#: includes/be-woocommerce-pdf-invoices.php:242
|
61 |
-
msgid "Invoices"
|
62 |
-
msgstr "Facturi PDF"
|
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 |
-
"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
|
75 |
-
msgid "Version %s"
|
76 |
-
msgstr "Versiunea %s"
|
77 |
-
|
78 |
-
#: includes/be-woocommerce-pdf-invoices.php:306
|
79 |
-
msgid "WooCommerce PDF Invoices Premium"
|
80 |
-
msgstr "WooCommerce Facturi PDF Premium"
|
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 |
-
"Acest plugin oferă o versiune premium care vine cu următoarele facilitați:"
|
87 |
-
|
88 |
-
#: includes/be-woocommerce-pdf-invoices.php:309
|
89 |
-
msgid "Bill periodically by generating and sending global invoices."
|
90 |
-
msgstr "Facturează periodic generând și trimițând facturi globale."
|
91 |
-
|
92 |
-
#: includes/be-woocommerce-pdf-invoices.php:310
|
93 |
-
msgid "Add additional PDF's to customer invoices."
|
94 |
-
msgstr "Adaugă facturi PDF adiționale la facturi client."
|
95 |
-
|
96 |
-
#: includes/be-woocommerce-pdf-invoices.php:311
|
97 |
-
msgid "Send customer invoices directly to suppliers and others."
|
98 |
-
msgstr "Trimite facturi client direct la furnizori și terțe părți."
|
99 |
-
|
100 |
-
#: includes/be-woocommerce-pdf-invoices.php:312
|
101 |
-
#, php-format
|
102 |
-
msgid ""
|
103 |
-
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
104 |
-
msgstr ""
|
105 |
-
"Compatibil cu emailurile pentru pluginul <a href=\"%s\">WooCommerce "
|
106 |
-
"Subscriptions</a>."
|
107 |
-
|
108 |
-
#: includes/be-woocommerce-pdf-invoices.php:314
|
109 |
-
msgid "Learn more"
|
110 |
-
msgstr "Află mai multe"
|
111 |
-
|
112 |
-
#: includes/be-woocommerce-pdf-invoices.php:318
|
113 |
-
msgid "Stay up-to-date"
|
114 |
-
msgstr "Află ultimele noutăți"
|
115 |
-
|
116 |
-
#: includes/be-woocommerce-pdf-invoices.php:327
|
117 |
-
msgid ""
|
118 |
-
"We're constantly developing new features, stay up-to-date by subscribing to "
|
119 |
-
"our newsletter."
|
120 |
-
msgstr ""
|
121 |
-
"Dezvoltăm noi opțiuni, aflați ultimele noutăți abonându-vă la newsletter."
|
122 |
-
|
123 |
-
#: includes/be-woocommerce-pdf-invoices.php:333
|
124 |
-
msgid "Your email address"
|
125 |
-
msgstr "Adresa dvs. email"
|
126 |
-
|
127 |
-
#: includes/be-woocommerce-pdf-invoices.php:336
|
128 |
-
msgid "Signup"
|
129 |
-
msgstr "Abonare"
|
130 |
-
|
131 |
-
#: includes/be-woocommerce-pdf-invoices.php:337
|
132 |
-
msgid "No spam, ever. Unsubscribe at any time"
|
133 |
-
msgstr "Niciodată spam. Anulare subscriere oricând."
|
134 |
-
|
135 |
-
#: includes/be-woocommerce-pdf-invoices.php:345
|
136 |
-
msgid "About"
|
137 |
-
msgstr "Despre"
|
138 |
-
|
139 |
-
#: includes/be-woocommerce-pdf-invoices.php:346
|
140 |
-
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 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>: "
|
150 |
-
msgstr "Versiunea"
|
151 |
-
|
152 |
-
#: includes/be-woocommerce-pdf-invoices.php:349
|
153 |
-
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
154 |
-
msgstr "<b>Autor</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
155 |
-
|
156 |
-
#: includes/be-woocommerce-pdf-invoices.php:352
|
157 |
-
msgid "Support"
|
158 |
-
msgstr "Suport"
|
159 |
-
|
160 |
-
#: includes/be-woocommerce-pdf-invoices.php:353
|
161 |
-
msgid ""
|
162 |
-
"We will never ask for donations, but to garantee future development, we do "
|
163 |
-
"need your support. Please show us your appreciation by leaving a <a href="
|
164 |
-
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
165 |
-
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
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 "
|
173 |
-
"noastră</a>."
|
174 |
-
|
175 |
-
#: includes/be-woocommerce-pdf-invoices.php:372
|
176 |
-
msgid ""
|
177 |
-
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
178 |
-
msgstr ""
|
179 |
-
"Verificați acest nemaipomenit plugin gratuit WooCommerce Facturi PDF pentru "
|
180 |
-
"WordPress!"
|
181 |
-
|
182 |
-
#: includes/be-woocommerce-pdf-invoices.php:377
|
183 |
-
msgid "Need Help?"
|
184 |
-
msgstr "Aveți nevoie de ajutor ?"
|
185 |
-
|
186 |
-
#: includes/be-woocommerce-pdf-invoices.php:379
|
187 |
-
msgid "Frequently Asked Questions"
|
188 |
-
msgstr "Întrebări frecvente"
|
189 |
-
|
190 |
-
#: includes/be-woocommerce-pdf-invoices.php:380
|
191 |
-
msgid "Support forum"
|
192 |
-
msgstr "Forum de suport"
|
193 |
-
|
194 |
-
#: includes/be-woocommerce-pdf-invoices.php:381
|
195 |
-
msgid "Request a feature"
|
196 |
-
msgstr "Cere o nouă opțiune"
|
197 |
-
|
198 |
-
#: includes/be-woocommerce-pdf-invoices.php:382
|
199 |
-
msgid "Email us"
|
200 |
-
msgstr "Trimite-ne un email"
|
201 |
-
|
202 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
203 |
-
msgid "PDF Invoice"
|
204 |
-
msgstr "Factură PDF"
|
205 |
-
|
206 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
207 |
-
msgid "Invoiced on:"
|
208 |
-
msgstr "Facturat pe data:"
|
209 |
-
|
210 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
211 |
-
msgid "Invoice number:"
|
212 |
-
msgstr "Număr factură"
|
213 |
-
|
214 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
215 |
-
msgid "View invoice"
|
216 |
-
msgstr "Vezi factura"
|
217 |
-
|
218 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
219 |
-
msgid "View"
|
220 |
-
msgstr "Vizualizare"
|
221 |
-
|
222 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
223 |
-
msgid "Cancel invoice"
|
224 |
-
msgstr "Anulare factură"
|
225 |
-
|
226 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
227 |
-
msgid "Cancel"
|
228 |
-
msgstr "Anulare"
|
229 |
-
|
230 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
231 |
-
msgid "Are you sure to delete the invoice?"
|
232 |
-
msgstr "Ești sigur că vrei să ștergi factura ?"
|
233 |
-
|
234 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
235 |
-
msgid "Create invoice"
|
236 |
-
msgstr "Crează factură"
|
237 |
-
|
238 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
239 |
-
msgid "Create"
|
240 |
-
msgstr "Crează"
|
241 |
-
|
242 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
243 |
-
#, php-format
|
244 |
-
msgid "Invoice %s (PDF)"
|
245 |
-
msgstr "Factura %s (PDF)"
|
246 |
-
|
247 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
248 |
-
#, php-format
|
249 |
-
msgid ""
|
250 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
251 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
252 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
253 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
254 |
-
"done it!</a>"
|
255 |
-
msgstr ""
|
256 |
-
"Lucrați cu <b>WooCommerce Facturi PDF</b> de ceva timp. Chiar avem nevoie de "
|
257 |
-
"un vot ★★★★★ . Ne va ajuta pentru dezvoltări viitoare foarte mult. Vă "
|
258 |
-
"mulțumim în avans! <br /> <a href='%s' target='_blank'>Da, o voi face "
|
259 |
-
"imediat!</a> - <a href='%s'>Nu, am facut-o deja!</a>"
|
260 |
-
|
261 |
-
#: includes/class-bewpi-invoice.php:48
|
262 |
-
msgid ""
|
263 |
-
"Whoops, no template found. Please select a template on the Template settings "
|
264 |
-
"page first."
|
265 |
-
msgstr ""
|
266 |
-
"Ups, nu am găsit nici un template. Vă rugăm selectați un template din setări "
|
267 |
-
"mai întai."
|
268 |
-
|
269 |
-
#: includes/abstracts/abstract-bewpi-document.php:64
|
270 |
-
msgid "Paid"
|
271 |
-
msgstr "Plătit"
|
272 |
-
|
273 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
274 |
-
#, php-format
|
275 |
-
msgid ""
|
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
|
284 |
-
msgid ""
|
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"
|
333 |
-
msgstr "Vezi PDF"
|
334 |
-
|
335 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
336 |
-
msgid "Download"
|
337 |
-
msgstr "Descarcă"
|
338 |
-
|
339 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
340 |
-
msgid "Open in new browser tab/window"
|
341 |
-
msgstr "Deschide în tab/fereastră nouă a browser-ului."
|
342 |
-
|
343 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
344 |
-
msgid "Enable download from account"
|
345 |
-
msgstr "Activeaza descărcarea din cont"
|
346 |
-
|
347 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
348 |
-
msgid ""
|
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"
|
370 |
-
msgstr "Opțiuni email"
|
371 |
-
|
372 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:199
|
373 |
-
msgid "Download Options"
|
374 |
-
msgstr "Opțiuni descărcare"
|
375 |
-
|
376 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:205
|
377 |
-
msgid "Cloud Storage Options"
|
378 |
-
msgstr "Opțiuni Storage Cloud"
|
379 |
-
|
380 |
-
#: includes/admin/settings/class-bewpi-admin-settings-general.php:213
|
381 |
-
#, php-format
|
382 |
-
msgid ""
|
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"
|
391 |
-
msgstr "Temă culori"
|
392 |
-
|
393 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:111
|
394 |
-
msgid "Date format"
|
395 |
-
msgstr "Format dată"
|
396 |
-
|
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"
|
404 |
-
msgstr "Afișează prețuti incluzând taxele"
|
405 |
-
|
406 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:132
|
407 |
-
msgid ""
|
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"
|
416 |
-
msgstr "Livrare taxablă"
|
417 |
-
|
418 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:145
|
419 |
-
msgid "Enable to display subtotal including shipping."
|
420 |
-
msgstr "Activează afișsarea subtotalului inclusiv taxa de livrare."
|
421 |
-
|
422 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:157
|
423 |
-
msgid "Mark invoice as paid"
|
424 |
-
msgstr "Marchează factura PDF ca fiind plătită (watermark)"
|
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"
|
432 |
-
msgstr "Numele companiei"
|
433 |
-
|
434 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:177
|
435 |
-
msgid "Company logo"
|
436 |
-
msgstr "Logo-ul companiei"
|
437 |
-
|
438 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
439 |
-
msgid "Company address"
|
440 |
-
msgstr "Adresa companiei"
|
441 |
-
|
442 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
443 |
-
msgid "Displayed in upper-right corner near logo."
|
444 |
-
msgstr "Afișează în colțul dreapta-sus lângă logo."
|
445 |
-
|
446 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
447 |
-
msgid "Company details"
|
448 |
-
msgstr "Detalii companie"
|
449 |
-
|
450 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
451 |
-
msgid "Displayed below company address."
|
452 |
-
msgstr "Afișează sub adresa companiei."
|
453 |
-
|
454 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
455 |
-
msgid "Thank you text"
|
456 |
-
msgstr "Text de mulțumire"
|
457 |
-
|
458 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
459 |
-
msgid "Displayed in big colored bar directly after invoice total."
|
460 |
-
msgstr "Afișat în bară mare colorata după total factură."
|
461 |
-
|
462 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
463 |
-
msgid "Thank you for your purchase!"
|
464 |
-
msgstr "Vă multumim pentru cumpărăturile efectuate!"
|
465 |
-
|
466 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
467 |
-
msgid "Show customer notes"
|
468 |
-
msgstr "Arată notițe client"
|
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
|
476 |
-
msgid ""
|
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."
|
485 |
-
msgstr "Produsele vor fi livrate în 2 zile."
|
486 |
-
|
487 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
488 |
-
msgid "Left footer column."
|
489 |
-
msgstr "Coloană bară jos stânga."
|
490 |
-
|
491 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
492 |
-
#, php-format
|
493 |
-
msgid "<b>Payment method</b> %s"
|
494 |
-
msgstr "<b>Metodă plată</b> %s"
|
495 |
-
|
496 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
497 |
-
msgid "Right footer column."
|
498 |
-
msgstr "Coloană bară jos dreapta."
|
499 |
-
|
500 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
501 |
-
msgid "Leave empty to show page numbering."
|
502 |
-
msgstr "Lăsați gol pentru a afișa numărătoarea paginii."
|
503 |
-
|
504 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
505 |
-
msgid "Type"
|
506 |
-
msgstr "Tip"
|
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"
|
514 |
-
msgstr "Număr secvențial."
|
515 |
-
|
516 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:295
|
517 |
-
msgid "Reset invoice counter"
|
518 |
-
msgstr "Reset număratoare facturi."
|
519 |
-
|
520 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:305
|
521 |
-
msgid "Next"
|
522 |
-
msgstr "Urmatorul"
|
523 |
-
|
524 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:310
|
525 |
-
msgid ""
|
526 |
-
"Reset the invoice counter and start counting from given invoice number.<br/"
|
527 |
-
"><b>Note:</b> Only available for Sequential numbering and value will be "
|
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"
|
539 |
-
msgstr "Cifre"
|
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"
|
551 |
-
msgstr "Formatare"
|
552 |
-
|
553 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:363
|
554 |
-
#, php-format
|
555 |
-
msgid ""
|
556 |
-
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
557 |
-
"slashes aren't supported."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
561 |
-
msgid "Reset on 1st of january"
|
562 |
-
msgstr "Reset pe 1 Ianuarie"
|
563 |
-
|
564 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
565 |
-
#: includes/templates/invoices/global/micro/body.php:44
|
566 |
-
#: includes/templates/invoices/simple/micro/body.php:46
|
567 |
-
msgid "SKU"
|
568 |
-
msgstr "Cod produs (SKU)"
|
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 |
-
|
576 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
577 |
-
msgid "Tax (item)"
|
578 |
-
msgstr "Taxe (produs)"
|
579 |
-
|
580 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
581 |
-
msgid "Tax (total)"
|
582 |
-
msgstr "Taxe (total)"
|
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 |
-
|
598 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:464
|
599 |
-
msgid "General Options"
|
600 |
-
msgstr "Opțiuni generale"
|
601 |
-
|
602 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:470
|
603 |
-
msgid "Invoice Number Options"
|
604 |
-
msgstr "Opțiune Număr Factură"
|
605 |
-
|
606 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:476
|
607 |
-
msgid "Header Options"
|
608 |
-
msgstr "Opțiuni header"
|
609 |
-
|
610 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
611 |
-
msgid "Body Options"
|
612 |
-
msgstr "Opțiuni corp"
|
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"
|
620 |
-
msgstr "Coloane vizibile"
|
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 ""
|
640 |
-
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
641 |
-
"order payment method."
|
642 |
-
msgstr ""
|
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 './'."
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:586
|
653 |
-
msgid "File is invalid and contains ':' after the first character."
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:595
|
657 |
-
msgid "File should be less then 2MB."
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: includes/templates/invoices/global/micro/body.php:5
|
661 |
-
#: includes/templates/invoices/simple/micro/body.php:5
|
662 |
-
msgid "Invoice to"
|
663 |
-
msgstr "Factură către"
|
664 |
-
|
665 |
-
#: includes/templates/invoices/global/micro/body.php:7
|
666 |
-
#: includes/templates/invoices/simple/micro/body.php:7
|
667 |
-
#, php-format
|
668 |
-
msgid "Phone: %s"
|
669 |
-
msgstr "Telefon: %s"
|
670 |
-
|
671 |
-
#: includes/templates/invoices/global/micro/body.php:11
|
672 |
-
#: includes/templates/invoices/simple/micro/body.php:11
|
673 |
-
msgid "Ship to"
|
674 |
-
msgstr "Livrează către"
|
675 |
-
|
676 |
-
#: includes/templates/invoices/global/micro/body.php:22
|
677 |
-
msgid "Global Invoice"
|
678 |
-
msgstr "Factură globală"
|
679 |
-
|
680 |
-
#: includes/templates/invoices/global/micro/body.php:40
|
681 |
-
#: includes/templates/invoices/simple/micro/body.php:42
|
682 |
-
msgid "Description"
|
683 |
-
msgstr "Descriere"
|
684 |
-
|
685 |
-
#: includes/templates/invoices/global/micro/body.php:48
|
686 |
-
#: includes/templates/invoices/simple/micro/body.php:50
|
687 |
-
msgid "Cost"
|
688 |
-
msgstr "Preț"
|
689 |
-
|
690 |
-
#: includes/templates/invoices/global/micro/body.php:50
|
691 |
-
#: includes/templates/invoices/simple/micro/body.php:52
|
692 |
-
msgid "Qty"
|
693 |
-
msgstr "Cantitate"
|
694 |
-
|
695 |
-
#: includes/templates/invoices/global/micro/body.php:56
|
696 |
-
#: includes/templates/invoices/simple/micro/body.php:58
|
697 |
-
msgid "VAT"
|
698 |
-
msgstr "TVA"
|
699 |
-
|
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 |
-
|
722 |
-
#: includes/templates/invoices/global/micro/footer.php:15
|
723 |
-
#: includes/templates/invoices/simple/micro/footer.php:18
|
724 |
-
#, php-format
|
725 |
-
msgid "%s of %s"
|
726 |
-
msgstr "%s din %s"
|
727 |
-
|
728 |
-
#: includes/templates/invoices/simple/micro/body.php:22
|
729 |
-
msgid "Invoice"
|
730 |
-
msgstr "Factură"
|
731 |
-
|
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
|
744 |
-
msgid "Customer note"
|
745 |
-
msgstr "Notă client"
|
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: 2015-12-25 09:22+0200\n"
|
11 |
+
"PO-Revision-Date: 2016-02-10 21:03+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
|
24 |
+
msgid ""
|
25 |
+
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
26 |
+
"PDF Invoices</strong></a>."
|
27 |
+
msgstr ""
|
28 |
+
"Să incepem <a href=\"%s\">configurarea <strong>WooCommerce Facturi PDF</"
|
29 |
+
"strong></a>."
|
30 |
+
|
31 |
+
#: includes/be-woocommerce-pdf-invoices.php:136
|
32 |
+
msgid "Settings"
|
33 |
+
msgstr "Setări"
|
34 |
+
|
35 |
+
#: includes/be-woocommerce-pdf-invoices.php:137
|
36 |
+
msgid "Premium"
|
37 |
+
msgstr "Premium"
|
38 |
+
|
39 |
+
#: includes/be-woocommerce-pdf-invoices.php:182
|
40 |
+
msgid "Invalid request"
|
41 |
+
msgstr "Cerere invalidă"
|
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"
|
49 |
+
msgstr "Acces interzis"
|
50 |
+
|
51 |
+
#: includes/be-woocommerce-pdf-invoices.php:218
|
52 |
+
msgid "General"
|
53 |
+
msgstr "General"
|
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 "Template"
|
59 |
+
|
60 |
+
#: includes/be-woocommerce-pdf-invoices.php:242
|
61 |
+
msgid "Invoices"
|
62 |
+
msgstr "Facturi PDF"
|
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 |
+
"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
|
75 |
+
msgid "Version %s"
|
76 |
+
msgstr "Versiunea %s"
|
77 |
+
|
78 |
+
#: includes/be-woocommerce-pdf-invoices.php:306
|
79 |
+
msgid "WooCommerce PDF Invoices Premium"
|
80 |
+
msgstr "WooCommerce Facturi PDF Premium"
|
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 |
+
"Acest plugin oferă o versiune premium care vine cu următoarele facilitați:"
|
87 |
+
|
88 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
89 |
+
msgid "Bill periodically by generating and sending global invoices."
|
90 |
+
msgstr "Facturează periodic generând și trimițând facturi globale."
|
91 |
+
|
92 |
+
#: includes/be-woocommerce-pdf-invoices.php:310
|
93 |
+
msgid "Add additional PDF's to customer invoices."
|
94 |
+
msgstr "Adaugă facturi PDF adiționale la facturi client."
|
95 |
+
|
96 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
97 |
+
msgid "Send customer invoices directly to suppliers and others."
|
98 |
+
msgstr "Trimite facturi client direct la furnizori și terțe părți."
|
99 |
+
|
100 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
101 |
+
#, php-format
|
102 |
+
msgid ""
|
103 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
104 |
+
msgstr ""
|
105 |
+
"Compatibil cu emailurile pentru pluginul <a href=\"%s\">WooCommerce "
|
106 |
+
"Subscriptions</a>."
|
107 |
+
|
108 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
109 |
+
msgid "Learn more"
|
110 |
+
msgstr "Află mai multe"
|
111 |
+
|
112 |
+
#: includes/be-woocommerce-pdf-invoices.php:318
|
113 |
+
msgid "Stay up-to-date"
|
114 |
+
msgstr "Află ultimele noutăți"
|
115 |
+
|
116 |
+
#: includes/be-woocommerce-pdf-invoices.php:327
|
117 |
+
msgid ""
|
118 |
+
"We're constantly developing new features, stay up-to-date by subscribing to "
|
119 |
+
"our newsletter."
|
120 |
+
msgstr ""
|
121 |
+
"Dezvoltăm noi opțiuni, aflați ultimele noutăți abonându-vă la newsletter."
|
122 |
+
|
123 |
+
#: includes/be-woocommerce-pdf-invoices.php:333
|
124 |
+
msgid "Your email address"
|
125 |
+
msgstr "Adresa dvs. email"
|
126 |
+
|
127 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
128 |
+
msgid "Signup"
|
129 |
+
msgstr "Abonare"
|
130 |
+
|
131 |
+
#: includes/be-woocommerce-pdf-invoices.php:337
|
132 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
133 |
+
msgstr "Niciodată spam. Anulare subscriere oricând."
|
134 |
+
|
135 |
+
#: includes/be-woocommerce-pdf-invoices.php:345
|
136 |
+
msgid "About"
|
137 |
+
msgstr "Despre"
|
138 |
+
|
139 |
+
#: includes/be-woocommerce-pdf-invoices.php:346
|
140 |
+
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 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>: "
|
150 |
+
msgstr "Versiunea"
|
151 |
+
|
152 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
153 |
+
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
154 |
+
msgstr "<b>Autor</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
155 |
+
|
156 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
157 |
+
msgid "Support"
|
158 |
+
msgstr "Suport"
|
159 |
+
|
160 |
+
#: includes/be-woocommerce-pdf-invoices.php:353
|
161 |
+
msgid ""
|
162 |
+
"We will never ask for donations, but to garantee future development, we do "
|
163 |
+
"need your support. Please show us your appreciation by leaving a <a href="
|
164 |
+
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
165 |
+
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
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 "
|
173 |
+
"noastră</a>."
|
174 |
+
|
175 |
+
#: includes/be-woocommerce-pdf-invoices.php:372
|
176 |
+
msgid ""
|
177 |
+
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
178 |
+
msgstr ""
|
179 |
+
"Verificați acest nemaipomenit plugin gratuit WooCommerce Facturi PDF pentru "
|
180 |
+
"WordPress!"
|
181 |
+
|
182 |
+
#: includes/be-woocommerce-pdf-invoices.php:377
|
183 |
+
msgid "Need Help?"
|
184 |
+
msgstr "Aveți nevoie de ajutor ?"
|
185 |
+
|
186 |
+
#: includes/be-woocommerce-pdf-invoices.php:379
|
187 |
+
msgid "Frequently Asked Questions"
|
188 |
+
msgstr "Întrebări frecvente"
|
189 |
+
|
190 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
191 |
+
msgid "Support forum"
|
192 |
+
msgstr "Forum de suport"
|
193 |
+
|
194 |
+
#: includes/be-woocommerce-pdf-invoices.php:381
|
195 |
+
msgid "Request a feature"
|
196 |
+
msgstr "Cere o nouă opțiune"
|
197 |
+
|
198 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
199 |
+
msgid "Email us"
|
200 |
+
msgstr "Trimite-ne un email"
|
201 |
+
|
202 |
+
#: includes/be-woocommerce-pdf-invoices.php:437
|
203 |
+
msgid "PDF Invoice"
|
204 |
+
msgstr "Factură PDF"
|
205 |
+
|
206 |
+
#: includes/be-woocommerce-pdf-invoices.php:463
|
207 |
+
msgid "Invoiced on:"
|
208 |
+
msgstr "Facturat pe data:"
|
209 |
+
|
210 |
+
#: includes/be-woocommerce-pdf-invoices.php:467
|
211 |
+
msgid "Invoice number:"
|
212 |
+
msgstr "Număr factură"
|
213 |
+
|
214 |
+
#: includes/be-woocommerce-pdf-invoices.php:505
|
215 |
+
msgid "View invoice"
|
216 |
+
msgstr "Vezi factura"
|
217 |
+
|
218 |
+
#: includes/be-woocommerce-pdf-invoices.php:505
|
219 |
+
msgid "View"
|
220 |
+
msgstr "Vizualizare"
|
221 |
+
|
222 |
+
#: includes/be-woocommerce-pdf-invoices.php:506
|
223 |
+
msgid "Cancel invoice"
|
224 |
+
msgstr "Anulare factură"
|
225 |
+
|
226 |
+
#: includes/be-woocommerce-pdf-invoices.php:506
|
227 |
+
msgid "Cancel"
|
228 |
+
msgstr "Anulare"
|
229 |
+
|
230 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
231 |
+
msgid "Are you sure to delete the invoice?"
|
232 |
+
msgstr "Ești sigur că vrei să ștergi factura ?"
|
233 |
+
|
234 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
235 |
+
msgid "Create invoice"
|
236 |
+
msgstr "Crează factură"
|
237 |
+
|
238 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
239 |
+
msgid "Create"
|
240 |
+
msgstr "Crează"
|
241 |
+
|
242 |
+
#: includes/be-woocommerce-pdf-invoices.php:534
|
243 |
+
#, php-format
|
244 |
+
msgid "Invoice %s (PDF)"
|
245 |
+
msgstr "Factura %s (PDF)"
|
246 |
+
|
247 |
+
#: includes/be-woocommerce-pdf-invoices.php:644
|
248 |
+
#, php-format
|
249 |
+
msgid ""
|
250 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
251 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
252 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
253 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
254 |
+
"done it!</a>"
|
255 |
+
msgstr ""
|
256 |
+
"Lucrați cu <b>WooCommerce Facturi PDF</b> de ceva timp. Chiar avem nevoie de "
|
257 |
+
"un vot ★★★★★ . Ne va ajuta pentru dezvoltări viitoare foarte mult. Vă "
|
258 |
+
"mulțumim în avans! <br /> <a href='%s' target='_blank'>Da, o voi face "
|
259 |
+
"imediat!</a> - <a href='%s'>Nu, am facut-o deja!</a>"
|
260 |
+
|
261 |
+
#: includes/class-bewpi-invoice.php:48
|
262 |
+
msgid ""
|
263 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
264 |
+
"page first."
|
265 |
+
msgstr ""
|
266 |
+
"Ups, nu am găsit nici un template. Vă rugăm selectați un template din setări "
|
267 |
+
"mai întai."
|
268 |
+
|
269 |
+
#: includes/abstracts/abstract-bewpi-document.php:64
|
270 |
+
msgid "Paid"
|
271 |
+
msgstr "Plătit"
|
272 |
+
|
273 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
274 |
+
#, php-format
|
275 |
+
msgid ""
|
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
|
284 |
+
msgid ""
|
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"
|
333 |
+
msgstr "Vezi PDF"
|
334 |
+
|
335 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:135
|
336 |
+
msgid "Download"
|
337 |
+
msgstr "Descarcă"
|
338 |
+
|
339 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:139
|
340 |
+
msgid "Open in new browser tab/window"
|
341 |
+
msgstr "Deschide în tab/fereastră nouă a browser-ului."
|
342 |
+
|
343 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:153
|
344 |
+
msgid "Enable download from account"
|
345 |
+
msgstr "Activeaza descărcarea din cont"
|
346 |
+
|
347 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:154
|
348 |
+
msgid ""
|
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"
|
370 |
+
msgstr "Opțiuni email"
|
371 |
+
|
372 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:199
|
373 |
+
msgid "Download Options"
|
374 |
+
msgstr "Opțiuni descărcare"
|
375 |
+
|
376 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:205
|
377 |
+
msgid "Cloud Storage Options"
|
378 |
+
msgstr "Opțiuni Storage Cloud"
|
379 |
+
|
380 |
+
#: includes/admin/settings/class-bewpi-admin-settings-general.php:213
|
381 |
+
#, php-format
|
382 |
+
msgid ""
|
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"
|
391 |
+
msgstr "Temă culori"
|
392 |
+
|
393 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:111
|
394 |
+
msgid "Date format"
|
395 |
+
msgstr "Format dată"
|
396 |
+
|
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"
|
404 |
+
msgstr "Afișează prețuti incluzând taxele"
|
405 |
+
|
406 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:132
|
407 |
+
msgid ""
|
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"
|
416 |
+
msgstr "Livrare taxablă"
|
417 |
+
|
418 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:145
|
419 |
+
msgid "Enable to display subtotal including shipping."
|
420 |
+
msgstr "Activează afișsarea subtotalului inclusiv taxa de livrare."
|
421 |
+
|
422 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:157
|
423 |
+
msgid "Mark invoice as paid"
|
424 |
+
msgstr "Marchează factura PDF ca fiind plătită (watermark)"
|
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"
|
432 |
+
msgstr "Numele companiei"
|
433 |
+
|
434 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:177
|
435 |
+
msgid "Company logo"
|
436 |
+
msgstr "Logo-ul companiei"
|
437 |
+
|
438 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
439 |
+
msgid "Company address"
|
440 |
+
msgstr "Adresa companiei"
|
441 |
+
|
442 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:193
|
443 |
+
msgid "Displayed in upper-right corner near logo."
|
444 |
+
msgstr "Afișează în colțul dreapta-sus lângă logo."
|
445 |
+
|
446 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:199
|
447 |
+
msgid "Company details"
|
448 |
+
msgstr "Detalii companie"
|
449 |
+
|
450 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:204
|
451 |
+
msgid "Displayed below company address."
|
452 |
+
msgstr "Afișează sub adresa companiei."
|
453 |
+
|
454 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:211
|
455 |
+
msgid "Thank you text"
|
456 |
+
msgstr "Text de mulțumire"
|
457 |
+
|
458 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:216
|
459 |
+
msgid "Displayed in big colored bar directly after invoice total."
|
460 |
+
msgstr "Afișat în bară mare colorata după total factură."
|
461 |
+
|
462 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:217
|
463 |
+
msgid "Thank you for your purchase!"
|
464 |
+
msgstr "Vă multumim pentru cumpărăturile efectuate!"
|
465 |
+
|
466 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:227
|
467 |
+
msgid "Show customer notes"
|
468 |
+
msgstr "Arată notițe client"
|
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
|
476 |
+
msgid ""
|
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."
|
485 |
+
msgstr "Produsele vor fi livrate în 2 zile."
|
486 |
+
|
487 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:246
|
488 |
+
msgid "Left footer column."
|
489 |
+
msgstr "Coloană bară jos stânga."
|
490 |
+
|
491 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:252
|
492 |
+
#, php-format
|
493 |
+
msgid "<b>Payment method</b> %s"
|
494 |
+
msgstr "<b>Metodă plată</b> %s"
|
495 |
+
|
496 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:257
|
497 |
+
msgid "Right footer column."
|
498 |
+
msgstr "Coloană bară jos dreapta."
|
499 |
+
|
500 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:262
|
501 |
+
msgid "Leave empty to show page numbering."
|
502 |
+
msgstr "Lăsați gol pentru a afișa numărătoarea paginii."
|
503 |
+
|
504 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:269
|
505 |
+
msgid "Type"
|
506 |
+
msgstr "Tip"
|
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"
|
514 |
+
msgstr "Număr secvențial."
|
515 |
+
|
516 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:295
|
517 |
+
msgid "Reset invoice counter"
|
518 |
+
msgstr "Reset număratoare facturi."
|
519 |
+
|
520 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:305
|
521 |
+
msgid "Next"
|
522 |
+
msgstr "Urmatorul"
|
523 |
+
|
524 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:310
|
525 |
+
msgid ""
|
526 |
+
"Reset the invoice counter and start counting from given invoice number.<br/"
|
527 |
+
"><b>Note:</b> Only available for Sequential numbering and value will be "
|
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"
|
539 |
+
msgstr "Cifre"
|
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"
|
551 |
+
msgstr "Formatare"
|
552 |
+
|
553 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:363
|
554 |
+
#, php-format
|
555 |
+
msgid ""
|
556 |
+
"Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
557 |
+
"slashes aren't supported."
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:377
|
561 |
+
msgid "Reset on 1st of january"
|
562 |
+
msgstr "Reset pe 1 Ianuarie"
|
563 |
+
|
564 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:390
|
565 |
+
#: includes/templates/invoices/global/micro/body.php:44
|
566 |
+
#: includes/templates/invoices/simple/micro/body.php:46
|
567 |
+
msgid "SKU"
|
568 |
+
msgstr "Cod produs (SKU)"
|
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 |
+
|
576 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:414
|
577 |
+
msgid "Tax (item)"
|
578 |
+
msgstr "Taxe (produs)"
|
579 |
+
|
580 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:426
|
581 |
+
msgid "Tax (total)"
|
582 |
+
msgstr "Taxe (total)"
|
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 |
+
|
598 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:464
|
599 |
+
msgid "General Options"
|
600 |
+
msgstr "Opțiuni generale"
|
601 |
+
|
602 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:470
|
603 |
+
msgid "Invoice Number Options"
|
604 |
+
msgstr "Opțiune Număr Factură"
|
605 |
+
|
606 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:476
|
607 |
+
msgid "Header Options"
|
608 |
+
msgstr "Opțiuni header"
|
609 |
+
|
610 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:482
|
611 |
+
msgid "Body Options"
|
612 |
+
msgstr "Opțiuni corp"
|
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"
|
620 |
+
msgstr "Coloane vizibile"
|
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 ""
|
640 |
+
"<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the "
|
641 |
+
"order payment method."
|
642 |
+
msgstr ""
|
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 './'."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:586
|
653 |
+
msgid "File is invalid and contains ':' after the first character."
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: includes/admin/settings/class-bewpi-admin-settings-template.php:595
|
657 |
+
msgid "File should be less then 2MB."
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: includes/templates/invoices/global/micro/body.php:5
|
661 |
+
#: includes/templates/invoices/simple/micro/body.php:5
|
662 |
+
msgid "Invoice to"
|
663 |
+
msgstr "Factură către"
|
664 |
+
|
665 |
+
#: includes/templates/invoices/global/micro/body.php:7
|
666 |
+
#: includes/templates/invoices/simple/micro/body.php:7
|
667 |
+
#, php-format
|
668 |
+
msgid "Phone: %s"
|
669 |
+
msgstr "Telefon: %s"
|
670 |
+
|
671 |
+
#: includes/templates/invoices/global/micro/body.php:11
|
672 |
+
#: includes/templates/invoices/simple/micro/body.php:11
|
673 |
+
msgid "Ship to"
|
674 |
+
msgstr "Livrează către"
|
675 |
+
|
676 |
+
#: includes/templates/invoices/global/micro/body.php:22
|
677 |
+
msgid "Global Invoice"
|
678 |
+
msgstr "Factură globală"
|
679 |
+
|
680 |
+
#: includes/templates/invoices/global/micro/body.php:40
|
681 |
+
#: includes/templates/invoices/simple/micro/body.php:42
|
682 |
+
msgid "Description"
|
683 |
+
msgstr "Descriere"
|
684 |
+
|
685 |
+
#: includes/templates/invoices/global/micro/body.php:48
|
686 |
+
#: includes/templates/invoices/simple/micro/body.php:50
|
687 |
+
msgid "Cost"
|
688 |
+
msgstr "Preț"
|
689 |
+
|
690 |
+
#: includes/templates/invoices/global/micro/body.php:50
|
691 |
+
#: includes/templates/invoices/simple/micro/body.php:52
|
692 |
+
msgid "Qty"
|
693 |
+
msgstr "Cantitate"
|
694 |
+
|
695 |
+
#: includes/templates/invoices/global/micro/body.php:56
|
696 |
+
#: includes/templates/invoices/simple/micro/body.php:58
|
697 |
+
msgid "VAT"
|
698 |
+
msgstr "TVA"
|
699 |
+
|
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 |
+
|
722 |
+
#: includes/templates/invoices/global/micro/footer.php:15
|
723 |
+
#: includes/templates/invoices/simple/micro/footer.php:18
|
724 |
+
#, php-format
|
725 |
+
msgid "%s of %s"
|
726 |
+
msgstr "%s din %s"
|
727 |
+
|
728 |
+
#: includes/templates/invoices/simple/micro/body.php:22
|
729 |
+
msgid "Invoice"
|
730 |
+
msgstr "Factură"
|
731 |
+
|
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
|
744 |
+
msgid "Customer note"
|
745 |
+
msgstr "Notă client"
|
lang/woocommerce-pdf-invoices-ru_RU.po
CHANGED
@@ -1,711 +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-
|
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 "Замечания покупателя"
|
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-02-10 21:03+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: 2016-
|
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-02-10 21:03+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: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -23,32 +23,32 @@ msgstr ""
|
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
27 |
#, php-format
|
28 |
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:
|
34 |
#, php-format
|
35 |
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:
|
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-invoice.php:
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
@@ -465,82 +465,143 @@ msgstr ""
|
|
465 |
msgid "Version %s"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
msgid "WooCommerce PDF Invoices Premium"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/
|
473 |
msgid ""
|
474 |
"This plugin offers a premium version which comes with the following features:"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/
|
478 |
msgid "Bill periodically by generating and sending global invoices."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/
|
482 |
msgid "Add additional PDF's to customer invoices."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: includes/
|
486 |
msgid "Send customer invoices directly to suppliers and others."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/
|
496 |
msgid "Learn more"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/
|
500 |
msgid "Stay up-to-date"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/
|
504 |
msgid ""
|
505 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
506 |
"our newsletter."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/
|
510 |
msgid "Your email address"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/
|
514 |
msgid "Signup"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/
|
518 |
msgid "No spam, ever. Unsubscribe at any time"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/
|
522 |
msgid "About"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/
|
526 |
msgid ""
|
527 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
528 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/
|
532 |
msgid "<b>Version</b>: "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/
|
536 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/
|
540 |
msgid "Support"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/
|
544 |
msgid ""
|
545 |
"We will never ask for donations, but to garantee future development, we do "
|
546 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -549,92 +610,31 @@ msgid ""
|
|
549 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/
|
553 |
msgid ""
|
554 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/
|
558 |
msgid "Need Help?"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/
|
562 |
msgid "Frequently Asked Questions"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/
|
566 |
msgid "Support forum"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/
|
570 |
msgid "Request a feature"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/
|
574 |
msgid "Email us"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
578 |
-
msgid "PDF Invoice"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
582 |
-
msgid "Invoiced on:"
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
586 |
-
msgid "Invoice number:"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
590 |
-
msgid "View invoice"
|
591 |
-
msgstr ""
|
592 |
-
|
593 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
594 |
-
msgid "View"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
598 |
-
msgid "Cancel invoice"
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
602 |
-
msgid "Cancel"
|
603 |
-
msgstr ""
|
604 |
-
|
605 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
606 |
-
msgid "Are you sure to delete the invoice?"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
610 |
-
msgid "Create invoice"
|
611 |
-
msgstr "Maak factuur"
|
612 |
-
|
613 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
614 |
-
msgid "Create"
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
618 |
-
#, php-format
|
619 |
-
msgid "Invoice %s (PDF)"
|
620 |
-
msgstr ""
|
621 |
-
|
622 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
623 |
-
#, php-format
|
624 |
-
msgid ""
|
625 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
626 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
627 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
628 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
629 |
-
"done it!</a>"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: includes/class-bewpi-invoice.php:48
|
633 |
-
msgid ""
|
634 |
-
"Whoops, no template found. Please select a template on the Template settings "
|
635 |
-
"page first."
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
#: includes/templates/invoices/global/micro/body.php:5
|
639 |
#: includes/templates/invoices/simple/micro/body.php:5
|
640 |
msgid "Invoice to"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
#, php-format
|
28 |
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:267
|
34 |
#, php-format
|
35 |
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:310
|
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-invoice.php:372
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
465 |
msgid "Version %s"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
469 |
+
msgid "PDF Invoice"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
473 |
+
msgid "Invoiced on:"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
477 |
+
msgid "Invoice number:"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
481 |
+
msgid "View invoice"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
485 |
+
msgid "View"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
489 |
+
msgid "Cancel invoice"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
493 |
+
msgid "Cancel"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
497 |
+
msgid "Are you sure to delete the invoice?"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
501 |
+
msgid "Create invoice"
|
502 |
+
msgstr "Maak factuur"
|
503 |
+
|
504 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
505 |
+
msgid "Create"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
509 |
+
#, php-format
|
510 |
+
msgid "Invoice %s (PDF)"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
517 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
518 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
519 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
520 |
+
"done it!</a>"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/class-bewpi-invoice.php:48
|
524 |
+
msgid ""
|
525 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
526 |
+
"page first."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/partials/settings-sidebar.php:2
|
530 |
msgid "WooCommerce PDF Invoices Premium"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/partials/settings-sidebar.php:4
|
534 |
msgid ""
|
535 |
"This plugin offers a premium version which comes with the following features:"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/partials/settings-sidebar.php:5
|
539 |
msgid "Bill periodically by generating and sending global invoices."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/partials/settings-sidebar.php:6
|
543 |
msgid "Add additional PDF's to customer invoices."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/partials/settings-sidebar.php:7
|
547 |
msgid "Send customer invoices directly to suppliers and others."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/partials/settings-sidebar.php:8
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/partials/settings-sidebar.php:10
|
557 |
msgid "Learn more"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/partials/settings-sidebar.php:13
|
561 |
msgid "Stay up-to-date"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/partials/settings-sidebar.php:17
|
565 |
msgid ""
|
566 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
567 |
"our newsletter."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/partials/settings-sidebar.php:23
|
571 |
msgid "Your email address"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/partials/settings-sidebar.php:29
|
575 |
msgid "Signup"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/partials/settings-sidebar.php:32
|
579 |
msgid "No spam, ever. Unsubscribe at any time"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/partials/settings-sidebar.php:41
|
583 |
msgid "About"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/partials/settings-sidebar.php:43
|
587 |
msgid ""
|
588 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
589 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/partials/settings-sidebar.php:45
|
593 |
msgid "<b>Version</b>: "
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/partials/settings-sidebar.php:47
|
597 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/partials/settings-sidebar.php:50
|
601 |
msgid "Support"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/partials/settings-sidebar.php:52
|
605 |
msgid ""
|
606 |
"We will never ask for donations, but to garantee future development, we do "
|
607 |
"need your support. Please show us your appreciation by leaving a <a href="
|
610 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/partials/settings-sidebar.php:72
|
614 |
msgid ""
|
615 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/partials/settings-sidebar.php:77
|
619 |
msgid "Need Help?"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/partials/settings-sidebar.php:79
|
623 |
msgid "Frequently Asked Questions"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: includes/partials/settings-sidebar.php:80
|
627 |
msgid "Support forum"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: includes/partials/settings-sidebar.php:81
|
631 |
msgid "Request a feature"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: includes/partials/settings-sidebar.php:82
|
635 |
msgid "Email us"
|
636 |
msgstr ""
|
637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
#: includes/templates/invoices/global/micro/body.php:5
|
639 |
#: includes/templates/invoices/simple/micro/body.php:5
|
640 |
msgid "Invoice to"
|
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: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
@@ -23,32 +23,32 @@ msgstr ""
|
|
23 |
msgid "Paid"
|
24 |
msgstr "Betald"
|
25 |
|
26 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
27 |
#, php-format
|
28 |
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:
|
34 |
#, php-format
|
35 |
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:
|
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-invoice.php:
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
@@ -465,82 +465,143 @@ msgstr ""
|
|
465 |
msgid "Version %s"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
msgid "WooCommerce PDF Invoices Premium"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/
|
473 |
msgid ""
|
474 |
"This plugin offers a premium version which comes with the following features:"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/
|
478 |
msgid "Bill periodically by generating and sending global invoices."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/
|
482 |
msgid "Add additional PDF's to customer invoices."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: includes/
|
486 |
msgid "Send customer invoices directly to suppliers and others."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: includes/
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/
|
496 |
msgid "Learn more"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/
|
500 |
msgid "Stay up-to-date"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/
|
504 |
msgid ""
|
505 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
506 |
"our newsletter."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/
|
510 |
msgid "Your email address"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/
|
514 |
msgid "Signup"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/
|
518 |
msgid "No spam, ever. Unsubscribe at any time"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/
|
522 |
msgid "About"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/
|
526 |
msgid ""
|
527 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
528 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/
|
532 |
msgid "<b>Version</b>: "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/
|
536 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/
|
540 |
msgid "Support"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/
|
544 |
msgid ""
|
545 |
"We will never ask for donations, but to garantee future development, we do "
|
546 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -549,92 +610,31 @@ msgid ""
|
|
549 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/
|
553 |
msgid ""
|
554 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: includes/
|
558 |
msgid "Need Help?"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: includes/
|
562 |
msgid "Frequently Asked Questions"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: includes/
|
566 |
msgid "Support forum"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/
|
570 |
msgid "Request a feature"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/
|
574 |
msgid "Email us"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
578 |
-
msgid "PDF Invoice"
|
579 |
-
msgstr "PDF Faktura"
|
580 |
-
|
581 |
-
#: includes/be-woocommerce-pdf-invoices.php:463
|
582 |
-
msgid "Invoiced on:"
|
583 |
-
msgstr "Fakturerad"
|
584 |
-
|
585 |
-
#: includes/be-woocommerce-pdf-invoices.php:467
|
586 |
-
msgid "Invoice number:"
|
587 |
-
msgstr "Fakturanummer"
|
588 |
-
|
589 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
590 |
-
msgid "View invoice"
|
591 |
-
msgstr "Visa Faktura"
|
592 |
-
|
593 |
-
#: includes/be-woocommerce-pdf-invoices.php:505
|
594 |
-
msgid "View"
|
595 |
-
msgstr "Visa"
|
596 |
-
|
597 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
598 |
-
msgid "Cancel invoice"
|
599 |
-
msgstr "Avbryt Faktura"
|
600 |
-
|
601 |
-
#: includes/be-woocommerce-pdf-invoices.php:506
|
602 |
-
msgid "Cancel"
|
603 |
-
msgstr "Avbryt"
|
604 |
-
|
605 |
-
#: includes/be-woocommerce-pdf-invoices.php:508
|
606 |
-
msgid "Are you sure to delete the invoice?"
|
607 |
-
msgstr "Är du säker på att du vill radera fakturan?"
|
608 |
-
|
609 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
610 |
-
msgid "Create invoice"
|
611 |
-
msgstr "Skapa faktura"
|
612 |
-
|
613 |
-
#: includes/be-woocommerce-pdf-invoices.php:511
|
614 |
-
msgid "Create"
|
615 |
-
msgstr "Skapa"
|
616 |
-
|
617 |
-
#: includes/be-woocommerce-pdf-invoices.php:534
|
618 |
-
#, php-format
|
619 |
-
msgid "Invoice %s (PDF)"
|
620 |
-
msgstr "Faktura %s (PDF)"
|
621 |
-
|
622 |
-
#: includes/be-woocommerce-pdf-invoices.php:644
|
623 |
-
#, php-format
|
624 |
-
msgid ""
|
625 |
-
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
626 |
-
"really need your ★★★★★ rating. It will support future development big-time. "
|
627 |
-
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
628 |
-
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
629 |
-
"done it!</a>"
|
630 |
-
msgstr ""
|
631 |
-
|
632 |
-
#: includes/class-bewpi-invoice.php:48
|
633 |
-
msgid ""
|
634 |
-
"Whoops, no template found. Please select a template on the Template settings "
|
635 |
-
"page first."
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
#: includes/templates/invoices/global/micro/body.php:5
|
639 |
#: includes/templates/invoices/simple/micro/body.php:5
|
640 |
msgid "Invoice to"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2016-02-10 21:03+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-02-10 21:03+0100\n"
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
23 |
msgid "Paid"
|
24 |
msgstr "Betald"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
27 |
#, php-format
|
28 |
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:267
|
34 |
#, php-format
|
35 |
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:310
|
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-invoice.php:372
|
47 |
#, php-format
|
48 |
msgid "VAT Number: %s"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
52 |
#, php-format
|
53 |
msgid "Purchase Order Number: %s"
|
54 |
msgstr ""
|
465 |
msgid "Version %s"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
469 |
+
msgid "PDF Invoice"
|
470 |
+
msgstr "PDF Faktura"
|
471 |
+
|
472 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
473 |
+
msgid "Invoiced on:"
|
474 |
+
msgstr "Fakturerad"
|
475 |
+
|
476 |
+
#: includes/be-woocommerce-pdf-invoices.php:386
|
477 |
+
msgid "Invoice number:"
|
478 |
+
msgstr "Fakturanummer"
|
479 |
+
|
480 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
481 |
+
msgid "View invoice"
|
482 |
+
msgstr "Visa Faktura"
|
483 |
+
|
484 |
+
#: includes/be-woocommerce-pdf-invoices.php:424
|
485 |
+
msgid "View"
|
486 |
+
msgstr "Visa"
|
487 |
+
|
488 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
489 |
+
msgid "Cancel invoice"
|
490 |
+
msgstr "Avbryt Faktura"
|
491 |
+
|
492 |
+
#: includes/be-woocommerce-pdf-invoices.php:425
|
493 |
+
msgid "Cancel"
|
494 |
+
msgstr "Avbryt"
|
495 |
+
|
496 |
+
#: includes/be-woocommerce-pdf-invoices.php:427
|
497 |
+
msgid "Are you sure to delete the invoice?"
|
498 |
+
msgstr "Är du säker på att du vill radera fakturan?"
|
499 |
+
|
500 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
501 |
+
msgid "Create invoice"
|
502 |
+
msgstr "Skapa faktura"
|
503 |
+
|
504 |
+
#: includes/be-woocommerce-pdf-invoices.php:430
|
505 |
+
msgid "Create"
|
506 |
+
msgstr "Skapa"
|
507 |
+
|
508 |
+
#: includes/be-woocommerce-pdf-invoices.php:453
|
509 |
+
#, php-format
|
510 |
+
msgid "Invoice %s (PDF)"
|
511 |
+
msgstr "Faktura %s (PDF)"
|
512 |
+
|
513 |
+
#: includes/be-woocommerce-pdf-invoices.php:563
|
514 |
+
#, php-format
|
515 |
+
msgid ""
|
516 |
+
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
517 |
+
"really need your ★★★★★ rating. It will support future development big-time. "
|
518 |
+
"A huge thanks in advance and keep up the good work! <br /> <a href='%s' "
|
519 |
+
"target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already "
|
520 |
+
"done it!</a>"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/class-bewpi-invoice.php:48
|
524 |
+
msgid ""
|
525 |
+
"Whoops, no template found. Please select a template on the Template settings "
|
526 |
+
"page first."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/partials/settings-sidebar.php:2
|
530 |
msgid "WooCommerce PDF Invoices Premium"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/partials/settings-sidebar.php:4
|
534 |
msgid ""
|
535 |
"This plugin offers a premium version which comes with the following features:"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/partials/settings-sidebar.php:5
|
539 |
msgid "Bill periodically by generating and sending global invoices."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/partials/settings-sidebar.php:6
|
543 |
msgid "Add additional PDF's to customer invoices."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: includes/partials/settings-sidebar.php:7
|
547 |
msgid "Send customer invoices directly to suppliers and others."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: includes/partials/settings-sidebar.php:8
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/partials/settings-sidebar.php:10
|
557 |
msgid "Learn more"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/partials/settings-sidebar.php:13
|
561 |
msgid "Stay up-to-date"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/partials/settings-sidebar.php:17
|
565 |
msgid ""
|
566 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
567 |
"our newsletter."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/partials/settings-sidebar.php:23
|
571 |
msgid "Your email address"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/partials/settings-sidebar.php:29
|
575 |
msgid "Signup"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/partials/settings-sidebar.php:32
|
579 |
msgid "No spam, ever. Unsubscribe at any time"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/partials/settings-sidebar.php:41
|
583 |
msgid "About"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/partials/settings-sidebar.php:43
|
587 |
msgid ""
|
588 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
589 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/partials/settings-sidebar.php:45
|
593 |
msgid "<b>Version</b>: "
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/partials/settings-sidebar.php:47
|
597 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/partials/settings-sidebar.php:50
|
601 |
msgid "Support"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/partials/settings-sidebar.php:52
|
605 |
msgid ""
|
606 |
"We will never ask for donations, but to garantee future development, we do "
|
607 |
"need your support. Please show us your appreciation by leaving a <a href="
|
610 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/partials/settings-sidebar.php:72
|
614 |
msgid ""
|
615 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/partials/settings-sidebar.php:77
|
619 |
msgid "Need Help?"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/partials/settings-sidebar.php:79
|
623 |
msgid "Frequently Asked Questions"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: includes/partials/settings-sidebar.php:80
|
627 |
msgid "Support forum"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: includes/partials/settings-sidebar.php:81
|
631 |
msgid "Request a feature"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: includes/partials/settings-sidebar.php:82
|
635 |
msgid "Email us"
|
636 |
msgstr ""
|
637 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
638 |
#: includes/templates/invoices/global/micro/body.php:5
|
639 |
#: includes/templates/invoices/simple/micro/body.php:5
|
640 |
msgid "Invoice to"
|
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: 2016-
|
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"
|
@@ -53,177 +53,68 @@ msgstr ""
|
|
53 |
msgid "Template"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
57 |
msgid "Invoices"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
61 |
#, php-format
|
62 |
msgid ""
|
63 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
64 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
68 |
#, php-format
|
69 |
msgid "Version %s"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
73 |
-
msgid "WooCommerce PDF Invoices Premium"
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: includes/be-woocommerce-pdf-invoices.php:308
|
77 |
-
msgid ""
|
78 |
-
"This plugin offers a premium version which comes with the following features:"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: includes/be-woocommerce-pdf-invoices.php:309
|
82 |
-
msgid "Bill periodically by generating and sending global invoices."
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: includes/be-woocommerce-pdf-invoices.php:310
|
86 |
-
msgid "Add additional PDF's to customer invoices."
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: includes/be-woocommerce-pdf-invoices.php:311
|
90 |
-
msgid "Send customer invoices directly to suppliers and others."
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: includes/be-woocommerce-pdf-invoices.php:312
|
94 |
-
#, php-format
|
95 |
-
msgid ""
|
96 |
-
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: includes/be-woocommerce-pdf-invoices.php:314
|
100 |
-
msgid "Learn more"
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: includes/be-woocommerce-pdf-invoices.php:318
|
104 |
-
msgid "Stay up-to-date"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: includes/be-woocommerce-pdf-invoices.php:327
|
108 |
-
msgid ""
|
109 |
-
"We're constantly developing new features, stay up-to-date by subscribing to "
|
110 |
-
"our newsletter."
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: includes/be-woocommerce-pdf-invoices.php:333
|
114 |
-
msgid "Your email address"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: includes/be-woocommerce-pdf-invoices.php:336
|
118 |
-
msgid "Signup"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
#: includes/be-woocommerce-pdf-invoices.php:337
|
122 |
-
msgid "No spam, ever. Unsubscribe at any time"
|
123 |
-
msgstr ""
|
124 |
-
|
125 |
-
#: includes/be-woocommerce-pdf-invoices.php:345
|
126 |
-
msgid "About"
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: includes/be-woocommerce-pdf-invoices.php:346
|
130 |
-
msgid ""
|
131 |
-
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
132 |
-
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: includes/be-woocommerce-pdf-invoices.php:347
|
136 |
-
msgid "<b>Version</b>: "
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: includes/be-woocommerce-pdf-invoices.php:349
|
140 |
-
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: includes/be-woocommerce-pdf-invoices.php:352
|
144 |
-
msgid "Support"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: includes/be-woocommerce-pdf-invoices.php:353
|
148 |
-
msgid ""
|
149 |
-
"We will never ask for donations, but to garantee future development, we do "
|
150 |
-
"need your support. Please show us your appreciation by leaving a <a href="
|
151 |
-
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
152 |
-
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
153 |
-
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
154 |
-
msgstr ""
|
155 |
-
|
156 |
-
#: includes/be-woocommerce-pdf-invoices.php:372
|
157 |
-
msgid ""
|
158 |
-
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: includes/be-woocommerce-pdf-invoices.php:377
|
162 |
-
msgid "Need Help?"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: includes/be-woocommerce-pdf-invoices.php:379
|
166 |
-
msgid "Frequently Asked Questions"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: includes/be-woocommerce-pdf-invoices.php:380
|
170 |
-
msgid "Support forum"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: includes/be-woocommerce-pdf-invoices.php:381
|
174 |
-
msgid "Request a feature"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: includes/be-woocommerce-pdf-invoices.php:382
|
178 |
-
msgid "Email us"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: includes/be-woocommerce-pdf-invoices.php:437
|
182 |
msgid "PDF Invoice"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
186 |
msgid "Invoiced on:"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
190 |
msgid "Invoice number:"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
194 |
msgid "View invoice"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
198 |
msgid "View"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
202 |
msgid "Cancel invoice"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
206 |
msgid "Cancel"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
210 |
msgid "Are you sure to delete the invoice?"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
214 |
msgid "Create invoice"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
218 |
msgid "Create"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
222 |
#, php-format
|
223 |
msgid "Invoice %s (PDF)"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
227 |
#, php-format
|
228 |
msgid ""
|
229 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
@@ -243,32 +134,32 @@ msgstr ""
|
|
243 |
msgid "Paid"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
250 |
"all invoices with invoice number %s and greater."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
254 |
#, php-format
|
255 |
msgid ""
|
256 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
257 |
"First delete invoice and try again."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
261 |
#, php-format
|
262 |
msgid ""
|
263 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
267 |
#, php-format
|
268 |
msgid "VAT Number: %s"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/abstracts/abstract-bewpi-invoice.php:
|
272 |
#, php-format
|
273 |
msgid "Purchase Order Number: %s"
|
274 |
msgstr ""
|
@@ -633,6 +524,115 @@ msgstr ""
|
|
633 |
msgid "File should be less then 2MB."
|
634 |
msgstr ""
|
635 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
#: includes/templates/invoices/global/micro/body.php:5
|
637 |
#: includes/templates/invoices/simple/micro/body.php:5
|
638 |
msgid "Invoice to"
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2016-02-10 21:35+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"
|
53 |
msgid "Template"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/be-woocommerce-pdf-invoices.php:251
|
57 |
msgid "Invoices"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/be-woocommerce-pdf-invoices.php:290
|
61 |
#, php-format
|
62 |
msgid ""
|
63 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
64 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: includes/be-woocommerce-pdf-invoices.php:291
|
68 |
#, php-format
|
69 |
msgid "Version %s"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/be-woocommerce-pdf-invoices.php:365
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
msgid "PDF Invoice"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/be-woocommerce-pdf-invoices.php:391
|
77 |
msgid "Invoiced on:"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/be-woocommerce-pdf-invoices.php:395
|
81 |
msgid "Invoice number:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/be-woocommerce-pdf-invoices.php:433
|
85 |
msgid "View invoice"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: includes/be-woocommerce-pdf-invoices.php:433
|
89 |
msgid "View"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/be-woocommerce-pdf-invoices.php:434
|
93 |
msgid "Cancel invoice"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/be-woocommerce-pdf-invoices.php:434
|
97 |
msgid "Cancel"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/be-woocommerce-pdf-invoices.php:436
|
101 |
msgid "Are you sure to delete the invoice?"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/be-woocommerce-pdf-invoices.php:439
|
105 |
msgid "Create invoice"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: includes/be-woocommerce-pdf-invoices.php:439
|
109 |
msgid "Create"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/be-woocommerce-pdf-invoices.php:462
|
113 |
#, php-format
|
114 |
msgid "Invoice %s (PDF)"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/be-woocommerce-pdf-invoices.php:572
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
134 |
msgid "Paid"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:262
|
138 |
#, php-format
|
139 |
msgid ""
|
140 |
"Could not create invoice. In order to reset invoice number with %d, delete "
|
141 |
"all invoices with invoice number %s and greater."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:267
|
145 |
#, php-format
|
146 |
msgid ""
|
147 |
"Could not create invoice. Invoice with invoice number %s already exists. "
|
148 |
"First delete invoice and try again."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:310
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:372
|
158 |
#, php-format
|
159 |
msgid "VAT Number: %s"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:383
|
163 |
#, php-format
|
164 |
msgid "Purchase Order Number: %s"
|
165 |
msgstr ""
|
524 |
msgid "File should be less then 2MB."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/partials/settings-sidebar.php:2
|
528 |
+
msgid "WooCommerce PDF Invoices Premium"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/partials/settings-sidebar.php:4
|
532 |
+
msgid ""
|
533 |
+
"This plugin offers a premium version which comes with the following features:"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/partials/settings-sidebar.php:5
|
537 |
+
msgid "Bill periodically by generating and sending global invoices."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/partials/settings-sidebar.php:6
|
541 |
+
msgid "Add additional PDF's to customer invoices."
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/partials/settings-sidebar.php:7
|
545 |
+
msgid "Send customer invoices directly to suppliers and others."
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/partials/settings-sidebar.php:8
|
549 |
+
#, php-format
|
550 |
+
msgid ""
|
551 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/partials/settings-sidebar.php:10
|
555 |
+
msgid "Learn more"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: includes/partials/settings-sidebar.php:13
|
559 |
+
msgid "Stay up-to-date"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/partials/settings-sidebar.php:17
|
563 |
+
msgid ""
|
564 |
+
"We're constantly developing new features, stay up-to-date by subscribing to "
|
565 |
+
"our newsletter."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/partials/settings-sidebar.php:23
|
569 |
+
msgid "Your email address"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/partials/settings-sidebar.php:29
|
573 |
+
msgid "Signup"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/partials/settings-sidebar.php:32
|
577 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/partials/settings-sidebar.php:41
|
581 |
+
msgid "About"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/partials/settings-sidebar.php:43
|
585 |
+
msgid ""
|
586 |
+
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
587 |
+
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: includes/partials/settings-sidebar.php:45
|
591 |
+
msgid "<b>Version</b>: "
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: includes/partials/settings-sidebar.php:47
|
595 |
+
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/partials/settings-sidebar.php:50
|
599 |
+
msgid "Support"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/partials/settings-sidebar.php:52
|
603 |
+
msgid ""
|
604 |
+
"We will never ask for donations, but to garantee future development, we do "
|
605 |
+
"need your support. Please show us your appreciation by leaving a <a href="
|
606 |
+
"\"https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?"
|
607 |
+
"rate=5#postform\">★★★★★</a> rating and vote for <a href=\"https://wordpress."
|
608 |
+
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: includes/partials/settings-sidebar.php:72
|
612 |
+
msgid ""
|
613 |
+
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/partials/settings-sidebar.php:77
|
617 |
+
msgid "Need Help?"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/partials/settings-sidebar.php:79
|
621 |
+
msgid "Frequently Asked Questions"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/partials/settings-sidebar.php:80
|
625 |
+
msgid "Support forum"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/partials/settings-sidebar.php:81
|
629 |
+
msgid "Request a feature"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: includes/partials/settings-sidebar.php:82
|
633 |
+
msgid "Email us"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
#: includes/templates/invoices/global/micro/body.php:5
|
637 |
#: includes/templates/invoices/simple/micro/body.php:5
|
638 |
msgid "Invoice to"
|
lib/mpdf/ttfontdata/opensansB.cw127.php
ADDED
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$rangeid=114;
|
3 |
+
$prevcid=126;
|
4 |
+
$prevwidth=571;
|
5 |
+
$interval=false;
|
6 |
+
$range=array (
|
7 |
+
32 =>
|
8 |
+
array (
|
9 |
+
0 => 260,
|
10 |
+
1 => 286,
|
11 |
+
2 => 472,
|
12 |
+
3 => 646,
|
13 |
+
4 => 571,
|
14 |
+
5 => 901,
|
15 |
+
6 => 750,
|
16 |
+
7 => 266,
|
17 |
+
),
|
18 |
+
40 =>
|
19 |
+
array (
|
20 |
+
0 => 339,
|
21 |
+
1 => 339,
|
22 |
+
'interval' => true,
|
23 |
+
),
|
24 |
+
42 =>
|
25 |
+
array (
|
26 |
+
0 => 545,
|
27 |
+
1 => 571,
|
28 |
+
2 => 290,
|
29 |
+
3 => 322,
|
30 |
+
4 => 285,
|
31 |
+
5 => 413,
|
32 |
+
),
|
33 |
+
48 =>
|
34 |
+
array (
|
35 |
+
0 => 571,
|
36 |
+
1 => 571,
|
37 |
+
'interval' => true,
|
38 |
+
2 => 571,
|
39 |
+
3 => 571,
|
40 |
+
4 => 571,
|
41 |
+
5 => 571,
|
42 |
+
6 => 571,
|
43 |
+
7 => 571,
|
44 |
+
8 => 571,
|
45 |
+
9 => 571,
|
46 |
+
),
|
47 |
+
58 =>
|
48 |
+
array (
|
49 |
+
0 => 285,
|
50 |
+
1 => 290,
|
51 |
+
),
|
52 |
+
60 =>
|
53 |
+
array (
|
54 |
+
0 => 571,
|
55 |
+
1 => 571,
|
56 |
+
'interval' => true,
|
57 |
+
2 => 571,
|
58 |
+
),
|
59 |
+
63 =>
|
60 |
+
array (
|
61 |
+
0 => 477,
|
62 |
+
1 => 897,
|
63 |
+
2 => 690,
|
64 |
+
3 => 672,
|
65 |
+
4 => 637,
|
66 |
+
5 => 740,
|
67 |
+
6 => 560,
|
68 |
+
7 => 549,
|
69 |
+
8 => 724,
|
70 |
+
9 => 765,
|
71 |
+
),
|
72 |
+
73 =>
|
73 |
+
array (
|
74 |
+
0 => 331,
|
75 |
+
1 => 331,
|
76 |
+
'interval' => true,
|
77 |
+
),
|
78 |
+
75 =>
|
79 |
+
array (
|
80 |
+
0 => 664,
|
81 |
+
1 => 565,
|
82 |
+
2 => 943,
|
83 |
+
3 => 813,
|
84 |
+
4 => 796,
|
85 |
+
5 => 628,
|
86 |
+
6 => 796,
|
87 |
+
7 => 660,
|
88 |
+
8 => 551,
|
89 |
+
9 => 579,
|
90 |
+
10 => 756,
|
91 |
+
11 => 650,
|
92 |
+
12 => 967,
|
93 |
+
13 => 667,
|
94 |
+
14 => 624,
|
95 |
+
15 => 579,
|
96 |
+
16 => 331,
|
97 |
+
17 => 413,
|
98 |
+
18 => 331,
|
99 |
+
19 => 532,
|
100 |
+
20 => 411,
|
101 |
+
21 => 607,
|
102 |
+
22 => 604,
|
103 |
+
23 => 633,
|
104 |
+
24 => 514,
|
105 |
+
25 => 633,
|
106 |
+
26 => 591,
|
107 |
+
27 => 387,
|
108 |
+
28 => 565,
|
109 |
+
29 => 657,
|
110 |
+
),
|
111 |
+
105 =>
|
112 |
+
array (
|
113 |
+
0 => 305,
|
114 |
+
1 => 305,
|
115 |
+
'interval' => true,
|
116 |
+
),
|
117 |
+
107 =>
|
118 |
+
array (
|
119 |
+
0 => 620,
|
120 |
+
1 => 305,
|
121 |
+
2 => 982,
|
122 |
+
3 => 657,
|
123 |
+
4 => 619,
|
124 |
+
),
|
125 |
+
112 =>
|
126 |
+
array (
|
127 |
+
0 => 633,
|
128 |
+
1 => 633,
|
129 |
+
'interval' => true,
|
130 |
+
),
|
131 |
+
114 =>
|
132 |
+
array (
|
133 |
+
0 => 454,
|
134 |
+
1 => 497,
|
135 |
+
2 => 434,
|
136 |
+
3 => 657,
|
137 |
+
4 => 569,
|
138 |
+
5 => 856,
|
139 |
+
6 => 578,
|
140 |
+
7 => 569,
|
141 |
+
8 => 488,
|
142 |
+
9 => 394,
|
143 |
+
10 => 551,
|
144 |
+
11 => 394,
|
145 |
+
12 => 571,
|
146 |
+
),
|
147 |
+
);
|
148 |
+
?>
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
=== Plugin Name ===
|
2 |
Contributors: baaaaas
|
3 |
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.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -145,6 +145,16 @@ To change the options of the PDF, use below example.
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
= 2.4.0 - January 15, 2016 =
|
149 |
|
150 |
- Added: Purchase Order Number from WooCommerce Purchase Order Gateway
|
1 |
+
=== Plugin Name ===
|
2 |
Contributors: baaaaas
|
3 |
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.4.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 2.4.1 - February 10, 2016 =
|
149 |
+
|
150 |
+
- Added: Lithuanian language files
|
151 |
+
- Added: German language files
|
152 |
+
- Improved: Settings sidebar
|
153 |
+
- Fixed: Don't display paid watermark when payment method is Cash on Delivery
|
154 |
+
- Fixed: mPDF already included
|
155 |
+
- Fixed: Margin between header and address sections
|
156 |
+
- Fixed: Copy .htaccess and index.php files to many times into uploads folder
|
157 |
+
|
158 |
= 2.4.0 - January 15, 2016 =
|
159 |
|
160 |
- Added: Purchase Order Number from WooCommerce Purchase Order Gateway
|