Version Description
December 11, 2015 =
Fixed: Fatal errors due to Wordpress 4.4
Improved: Replaced textdomain variable by strongly typed string (properly prepared for translations)
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 2.3.14 |
Comparing to | |
See all releases |
Code changes from version 2.3.13 to 2.3.14
- bootstrap.php +3 -5
- includes/abstracts/abstract-bewpi-document.php +1 -6
- includes/abstracts/abstract-bewpi-invoice.php +7 -9
- includes/abstracts/abstract-bewpi-setting.php +2 -8
- includes/admin/settings/class-bewpi-admin-settings-general.php +15 -15
- includes/admin/settings/class-bewpi-admin-settings-template.php +59 -59
- includes/be-woocommerce-pdf-invoices.php +77 -50
- includes/class-bewpi-invoice.php +1 -1
- includes/templates/invoices/global/micro/body.php +17 -17
- includes/templates/invoices/global/micro/footer.php +1 -1
- includes/templates/invoices/simple/micro/body.php +20 -20
- includes/templates/invoices/simple/micro/footer.php +1 -1
- lang/be-woocommerce-pdf-invoices-es_ES.mo +0 -0
- lang/be-woocommerce-pdf-invoices-es_ES.po +75 -61
- lang/be-woocommerce-pdf-invoices-fr_FR.mo +0 -0
- lang/be-woocommerce-pdf-invoices-fr_FR.po +75 -61
- lang/be-woocommerce-pdf-invoices-nb_NO.mo +0 -0
- lang/be-woocommerce-pdf-invoices-nb_NO.po +82 -63
- lang/be-woocommerce-pdf-invoices-nl_NL.mo +0 -0
- lang/be-woocommerce-pdf-invoices-nl_NL.po +82 -63
- lang/be-woocommerce-pdf-invoices-sl_SI.mo +0 -0
- lang/be-woocommerce-pdf-invoices-sl_SI.po +75 -61
- lang/be-woocommerce-pdf-invoices-sv_SE.mo +0 -0
- lang/be-woocommerce-pdf-invoices-sv_SE.po +75 -61
- lang/be-woocommerce-pdf-invoices.pot +74 -60
- readme.txt +8 -2
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.3.
|
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.3.
|
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/' );
|
@@ -47,6 +47,4 @@ add_action( 'plugins_loaded', 'bewpi_plugins_loaded', 11 );
|
|
47 |
if ( is_admin() ) {
|
48 |
require_once( dirname( __FILE__ ) . '/includes/be-woocommerce-pdf-invoices.php' );
|
49 |
register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
|
50 |
-
|
51 |
-
}
|
52 |
-
|
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.3.14
|
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.3.14' );
|
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/' );
|
47 |
if ( is_admin() ) {
|
48 |
require_once( dirname( __FILE__ ) . '/includes/be-woocommerce-pdf-invoices.php' );
|
49 |
register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
|
50 |
+
}
|
|
|
|
includes/abstracts/abstract-bewpi-document.php
CHANGED
@@ -15,11 +15,6 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
|
|
15 |
*/
|
16 |
protected $full_path;
|
17 |
|
18 |
-
/**
|
19 |
-
* @var string
|
20 |
-
*/
|
21 |
-
protected $textdomain = 'be-woocommerce-pdf-invoices';
|
22 |
-
|
23 |
/**
|
24 |
* All options from general tab.
|
25 |
* @var array
|
@@ -66,7 +61,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Document' ) ) {
|
|
66 |
$mpdf->useOnlyCoreFonts = false; // false is default
|
67 |
|
68 |
if ( (bool)$this->template_options[ 'bewpi_show_payment_status' ] && $paid ) {
|
69 |
-
$mpdf->SetWatermarkText( __( 'Paid',
|
70 |
$mpdf->showWatermarkText = true;
|
71 |
}
|
72 |
|
15 |
*/
|
16 |
protected $full_path;
|
17 |
|
|
|
|
|
|
|
|
|
|
|
18 |
/**
|
19 |
* All options from general tab.
|
20 |
* @var array
|
61 |
$mpdf->useOnlyCoreFonts = false; // false is default
|
62 |
|
63 |
if ( (bool)$this->template_options[ 'bewpi_show_payment_status' ] && $paid ) {
|
64 |
+
$mpdf->SetWatermarkText( __( 'Paid', 'be-woocommerce-pdf-invoices' ) );
|
65 |
$mpdf->showWatermarkText = true;
|
66 |
}
|
67 |
|
includes/abstracts/abstract-bewpi-invoice.php
CHANGED
@@ -252,15 +252,15 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
252 |
if ( $this->exists() ) {
|
253 |
if ( $this->counter_reset ) {
|
254 |
// user used invoice number reset, but invoice already exists with this invoice number
|
255 |
-
|
256 |
'',
|
257 |
array( 'response' => 200, 'back_link' => true )
|
258 |
-
)
|
259 |
} else {
|
260 |
-
|
261 |
'',
|
262 |
array( 'response' => 200, 'back_link' => true )
|
263 |
-
)
|
264 |
}
|
265 |
}
|
266 |
|
@@ -296,7 +296,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
296 |
*/
|
297 |
public function view() {
|
298 |
if ( ! $this->exists() )
|
299 |
-
wp_die( sprintf( __( 'Invoice with invoice number %s not found. First create invoice and try again.',
|
300 |
'',
|
301 |
array( 'response' => 200, 'back_link' => true )
|
302 |
);
|
@@ -339,11 +339,9 @@ if ( ! class_exists( 'BEWPI_Abstract_Invoice' ) ) {
|
|
339 |
public function get_company_logo_html() {
|
340 |
if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) :
|
341 |
$image_url = $this->template_options['bewpi_company_logo'];
|
342 |
-
|
343 |
// get the relative path due to slow generation of invoice. Not fully tested yet.
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
echo '<img class="company-logo" src="' . $image_url . '"/>';
|
348 |
else :
|
349 |
echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
|
252 |
if ( $this->exists() ) {
|
253 |
if ( $this->counter_reset ) {
|
254 |
// user used invoice number reset, but invoice already exists with this invoice number
|
255 |
+
wp_die( sprintf( __( 'Could not create invoice. In order to reset invoice number with %d, delete all invoices with invoice number %s and greater.', 'be-woocommerce-pdf-invoices' ), (int)$this->template_options[ 'bewpi_next_invoice_number' ], $this->formatted_number ),
|
256 |
'',
|
257 |
array( 'response' => 200, 'back_link' => true )
|
258 |
+
);
|
259 |
} else {
|
260 |
+
wp_die( sprintf( __( 'Could not create invoice. Invoice with invoice number %s already exists. First delete invoice and try again.', 'be-woocommerce-pdf-invoices' ), $this->formatted_number ),
|
261 |
'',
|
262 |
array( 'response' => 200, 'back_link' => true )
|
263 |
+
);
|
264 |
}
|
265 |
}
|
266 |
|
296 |
*/
|
297 |
public function view() {
|
298 |
if ( ! $this->exists() )
|
299 |
+
wp_die( sprintf( __( 'Invoice with invoice number %s not found. First create invoice and try again.', 'be-woocommerce-pdf-invoices' ), $this->formatted_number ),
|
300 |
'',
|
301 |
array( 'response' => 200, 'back_link' => true )
|
302 |
);
|
339 |
public function get_company_logo_html() {
|
340 |
if ( ! empty( $this->template_options['bewpi_company_logo'] ) ) :
|
341 |
$image_url = $this->template_options['bewpi_company_logo'];
|
|
|
342 |
// get the relative path due to slow generation of invoice. Not fully tested yet.
|
343 |
+
//$image_url = '..' . str_replace( get_site_url(), '', $image_url );
|
344 |
+
$image_url = image_to_base64( $image_url );
|
|
|
345 |
echo '<img class="company-logo" src="' . $image_url . '"/>';
|
346 |
else :
|
347 |
echo '<h1 class="company-logo">' . $this->template_options['bewpi_company_name'] . '</h1>';
|
includes/abstracts/abstract-bewpi-setting.php
CHANGED
@@ -9,12 +9,6 @@ if ( ! class_exists( 'BEWPI_Abstract_Setting' ) ) {
|
|
9 |
*/
|
10 |
abstract class BEWPI_Abstract_Setting {
|
11 |
|
12 |
-
/**
|
13 |
-
* The textdomain
|
14 |
-
* @var string
|
15 |
-
*/
|
16 |
-
public $textdomain = 'be-woocommerce-pdf-invoices';
|
17 |
-
|
18 |
/**
|
19 |
* Options and settings prefix
|
20 |
* @var string
|
@@ -93,7 +87,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Setting' ) ) {
|
|
93 |
* @return string|void
|
94 |
*/
|
95 |
protected function get_allowed_tags_str() {
|
96 |
-
( count( $this->allowed_tags ) > 0 ) ? $str = __( 'Allowed HTML tags: ',
|
97 |
foreach ( $this->allowed_tags as $i => $tag ) {
|
98 |
( $i == count( $this->allowed_tags ) - 1 ) ? $str .= sprintf( '<code>%s</code>.', htmlspecialchars( $tag ) ) : $str .= sprintf( '<code>%s</code> ', htmlspecialchars( $tag ) );
|
99 |
}
|
@@ -173,7 +167,7 @@ if ( ! class_exists( 'BEWPI_Abstract_Setting' ) ) {
|
|
173 |
<img id="<?php echo $args['id'] . '-delete'; ?>"
|
174 |
src="<?php echo BEWPI_URL . '/assets/images/delete-icon.png'; ?>"
|
175 |
onclick="Settings.removeCompanyLogo()"
|
176 |
-
title="<?php _e( 'Remove logo',
|
177 |
</div>
|
178 |
<?php
|
179 |
endif;
|
9 |
*/
|
10 |
abstract class BEWPI_Abstract_Setting {
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
/**
|
13 |
* Options and settings prefix
|
14 |
* @var string
|
87 |
* @return string|void
|
88 |
*/
|
89 |
protected function get_allowed_tags_str() {
|
90 |
+
( count( $this->allowed_tags ) > 0 ) ? $str = __( 'Allowed HTML tags: ', 'be-woocommerce-pdf-invoices' ) : $str = '';
|
91 |
foreach ( $this->allowed_tags as $i => $tag ) {
|
92 |
( $i == count( $this->allowed_tags ) - 1 ) ? $str .= sprintf( '<code>%s</code>.', htmlspecialchars( $tag ) ) : $str .= sprintf( '<code>%s</code> ', htmlspecialchars( $tag ) );
|
93 |
}
|
167 |
<img id="<?php echo $args['id'] . '-delete'; ?>"
|
168 |
src="<?php echo BEWPI_URL . '/assets/images/delete-icon.png'; ?>"
|
169 |
onclick="Settings.removeCompanyLogo()"
|
170 |
+
title="<?php _e( 'Remove logo', 'be-woocommerce-pdf-invoices' ); ?>"/>
|
171 |
</div>
|
172 |
<?php
|
173 |
endif;
|
includes/admin/settings/class-bewpi-admin-settings-general.php
CHANGED
@@ -83,7 +83,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
83 |
array(
|
84 |
'id' => 'bewpi-view-pdf',
|
85 |
'name' => $this->prefix . 'view_pdf',
|
86 |
-
'title' => __( 'View PDF',
|
87 |
'callback' => array( &$this, 'select_callback' ),
|
88 |
'page' => $this->settings_key,
|
89 |
'section' => 'email',
|
@@ -91,11 +91,11 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
91 |
'desc' => '',
|
92 |
'options' => array(
|
93 |
array(
|
94 |
-
'name' => __( 'Download',
|
95 |
'value' => 'download'
|
96 |
),
|
97 |
array(
|
98 |
-
'name' => __( 'Open in new browser tab/window',
|
99 |
'value' => 'browser'
|
100 |
)
|
101 |
),
|
@@ -104,7 +104,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
104 |
array(
|
105 |
'id' => 'bewpi-email-type',
|
106 |
'name' => $this->prefix . 'email_type',
|
107 |
-
'title' => __( 'Attach to Email',
|
108 |
'callback' => array( &$this, 'select_callback' ),
|
109 |
'page' => $this->settings_key,
|
110 |
'section' => 'email',
|
@@ -112,19 +112,19 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
112 |
'desc' => '',
|
113 |
'options' => array(
|
114 |
array(
|
115 |
-
'name' => __( 'Processing order',
|
116 |
'value' => 'customer_processing_order'
|
117 |
),
|
118 |
array(
|
119 |
-
'name' => __( 'Completed order',
|
120 |
'value' => 'customer_completed_order'
|
121 |
),
|
122 |
array(
|
123 |
-
'name' => __( 'Customer invoice',
|
124 |
'value' => 'customer_invoice'
|
125 |
),
|
126 |
array(
|
127 |
-
'name' => __( 'Do not attach',
|
128 |
'value' => ''
|
129 |
)
|
130 |
),
|
@@ -138,7 +138,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
138 |
'page' => $this->settings_key,
|
139 |
'section' => 'email',
|
140 |
'type' => 'checkbox',
|
141 |
-
'desc' => __( 'Attach to New order Email',
|
142 |
'class' => 'bewpi-checkbox-option-title',
|
143 |
'default' => 0
|
144 |
),
|
@@ -150,7 +150,7 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
150 |
'page' => $this->settings_key,
|
151 |
'section' => 'cloud_storage',
|
152 |
'type' => 'checkbox',
|
153 |
-
'desc' => __( 'Enable Email It In',
|
154 |
'class' => 'bewpi-checkbox-option-title',
|
155 |
'default' => 0
|
156 |
),
|
@@ -158,12 +158,12 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
158 |
array(
|
159 |
'id' => 'bewpi-email-it-in-account',
|
160 |
'name' => $this->prefix . 'email_it_in_account',
|
161 |
-
'title' => __( 'Email It In account',
|
162 |
'callback' => array( &$this, 'input_callback' ),
|
163 |
'page' => $this->settings_key,
|
164 |
'section' => 'cloud_storage',
|
165 |
'type' => 'text',
|
166 |
-
'desc' => sprintf( __( 'Get your account from your Email It In %suser account%s.',
|
167 |
'default' => ''
|
168 |
)
|
169 |
);
|
@@ -177,20 +177,20 @@ if ( ! class_exists( 'BEWPI_General_Settings' ) ) {
|
|
177 |
private function add_settings_sections() {
|
178 |
add_settings_section(
|
179 |
'email',
|
180 |
-
__( 'Email Options',
|
181 |
array( &$this, 'email_desc_callback' ),
|
182 |
$this->settings_key
|
183 |
);
|
184 |
add_settings_section(
|
185 |
'cloud_storage',
|
186 |
-
__( 'Cloud Storage Options',
|
187 |
array( &$this, 'cloud_storage_desc_callback' ),
|
188 |
$this->settings_key
|
189 |
);
|
190 |
}
|
191 |
|
192 |
public function email_desc_callback() { }
|
193 |
-
public function cloud_storage_desc_callback() { printf( __( 'Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or Egnyte and enter your account below.',
|
194 |
|
195 |
/**
|
196 |
* Adds settings fields
|
83 |
array(
|
84 |
'id' => 'bewpi-view-pdf',
|
85 |
'name' => $this->prefix . 'view_pdf',
|
86 |
+
'title' => __( 'View PDF', 'be-woocommerce-pdf-invoices' ),
|
87 |
'callback' => array( &$this, 'select_callback' ),
|
88 |
'page' => $this->settings_key,
|
89 |
'section' => 'email',
|
91 |
'desc' => '',
|
92 |
'options' => array(
|
93 |
array(
|
94 |
+
'name' => __( 'Download', 'be-woocommerce-pdf-invoices' ),
|
95 |
'value' => 'download'
|
96 |
),
|
97 |
array(
|
98 |
+
'name' => __( 'Open in new browser tab/window', 'be-woocommerce-pdf-invoices' ),
|
99 |
'value' => 'browser'
|
100 |
)
|
101 |
),
|
104 |
array(
|
105 |
'id' => 'bewpi-email-type',
|
106 |
'name' => $this->prefix . 'email_type',
|
107 |
+
'title' => __( 'Attach to Email', 'be-woocommerce-pdf-invoices' ),
|
108 |
'callback' => array( &$this, 'select_callback' ),
|
109 |
'page' => $this->settings_key,
|
110 |
'section' => 'email',
|
112 |
'desc' => '',
|
113 |
'options' => array(
|
114 |
array(
|
115 |
+
'name' => __( 'Processing order', 'be-woocommerce-pdf-invoices' ),
|
116 |
'value' => 'customer_processing_order'
|
117 |
),
|
118 |
array(
|
119 |
+
'name' => __( 'Completed order', 'be-woocommerce-pdf-invoices' ),
|
120 |
'value' => 'customer_completed_order'
|
121 |
),
|
122 |
array(
|
123 |
+
'name' => __( 'Customer invoice', 'be-woocommerce-pdf-invoices' ),
|
124 |
'value' => 'customer_invoice'
|
125 |
),
|
126 |
array(
|
127 |
+
'name' => __( 'Do not attach', 'be-woocommerce-pdf-invoices' ),
|
128 |
'value' => ''
|
129 |
)
|
130 |
),
|
138 |
'page' => $this->settings_key,
|
139 |
'section' => 'email',
|
140 |
'type' => 'checkbox',
|
141 |
+
'desc' => __( 'Attach to New order Email', 'be-woocommerce-pdf-invoices' ),
|
142 |
'class' => 'bewpi-checkbox-option-title',
|
143 |
'default' => 0
|
144 |
),
|
150 |
'page' => $this->settings_key,
|
151 |
'section' => 'cloud_storage',
|
152 |
'type' => 'checkbox',
|
153 |
+
'desc' => __( 'Enable Email It In', 'be-woocommerce-pdf-invoices' ),
|
154 |
'class' => 'bewpi-checkbox-option-title',
|
155 |
'default' => 0
|
156 |
),
|
158 |
array(
|
159 |
'id' => 'bewpi-email-it-in-account',
|
160 |
'name' => $this->prefix . 'email_it_in_account',
|
161 |
+
'title' => __( 'Email It In account', 'be-woocommerce-pdf-invoices' ),
|
162 |
'callback' => array( &$this, 'input_callback' ),
|
163 |
'page' => $this->settings_key,
|
164 |
'section' => 'cloud_storage',
|
165 |
'type' => 'text',
|
166 |
+
'desc' => sprintf( __( 'Get your account from your Email It In %suser account%s.', 'be-woocommerce-pdf-invoices' ), '<a href="https://www.emailitin.com/user_account">', '</a>' ),
|
167 |
'default' => ''
|
168 |
)
|
169 |
);
|
177 |
private function add_settings_sections() {
|
178 |
add_settings_section(
|
179 |
'email',
|
180 |
+
__( 'Email Options', 'be-woocommerce-pdf-invoices' ),
|
181 |
array( &$this, 'email_desc_callback' ),
|
182 |
$this->settings_key
|
183 |
);
|
184 |
add_settings_section(
|
185 |
'cloud_storage',
|
186 |
+
__( 'Cloud Storage Options', 'be-woocommerce-pdf-invoices' ),
|
187 |
array( &$this, 'cloud_storage_desc_callback' ),
|
188 |
$this->settings_key
|
189 |
);
|
190 |
}
|
191 |
|
192 |
public function email_desc_callback() { }
|
193 |
+
public function cloud_storage_desc_callback() { printf( __( 'Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or Egnyte and enter your account below.', 'be-woocommerce-pdf-invoices' ), '<a href="https://emailitin.com">Email It In</a>' ); }
|
194 |
|
195 |
/**
|
196 |
* Adds settings fields
|
includes/admin/settings/class-bewpi-admin-settings-template.php
CHANGED
@@ -85,7 +85,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
85 |
array(
|
86 |
'id' => 'bewpi-template-name',
|
87 |
'name' => $this->prefix . 'template_name',
|
88 |
-
'title' => __( 'Template',
|
89 |
'callback' => array( &$this, 'select_callback' ),
|
90 |
'page' => $this->settings_key,
|
91 |
'section' => 'general',
|
@@ -97,7 +97,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
97 |
array(
|
98 |
'id' => 'bewpi-color-theme',
|
99 |
'name' => $this->prefix . 'color_theme',
|
100 |
-
'title' => __( 'Color theme',
|
101 |
'callback' => array( &$this, 'input_callback' ),
|
102 |
'page' => $this->settings_key,
|
103 |
'section' => 'general',
|
@@ -108,12 +108,12 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
108 |
array(
|
109 |
'id' => 'bewpi-date-format',
|
110 |
'name' => $this->prefix . 'date_format',
|
111 |
-
'title' => __( 'Date format',
|
112 |
'callback' => array( &$this, 'input_callback' ),
|
113 |
'page' => $this->settings_key,
|
114 |
'section' => 'general',
|
115 |
'type' => 'text',
|
116 |
-
'desc' => sprintf( __( '%sFormat%s of invoice date and order date.',
|
117 |
'<a href="http://php.net/manual/en/datetime.formats.date.php">', '</a>' ), // F jS Y or d.m.y or d-m-Y
|
118 |
'default' => 'F j, Y',
|
119 |
'attrs' => array(
|
@@ -128,8 +128,8 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
128 |
'page' => $this->settings_key,
|
129 |
'section' => 'general',
|
130 |
'type' => 'checkbox',
|
131 |
-
'desc' => __( 'Display prices including tax',
|
132 |
-
. "<br/><div class='bewpi-notes'>" . __( 'Line item totals will be including tax. <br/><b>Note</b>: Subtotal will still be excluding tax, so disable it within the visible columns section.',
|
133 |
'class' => 'bewpi-checkbox-option-title',
|
134 |
'default' => 0
|
135 |
),
|
@@ -141,8 +141,8 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
141 |
'page' => $this->settings_key,
|
142 |
'section' => 'general',
|
143 |
'type' => 'checkbox',
|
144 |
-
'desc' => __( 'Shipping taxable',
|
145 |
-
. "<br/><div class='bewpi-notes'>" . __( 'Enable to display subtotal including shipping.',
|
146 |
'class' => 'bewpi-checkbox-option-title',
|
147 |
'default' => 0
|
148 |
),
|
@@ -154,8 +154,8 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
154 |
'page' => $this->settings_key,
|
155 |
'section' => 'general',
|
156 |
'type' => 'checkbox',
|
157 |
-
'desc' => __( 'Mark invoice as paid',
|
158 |
-
. "<br/><div class='bewpi-notes'>" . __( 'Invoice will be watermarked when order has been paid.',
|
159 |
'class' => 'bewpi-checkbox-option-title',
|
160 |
'default' => 0
|
161 |
),
|
@@ -163,7 +163,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
163 |
array(
|
164 |
'id' => 'bewpi-company-name',
|
165 |
'name' => $this->prefix . 'company_name',
|
166 |
-
'title' => __( 'Company name',
|
167 |
'callback' => array( &$this, 'input_callback' ),
|
168 |
'page' => $this->settings_key,
|
169 |
'section' => 'header',
|
@@ -174,7 +174,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
174 |
array(
|
175 |
'id' => 'bewpi-company-logo',
|
176 |
'name' => $this->prefix . 'company_logo',
|
177 |
-
'title' => __( 'Company logo',
|
178 |
'callback' => array( &$this, 'logo_callback' ),
|
179 |
'page' => $this->settings_key,
|
180 |
'section' => 'header',
|
@@ -185,36 +185,36 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
185 |
array(
|
186 |
'id' => 'bewpi-company-address',
|
187 |
'name' => $this->prefix . 'company_address',
|
188 |
-
'title' => __( 'Company address',
|
189 |
'callback' => array( &$this, 'textarea_callback' ),
|
190 |
'page' => $this->settings_key,
|
191 |
'section' => 'header',
|
192 |
'type' => 'text',
|
193 |
-
'desc' => __( 'Displayed in upper-right corner near logo.',
|
194 |
'default' => ''
|
195 |
),
|
196 |
array(
|
197 |
'id' => 'bewpi-company-details',
|
198 |
'name' => $this->prefix . 'company_details',
|
199 |
-
'title' => __( 'Company details',
|
200 |
'callback' => array( &$this, 'textarea_callback' ),
|
201 |
'page' => $this->settings_key,
|
202 |
'section' => 'header',
|
203 |
'type' => 'text',
|
204 |
-
'desc' => __( 'Displayed below company address.',
|
205 |
'default' => ''
|
206 |
),
|
207 |
// Body
|
208 |
array(
|
209 |
'id' => 'bewpi-intro-text',
|
210 |
'name' => $this->prefix . 'intro_text',
|
211 |
-
'title' => __( 'Thank you text',
|
212 |
'callback' => array( &$this, 'textarea_callback' ),
|
213 |
'page' => $this->settings_key,
|
214 |
'section' => 'header',
|
215 |
'type' => 'text',
|
216 |
-
'desc' => __( 'Displayed in big colored bar directly after invoice total.',
|
217 |
-
'default' => __( 'Thank you for your purchase!',
|
218 |
),
|
219 |
array(
|
220 |
'id' => 'bewpi-show-customer-notes',
|
@@ -224,49 +224,49 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
224 |
'page' => $this->settings_key,
|
225 |
'section' => 'body',
|
226 |
'type' => 'checkbox',
|
227 |
-
'desc' => __( 'Show customer notes',
|
228 |
'class' => 'bewpi-checkbox-option-title',
|
229 |
'default' => 1
|
230 |
),
|
231 |
array(
|
232 |
'id' => 'bewpi-terms',
|
233 |
'name' => $this->prefix . 'terms',
|
234 |
-
'title' => __( 'Terms & conditions, policies etc.',
|
235 |
'callback' => array( &$this, 'textarea_callback' ),
|
236 |
'page' => $this->settings_key,
|
237 |
'section' => 'body',
|
238 |
'type' => 'text',
|
239 |
-
'desc' => sprintf( __( 'Displayed below customer notes and above footer. Want to attach additional pages to the invoice? Take a look at the <a href="%s">Premium</a> plugin.',
|
240 |
-
'default' => __( 'Items will be shipped within 2 days.',
|
241 |
),
|
242 |
// Footer
|
243 |
array(
|
244 |
'id' => 'bewpi-left-footer-column',
|
245 |
'name' => $this->prefix . 'left_footer_column',
|
246 |
-
'title' => __( 'Left footer column.',
|
247 |
'callback' => array( &$this, 'textarea_callback' ),
|
248 |
'page' => $this->settings_key,
|
249 |
'section' => 'footer',
|
250 |
'type' => 'text',
|
251 |
'desc' => '',
|
252 |
-
'default' => sprintf( __( '<b>Payment method</b> %s',
|
253 |
),
|
254 |
array(
|
255 |
'id' => 'bewpi-right-footer-column',
|
256 |
'name' => $this->prefix . 'right_footer_column',
|
257 |
-
'title' => __( 'Right footer column.',
|
258 |
'callback' => array( &$this, 'textarea_callback' ),
|
259 |
'page' => $this->settings_key,
|
260 |
'section' => 'footer',
|
261 |
'type' => 'text',
|
262 |
-
'desc' => __( 'Leave empty to show page numbering.',
|
263 |
'default' => ''
|
264 |
),
|
265 |
// Invoice number section
|
266 |
array(
|
267 |
'id' => 'bewpi-invoice-number-type',
|
268 |
'name' => $this->prefix . 'invoice_number_type',
|
269 |
-
'title' => __( 'Type',
|
270 |
'callback' => array( &$this, 'select_callback' ),
|
271 |
'page' => $this->settings_key,
|
272 |
'section' => 'invoice_number',
|
@@ -274,11 +274,11 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
274 |
'desc' => '',
|
275 |
'options' => array(
|
276 |
array(
|
277 |
-
'name' => __( 'WooCommerce order number',
|
278 |
'value' => 'woocommerce_order_number'
|
279 |
),
|
280 |
array(
|
281 |
-
'name' => __( 'Sequential number',
|
282 |
'value' => 'sequential_number'
|
283 |
)
|
284 |
),
|
@@ -292,7 +292,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
292 |
'page' => $this->settings_key,
|
293 |
'section' => 'invoice_number',
|
294 |
'type' => 'checkbox',
|
295 |
-
'desc' => __( 'Reset invoice counter',
|
296 |
'class' => 'bewpi-checkbox-option-title',
|
297 |
'default' => 0,
|
298 |
'attrs' => array(
|
@@ -302,12 +302,12 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
302 |
array(
|
303 |
'id' => 'bewpi-next-invoice-number',
|
304 |
'name' => $this->prefix . 'next_invoice_number',
|
305 |
-
'title' => __( 'Next',
|
306 |
'callback' => array( &$this, 'input_callback' ),
|
307 |
'page' => $this->settings_key,
|
308 |
'section' => 'invoice_number',
|
309 |
'type' => 'number',
|
310 |
-
'desc' => __( 'Reset the invoice counter and start counting from given invoice number.<br/><b>Note:</b> Only available for Sequential numbering and value will be editable by selecting checkbox. Next number needs to be lower then highest existing invoice number or delete invoices first.',
|
311 |
'default' => 1,
|
312 |
'attrs' => array(
|
313 |
'disabled',
|
@@ -317,7 +317,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
317 |
array(
|
318 |
'id' => 'bewpi-invoice-number-digits',
|
319 |
'name' => $this->prefix . 'invoice_number_digits',
|
320 |
-
'title' => __( 'Digits',
|
321 |
'callback' => array( &$this, 'input_callback' ),
|
322 |
'page' => $this->settings_key,
|
323 |
'section' => 'invoice_number',
|
@@ -333,7 +333,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
333 |
array(
|
334 |
'id' => 'bewpi-invoice-number-prefix',
|
335 |
'name' => $this->prefix . 'invoice_number_prefix',
|
336 |
-
'title' => __( '[prefix]',
|
337 |
'callback' => array( &$this, 'input_callback' ),
|
338 |
'page' => $this->settings_key,
|
339 |
'section' => 'invoice_number',
|
@@ -344,7 +344,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
344 |
array(
|
345 |
'id' => 'bewpi-invoice-number-suffix',
|
346 |
'name' => $this->prefix . 'invoice_number_suffix',
|
347 |
-
'title' => __( '[suffix]',
|
348 |
'callback' => array( &$this, 'input_callback' ),
|
349 |
'page' => $this->settings_key,
|
350 |
'section' => 'invoice_number',
|
@@ -355,12 +355,12 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
355 |
array(
|
356 |
'id' => 'bewpi-invoice-number-format',
|
357 |
'name' => $this->prefix . 'invoice_number_format',
|
358 |
-
'title' => __( 'Format',
|
359 |
'callback' => array( &$this, 'input_callback' ),
|
360 |
'page' => $this->settings_key,
|
361 |
'section' => 'invoice_number',
|
362 |
'type' => 'text',
|
363 |
-
'desc' => sprintf( __( 'Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and slashes aren\'t supported.',
|
364 |
'default' => '[number]-[Y]',
|
365 |
'attrs' => array(
|
366 |
'required'
|
@@ -374,7 +374,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
374 |
'page' => $this->settings_key,
|
375 |
'section' => 'invoice_number',
|
376 |
'type' => 'checkbox',
|
377 |
-
'desc' => __( 'Reset on 1st of january',
|
378 |
'class' => 'bewpi-checkbox-option-title',
|
379 |
'default' => 1
|
380 |
),
|
@@ -387,7 +387,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
387 |
'page' => $this->settings_key,
|
388 |
'section' => 'visible_columns',
|
389 |
'type' => 'checkbox',
|
390 |
-
'desc' => __( 'SKU',
|
391 |
'class' => 'bewpi-checkbox-option-title',
|
392 |
'default' => 0
|
393 |
),
|
@@ -399,7 +399,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
399 |
'page' => $this->settings_key,
|
400 |
'section' => 'visible_columns',
|
401 |
'type' => 'checkbox',
|
402 |
-
'desc' => __( 'Subtotal',
|
403 |
'class' => 'bewpi-checkbox-option-title',
|
404 |
'default' => 1
|
405 |
),
|
@@ -411,7 +411,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
411 |
'page' => $this->settings_key,
|
412 |
'section' => 'visible_columns',
|
413 |
'type' => 'checkbox',
|
414 |
-
'desc' => __( 'Tax (item)',
|
415 |
'class' => 'bewpi-checkbox-option-title',
|
416 |
'default' => 0
|
417 |
),
|
@@ -423,7 +423,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
423 |
'page' => $this->settings_key,
|
424 |
'section' => 'visible_columns',
|
425 |
'type' => 'checkbox',
|
426 |
-
'desc' => __( 'Tax (total)',
|
427 |
'class' => 'bewpi-checkbox-option-title',
|
428 |
'default' => 1
|
429 |
),
|
@@ -435,7 +435,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
435 |
'page' => $this->settings_key,
|
436 |
'section' => 'visible_columns',
|
437 |
'type' => 'checkbox',
|
438 |
-
'desc' => __( 'Discount',
|
439 |
'class' => 'bewpi-checkbox-option-title',
|
440 |
'default' => 1
|
441 |
),
|
@@ -447,7 +447,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
447 |
'page' => $this->settings_key,
|
448 |
'section' => 'visible_columns',
|
449 |
'type' => 'checkbox',
|
450 |
-
'desc' => __( 'Shipping',
|
451 |
'class' => 'bewpi-checkbox-option-title',
|
452 |
'default' => 1
|
453 |
)
|
@@ -461,52 +461,52 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
461 |
private function add_settings_sections() {
|
462 |
add_settings_section(
|
463 |
'general',
|
464 |
-
__( 'General Options',
|
465 |
array( &$this, 'general_desc_callback' ),
|
466 |
$this->settings_key
|
467 |
);
|
468 |
add_settings_section(
|
469 |
'invoice_number',
|
470 |
-
__( 'Invoice Number Options',
|
471 |
array( &$this, 'invoice_number_desc_callback' ),
|
472 |
$this->settings_key
|
473 |
);
|
474 |
add_settings_section(
|
475 |
'header',
|
476 |
-
__( 'Header Options',
|
477 |
array( &$this, 'header_desc_callback' ),
|
478 |
$this->settings_key
|
479 |
);
|
480 |
add_settings_section(
|
481 |
'body',
|
482 |
-
__( 'Body Options',
|
483 |
array( &$this, 'body_desc_callback' ),
|
484 |
$this->settings_key
|
485 |
);
|
486 |
add_settings_section(
|
487 |
'footer',
|
488 |
-
__( 'Footer Options',
|
489 |
array( &$this, 'footer_desc_callback' ),
|
490 |
$this->settings_key
|
491 |
);
|
492 |
add_settings_section(
|
493 |
'visible_columns',
|
494 |
-
__( 'Visible Columns',
|
495 |
array( &$this, 'visible_columns_desc_callback' ),
|
496 |
$this->settings_key
|
497 |
);
|
498 |
}
|
499 |
|
500 |
-
public function general_desc_callback() { _e( 'These are the general template options.',
|
501 |
-
public function invoice_number_desc_callback() { _e( 'These are the invoice number options.',
|
502 |
-
public function header_desc_callback() { _e( 'The header will be visible on every page. ' . $this->get_allowed_tags_str(),
|
503 |
public function body_desc_callback() { }
|
504 |
|
505 |
public function footer_desc_callback() {
|
506 |
-
echo __( 'The footer will be visible on every page.',
|
507 |
}
|
508 |
|
509 |
-
public function visible_columns_desc_callback() { _e( 'Enable or disable the columns.',
|
510 |
|
511 |
/**
|
512 |
* Adds all settings fields.
|
@@ -576,14 +576,14 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
576 |
add_settings_error(
|
577 |
esc_attr( $this->settings_key ),
|
578 |
'file-invalid-2',
|
579 |
-
__( 'File is invalid and contains either \'..\' or \'./\'.',
|
580 |
);
|
581 |
break;
|
582 |
case 2:
|
583 |
add_settings_error(
|
584 |
esc_attr( $this->settings_key ),
|
585 |
'file-invalid-3',
|
586 |
-
__( 'File is invalid and contains \':\' after the first character.',
|
587 |
);
|
588 |
break;
|
589 |
}
|
@@ -592,7 +592,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
592 |
add_settings_error(
|
593 |
esc_attr( $this->settings_key ),
|
594 |
'file-invalid-1',
|
595 |
-
__( 'File should be less then 2MB.',
|
596 |
);
|
597 |
}
|
598 |
} else if ( isset( $_POST['bewpi_company_logo'] ) && !empty( $_POST['bewpi_company_logo'] ) ) {
|
85 |
array(
|
86 |
'id' => 'bewpi-template-name',
|
87 |
'name' => $this->prefix . 'template_name',
|
88 |
+
'title' => __( 'Template', 'be-woocommerce-pdf-invoices' ),
|
89 |
'callback' => array( &$this, 'select_callback' ),
|
90 |
'page' => $this->settings_key,
|
91 |
'section' => 'general',
|
97 |
array(
|
98 |
'id' => 'bewpi-color-theme',
|
99 |
'name' => $this->prefix . 'color_theme',
|
100 |
+
'title' => __( 'Color theme', 'be-woocommerce-pdf-invoices' ),
|
101 |
'callback' => array( &$this, 'input_callback' ),
|
102 |
'page' => $this->settings_key,
|
103 |
'section' => 'general',
|
108 |
array(
|
109 |
'id' => 'bewpi-date-format',
|
110 |
'name' => $this->prefix . 'date_format',
|
111 |
+
'title' => __( 'Date format', 'be-woocommerce-pdf-invoices' ),
|
112 |
'callback' => array( &$this, 'input_callback' ),
|
113 |
'page' => $this->settings_key,
|
114 |
'section' => 'general',
|
115 |
'type' => 'text',
|
116 |
+
'desc' => sprintf( __( '%sFormat%s of invoice date and order date.', 'be-woocommerce-pdf-invoices' ),
|
117 |
'<a href="http://php.net/manual/en/datetime.formats.date.php">', '</a>' ), // F jS Y or d.m.y or d-m-Y
|
118 |
'default' => 'F j, Y',
|
119 |
'attrs' => array(
|
128 |
'page' => $this->settings_key,
|
129 |
'section' => 'general',
|
130 |
'type' => 'checkbox',
|
131 |
+
'desc' => __( 'Display prices including tax', 'be-woocommerce-pdf-invoices' )
|
132 |
+
. "<br/><div class='bewpi-notes'>" . __( 'Line item totals will be including tax. <br/><b>Note</b>: Subtotal will still be excluding tax, so disable it within the visible columns section.', 'be-woocommerce-pdf-invoices' ) . "</div>",
|
133 |
'class' => 'bewpi-checkbox-option-title',
|
134 |
'default' => 0
|
135 |
),
|
141 |
'page' => $this->settings_key,
|
142 |
'section' => 'general',
|
143 |
'type' => 'checkbox',
|
144 |
+
'desc' => __( 'Shipping taxable', 'be-woocommerce-pdf-invoices' )
|
145 |
+
. "<br/><div class='bewpi-notes'>" . __( 'Enable to display subtotal including shipping.', 'be-woocommerce-pdf-invoices' ) . "</div>",
|
146 |
'class' => 'bewpi-checkbox-option-title',
|
147 |
'default' => 0
|
148 |
),
|
154 |
'page' => $this->settings_key,
|
155 |
'section' => 'general',
|
156 |
'type' => 'checkbox',
|
157 |
+
'desc' => __( 'Mark invoice as paid', 'be-woocommerce-pdf-invoices' )
|
158 |
+
. "<br/><div class='bewpi-notes'>" . __( 'Invoice will be watermarked when order has been paid.', 'be-woocommerce-pdf-invoices' ) . "</div>",
|
159 |
'class' => 'bewpi-checkbox-option-title',
|
160 |
'default' => 0
|
161 |
),
|
163 |
array(
|
164 |
'id' => 'bewpi-company-name',
|
165 |
'name' => $this->prefix . 'company_name',
|
166 |
+
'title' => __( 'Company name', 'be-woocommerce-pdf-invoices' ),
|
167 |
'callback' => array( &$this, 'input_callback' ),
|
168 |
'page' => $this->settings_key,
|
169 |
'section' => 'header',
|
174 |
array(
|
175 |
'id' => 'bewpi-company-logo',
|
176 |
'name' => $this->prefix . 'company_logo',
|
177 |
+
'title' => __( 'Company logo', 'be-woocommerce-pdf-invoices' ),
|
178 |
'callback' => array( &$this, 'logo_callback' ),
|
179 |
'page' => $this->settings_key,
|
180 |
'section' => 'header',
|
185 |
array(
|
186 |
'id' => 'bewpi-company-address',
|
187 |
'name' => $this->prefix . 'company_address',
|
188 |
+
'title' => __( 'Company address', 'be-woocommerce-pdf-invoices' ),
|
189 |
'callback' => array( &$this, 'textarea_callback' ),
|
190 |
'page' => $this->settings_key,
|
191 |
'section' => 'header',
|
192 |
'type' => 'text',
|
193 |
+
'desc' => __( 'Displayed in upper-right corner near logo.', 'be-woocommerce-pdf-invoices' ),
|
194 |
'default' => ''
|
195 |
),
|
196 |
array(
|
197 |
'id' => 'bewpi-company-details',
|
198 |
'name' => $this->prefix . 'company_details',
|
199 |
+
'title' => __( 'Company details', 'be-woocommerce-pdf-invoices' ),
|
200 |
'callback' => array( &$this, 'textarea_callback' ),
|
201 |
'page' => $this->settings_key,
|
202 |
'section' => 'header',
|
203 |
'type' => 'text',
|
204 |
+
'desc' => __( 'Displayed below company address.', 'be-woocommerce-pdf-invoices' ),
|
205 |
'default' => ''
|
206 |
),
|
207 |
// Body
|
208 |
array(
|
209 |
'id' => 'bewpi-intro-text',
|
210 |
'name' => $this->prefix . 'intro_text',
|
211 |
+
'title' => __( 'Thank you text', 'be-woocommerce-pdf-invoices' ),
|
212 |
'callback' => array( &$this, 'textarea_callback' ),
|
213 |
'page' => $this->settings_key,
|
214 |
'section' => 'header',
|
215 |
'type' => 'text',
|
216 |
+
'desc' => __( 'Displayed in big colored bar directly after invoice total.', 'be-woocommerce-pdf-invoices' ),
|
217 |
+
'default' => __( 'Thank you for your purchase!', 'be-woocommerce-pdf-invoices' )
|
218 |
),
|
219 |
array(
|
220 |
'id' => 'bewpi-show-customer-notes',
|
224 |
'page' => $this->settings_key,
|
225 |
'section' => 'body',
|
226 |
'type' => 'checkbox',
|
227 |
+
'desc' => __( 'Show customer notes', 'be-woocommerce-pdf-invoices' ),
|
228 |
'class' => 'bewpi-checkbox-option-title',
|
229 |
'default' => 1
|
230 |
),
|
231 |
array(
|
232 |
'id' => 'bewpi-terms',
|
233 |
'name' => $this->prefix . 'terms',
|
234 |
+
'title' => __( 'Terms & conditions, policies etc.', 'be-woocommerce-pdf-invoices' ),
|
235 |
'callback' => array( &$this, 'textarea_callback' ),
|
236 |
'page' => $this->settings_key,
|
237 |
'section' => 'body',
|
238 |
'type' => 'text',
|
239 |
+
'desc' => sprintf( __( 'Displayed below customer notes and above footer. Want to attach additional pages to the invoice? Take a look at the <a href="%s">Premium</a> plugin.', 'be-woocommerce-pdf-invoices' ), 'http://wcpdfinvoices.com' ),
|
240 |
+
'default' => __( 'Items will be shipped within 2 days.', 'be-woocommerce-pdf-invoices' )
|
241 |
),
|
242 |
// Footer
|
243 |
array(
|
244 |
'id' => 'bewpi-left-footer-column',
|
245 |
'name' => $this->prefix . 'left_footer_column',
|
246 |
+
'title' => __( 'Left footer column.', 'be-woocommerce-pdf-invoices' ),
|
247 |
'callback' => array( &$this, 'textarea_callback' ),
|
248 |
'page' => $this->settings_key,
|
249 |
'section' => 'footer',
|
250 |
'type' => 'text',
|
251 |
'desc' => '',
|
252 |
+
'default' => sprintf( __( '<b>Payment method</b> %s', 'be-woocommerce-pdf-invoices' ), '[payment_method]' )
|
253 |
),
|
254 |
array(
|
255 |
'id' => 'bewpi-right-footer-column',
|
256 |
'name' => $this->prefix . 'right_footer_column',
|
257 |
+
'title' => __( 'Right footer column.', 'be-woocommerce-pdf-invoices' ),
|
258 |
'callback' => array( &$this, 'textarea_callback' ),
|
259 |
'page' => $this->settings_key,
|
260 |
'section' => 'footer',
|
261 |
'type' => 'text',
|
262 |
+
'desc' => __( 'Leave empty to show page numbering.', 'be-woocommerce-pdf-invoices' ),
|
263 |
'default' => ''
|
264 |
),
|
265 |
// Invoice number section
|
266 |
array(
|
267 |
'id' => 'bewpi-invoice-number-type',
|
268 |
'name' => $this->prefix . 'invoice_number_type',
|
269 |
+
'title' => __( 'Type', 'be-woocommerce-pdf-invoices' ),
|
270 |
'callback' => array( &$this, 'select_callback' ),
|
271 |
'page' => $this->settings_key,
|
272 |
'section' => 'invoice_number',
|
274 |
'desc' => '',
|
275 |
'options' => array(
|
276 |
array(
|
277 |
+
'name' => __( 'WooCommerce order number', 'be-woocommerce-pdf-invoices' ),
|
278 |
'value' => 'woocommerce_order_number'
|
279 |
),
|
280 |
array(
|
281 |
+
'name' => __( 'Sequential number', 'be-woocommerce-pdf-invoices' ),
|
282 |
'value' => 'sequential_number'
|
283 |
)
|
284 |
),
|
292 |
'page' => $this->settings_key,
|
293 |
'section' => 'invoice_number',
|
294 |
'type' => 'checkbox',
|
295 |
+
'desc' => __( 'Reset invoice counter', 'be-woocommerce-pdf-invoices' ),
|
296 |
'class' => 'bewpi-checkbox-option-title',
|
297 |
'default' => 0,
|
298 |
'attrs' => array(
|
302 |
array(
|
303 |
'id' => 'bewpi-next-invoice-number',
|
304 |
'name' => $this->prefix . 'next_invoice_number',
|
305 |
+
'title' => __( 'Next', 'be-woocommerce-pdf-invoices' ),
|
306 |
'callback' => array( &$this, 'input_callback' ),
|
307 |
'page' => $this->settings_key,
|
308 |
'section' => 'invoice_number',
|
309 |
'type' => 'number',
|
310 |
+
'desc' => __( 'Reset the invoice counter and start counting from given invoice number.<br/><b>Note:</b> Only available for Sequential numbering and value will be editable by selecting checkbox. Next number needs to be lower then highest existing invoice number or delete invoices first.', 'be-woocommerce-pdf-invoices' ),
|
311 |
'default' => 1,
|
312 |
'attrs' => array(
|
313 |
'disabled',
|
317 |
array(
|
318 |
'id' => 'bewpi-invoice-number-digits',
|
319 |
'name' => $this->prefix . 'invoice_number_digits',
|
320 |
+
'title' => __( 'Digits', 'be-woocommerce-pdf-invoices' ),
|
321 |
'callback' => array( &$this, 'input_callback' ),
|
322 |
'page' => $this->settings_key,
|
323 |
'section' => 'invoice_number',
|
333 |
array(
|
334 |
'id' => 'bewpi-invoice-number-prefix',
|
335 |
'name' => $this->prefix . 'invoice_number_prefix',
|
336 |
+
'title' => __( '[prefix]', 'be-woocommerce-pdf-invoices' ),
|
337 |
'callback' => array( &$this, 'input_callback' ),
|
338 |
'page' => $this->settings_key,
|
339 |
'section' => 'invoice_number',
|
344 |
array(
|
345 |
'id' => 'bewpi-invoice-number-suffix',
|
346 |
'name' => $this->prefix . 'invoice_number_suffix',
|
347 |
+
'title' => __( '[suffix]', 'be-woocommerce-pdf-invoices' ),
|
348 |
'callback' => array( &$this, 'input_callback' ),
|
349 |
'page' => $this->settings_key,
|
350 |
'section' => 'invoice_number',
|
355 |
array(
|
356 |
'id' => 'bewpi-invoice-number-format',
|
357 |
'name' => $this->prefix . 'invoice_number_format',
|
358 |
+
'title' => __( 'Format', 'be-woocommerce-pdf-invoices' ),
|
359 |
'callback' => array( &$this, 'input_callback' ),
|
360 |
'page' => $this->settings_key,
|
361 |
'section' => 'invoice_number',
|
362 |
'type' => 'text',
|
363 |
+
'desc' => sprintf( __( 'Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and slashes aren\'t supported.', 'be-woocommerce-pdf-invoices' ), '<code>[prefix]</code>', '<code>[suffix]</code>', '<code>[number]</code>', '<code>[m]</code>', '<code>[Y]</code>', '<code>[y]</code>', '<b>', '</b>', '<code>[number]</code>' ),
|
364 |
'default' => '[number]-[Y]',
|
365 |
'attrs' => array(
|
366 |
'required'
|
374 |
'page' => $this->settings_key,
|
375 |
'section' => 'invoice_number',
|
376 |
'type' => 'checkbox',
|
377 |
+
'desc' => __( 'Reset on 1st of january', 'be-woocommerce-pdf-invoices' ),
|
378 |
'class' => 'bewpi-checkbox-option-title',
|
379 |
'default' => 1
|
380 |
),
|
387 |
'page' => $this->settings_key,
|
388 |
'section' => 'visible_columns',
|
389 |
'type' => 'checkbox',
|
390 |
+
'desc' => __( 'SKU', 'be-woocommerce-pdf-invoices' ),
|
391 |
'class' => 'bewpi-checkbox-option-title',
|
392 |
'default' => 0
|
393 |
),
|
399 |
'page' => $this->settings_key,
|
400 |
'section' => 'visible_columns',
|
401 |
'type' => 'checkbox',
|
402 |
+
'desc' => __( 'Subtotal', 'be-woocommerce-pdf-invoices' ),
|
403 |
'class' => 'bewpi-checkbox-option-title',
|
404 |
'default' => 1
|
405 |
),
|
411 |
'page' => $this->settings_key,
|
412 |
'section' => 'visible_columns',
|
413 |
'type' => 'checkbox',
|
414 |
+
'desc' => __( 'Tax (item)', 'be-woocommerce-pdf-invoices' ),
|
415 |
'class' => 'bewpi-checkbox-option-title',
|
416 |
'default' => 0
|
417 |
),
|
423 |
'page' => $this->settings_key,
|
424 |
'section' => 'visible_columns',
|
425 |
'type' => 'checkbox',
|
426 |
+
'desc' => __( 'Tax (total)', 'be-woocommerce-pdf-invoices' ),
|
427 |
'class' => 'bewpi-checkbox-option-title',
|
428 |
'default' => 1
|
429 |
),
|
435 |
'page' => $this->settings_key,
|
436 |
'section' => 'visible_columns',
|
437 |
'type' => 'checkbox',
|
438 |
+
'desc' => __( 'Discount', 'be-woocommerce-pdf-invoices' ),
|
439 |
'class' => 'bewpi-checkbox-option-title',
|
440 |
'default' => 1
|
441 |
),
|
447 |
'page' => $this->settings_key,
|
448 |
'section' => 'visible_columns',
|
449 |
'type' => 'checkbox',
|
450 |
+
'desc' => __( 'Shipping', 'be-woocommerce-pdf-invoices' ),
|
451 |
'class' => 'bewpi-checkbox-option-title',
|
452 |
'default' => 1
|
453 |
)
|
461 |
private function add_settings_sections() {
|
462 |
add_settings_section(
|
463 |
'general',
|
464 |
+
__( 'General Options', 'be-woocommerce-pdf-invoices' ),
|
465 |
array( &$this, 'general_desc_callback' ),
|
466 |
$this->settings_key
|
467 |
);
|
468 |
add_settings_section(
|
469 |
'invoice_number',
|
470 |
+
__( 'Invoice Number Options', 'be-woocommerce-pdf-invoices' ),
|
471 |
array( &$this, 'invoice_number_desc_callback' ),
|
472 |
$this->settings_key
|
473 |
);
|
474 |
add_settings_section(
|
475 |
'header',
|
476 |
+
__( 'Header Options', 'be-woocommerce-pdf-invoices' ),
|
477 |
array( &$this, 'header_desc_callback' ),
|
478 |
$this->settings_key
|
479 |
);
|
480 |
add_settings_section(
|
481 |
'body',
|
482 |
+
__( 'Body Options', 'be-woocommerce-pdf-invoices' ),
|
483 |
array( &$this, 'body_desc_callback' ),
|
484 |
$this->settings_key
|
485 |
);
|
486 |
add_settings_section(
|
487 |
'footer',
|
488 |
+
__( 'Footer Options', 'be-woocommerce-pdf-invoices' ),
|
489 |
array( &$this, 'footer_desc_callback' ),
|
490 |
$this->settings_key
|
491 |
);
|
492 |
add_settings_section(
|
493 |
'visible_columns',
|
494 |
+
__( 'Visible Columns', 'be-woocommerce-pdf-invoices' ),
|
495 |
array( &$this, 'visible_columns_desc_callback' ),
|
496 |
$this->settings_key
|
497 |
);
|
498 |
}
|
499 |
|
500 |
+
public function general_desc_callback() { _e( 'These are the general template options.', 'be-woocommerce-pdf-invoices' ); }
|
501 |
+
public function invoice_number_desc_callback() { _e( 'These are the invoice number options.', 'be-woocommerce-pdf-invoices' ); }
|
502 |
+
public function header_desc_callback() { _e( 'The header will be visible on every page. ' . $this->get_allowed_tags_str(), 'be-woocommerce-pdf-invoices' ); }
|
503 |
public function body_desc_callback() { }
|
504 |
|
505 |
public function footer_desc_callback() {
|
506 |
+
echo __( 'The footer will be visible on every page.', 'be-woocommerce-pdf-invoices' ) . '<br/>' . $this->get_allowed_tags_str() . '<br/>' . __( '<b>Hint</b>: Use <code>[payment_method]</code> placeholder to display the order payment method.', 'be-woocommerce-pdf-invoices' );
|
507 |
}
|
508 |
|
509 |
+
public function visible_columns_desc_callback() { _e( 'Enable or disable the columns.', 'be-woocommerce-pdf-invoices' ); }
|
510 |
|
511 |
/**
|
512 |
* Adds all settings fields.
|
576 |
add_settings_error(
|
577 |
esc_attr( $this->settings_key ),
|
578 |
'file-invalid-2',
|
579 |
+
__( 'File is invalid and contains either \'..\' or \'./\'.', 'be-woocommerce-pdf-invoices' )
|
580 |
);
|
581 |
break;
|
582 |
case 2:
|
583 |
add_settings_error(
|
584 |
esc_attr( $this->settings_key ),
|
585 |
'file-invalid-3',
|
586 |
+
__( 'File is invalid and contains \':\' after the first character.', 'be-woocommerce-pdf-invoices' )
|
587 |
);
|
588 |
break;
|
589 |
}
|
592 |
add_settings_error(
|
593 |
esc_attr( $this->settings_key ),
|
594 |
'file-invalid-1',
|
595 |
+
__( 'File should be less then 2MB.', 'be-woocommerce-pdf-invoices' )
|
596 |
);
|
597 |
}
|
598 |
} else if ( isset( $_POST['bewpi_company_logo'] ) && !empty( $_POST['bewpi_company_logo'] ) ) {
|
includes/be-woocommerce-pdf-invoices.php
CHANGED
@@ -17,7 +17,6 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
17 |
private $lang_code = 'en-US';
|
18 |
private $options_key = 'bewpi-invoices';
|
19 |
public $settings_tabs = array();
|
20 |
-
public $textdomain = 'be-woocommerce-pdf-invoices';
|
21 |
public $general_options = array();
|
22 |
public $template_options = array();
|
23 |
|
@@ -92,6 +91,11 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
92 |
&$this,
|
93 |
'add_my_account_download_pdf_action'
|
94 |
), 10, 2 );
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
public function init() {
|
@@ -114,13 +118,6 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
114 |
self::insert_install_date();
|
115 |
}
|
116 |
|
117 |
-
function add_plugin_action_links( $links ) {
|
118 |
-
return array_merge( array(
|
119 |
-
'<a href="' . admin_url( 'admin.php?page=bewpi-invoices' ) . '">' . __( 'Settings' ) . '</a>',
|
120 |
-
'<a href="http://wcpdfinvoices.com" target="_blank">' . __( 'Premium' ) . '</a>'
|
121 |
-
), $links );
|
122 |
-
}
|
123 |
-
|
124 |
public function display_activation_admin_notice() {
|
125 |
global $pagenow;
|
126 |
if ( $pagenow != 'plugins.php' )
|
@@ -132,7 +129,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
132 |
?>
|
133 |
<div id="bewpi-plugin-activated-notice" class="updated notice is-dismissible">
|
134 |
<p>
|
135 |
-
<?php printf( __( 'Alrighty then! <a href="%s">Let\'s start configuring <strong>WooCommerce PDF Invoices</strong></a>.' ), admin_url() . 'admin.php?page=bewpi-invoices' ); ?>
|
136 |
</p>
|
137 |
<?php printf( '<a href="%1$s" class="notice-dismiss"></a>', '?bewpi_hide_activation_notice=0' ); ?>
|
138 |
</div>
|
@@ -140,6 +137,36 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
140 |
}
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
public function plugin_activation_notice_catch_hide() {
|
144 |
global $current_user;
|
145 |
$user_id = $current_user->ID;
|
@@ -187,12 +214,12 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
187 |
*/
|
188 |
public function load_textdomain() {
|
189 |
$lang_dir = (string) BEWPI_LANG_DIR;
|
190 |
-
load_plugin_textdomain(
|
191 |
}
|
192 |
|
193 |
public function init_settings_tabs() {
|
194 |
-
$this->settings_tabs['bewpi_general_settings'] = __( 'General',
|
195 |
-
$this->settings_tabs['bewpi_template_settings'] = __( 'Template',
|
196 |
|
197 |
$this->settings_tabs = apply_filters( 'bewpi_settings_tabs', $this->settings_tabs );
|
198 |
}
|
@@ -215,7 +242,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
215 |
* Adds submenu to WooCommerce menu.
|
216 |
*/
|
217 |
public function add_woocommerce_submenu_page() {
|
218 |
-
add_submenu_page( 'woocommerce', __( 'Invoices',
|
219 |
&$this,
|
220 |
'options_page'
|
221 |
) );
|
@@ -254,8 +281,8 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
254 |
<script type="text/javascript">
|
255 |
window.onload = function () {
|
256 |
// Change footer text into rate text for WPI.
|
257 |
-
document.getElementById("footer-thankyou").innerHTML = "<?php printf( __( 'If you like <strong>WooCommerce PDF Invoices</strong> please leave us a %s★★★★★%s rating. A huge thank you in advance!',
|
258 |
-
document.getElementById("footer-upgrade").innerHTML = "<?php printf( __( 'Version %s',
|
259 |
};
|
260 |
</script>
|
261 |
<div class="wrap">
|
@@ -279,19 +306,19 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
279 |
private function options_page_sidebar_html() {
|
280 |
?>
|
281 |
<aside class="bewpi_sidebar premium">
|
282 |
-
<h3><?php _e( 'WooCommerce PDF Invoices Premium',
|
283 |
<p>
|
284 |
-
<?php _e( 'This plugin offers a premium version
|
285 |
-
- <?php _e( 'Bill periodically by generating and sending global invoices.',
|
286 |
-
- <?php _e( 'Add additional PDF\'s to customer invoices.',
|
287 |
-
- <?php _e( 'Send customer invoices directly to suppliers and others.',
|
288 |
-
- <?php
|
289 |
</p>
|
290 |
-
<a class="bewpi-learn-more" href="http://wcpdfinvoices.com" target="_blank"><?php _e ( 'Learn more',
|
291 |
</aside>
|
292 |
|
293 |
<aside class="bewpi_sidebar premium">
|
294 |
-
<h3><?php _e( 'Stay up-to-date',
|
295 |
<!-- Begin MailChimp Signup Form -->
|
296 |
<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
|
297 |
<style type="text/css">
|
@@ -300,17 +327,17 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
300 |
#mc_embed_signup input.button { margin: 0 !important; }
|
301 |
</style>
|
302 |
<p>
|
303 |
-
<?php _e( 'We\'re constantly developing new features, stay up-to-date by subscribing to our newsletter.',
|
304 |
</p>
|
305 |
<div id="mc_embed_signup">
|
306 |
<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">
|
307 |
<div id="mc_embed_signup_scroll">
|
308 |
<?php $user_email = get_the_author_meta( 'user_email', get_current_user_id() ) ?>
|
309 |
-
<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',
|
310 |
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
311 |
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f270649bc41a9687a38a8977f_395e1e319a" tabindex="-1" value=""></div>
|
312 |
-
<div class="clear"><input style="width: 100%; background-color: #F48C2D; border-radius: 0; height: 37px;box-shadow: none;" type="submit" value="<?php _e( 'Signup',
|
313 |
-
<div style="font-size: 11px; text-align: center; margin-top: 1px !important;"><?php _e( 'No spam, ever. Unsubscribe at any time',
|
314 |
</div>
|
315 |
</form>
|
316 |
</div>
|
@@ -318,15 +345,15 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
318 |
</aside>
|
319 |
|
320 |
<aside class="bewpi_sidebar about">
|
321 |
-
<h3><?php _e( 'About',
|
322 |
-
<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>.' ,
|
323 |
-
<?php _e( '<b>Version</b>: ' . BEWPI_VERSION,
|
324 |
<br/>
|
325 |
-
<?php _e( '<b>Author</b>: <a href="https://github.com/baselbers">Bas Elbers</a>',
|
326 |
</aside>
|
327 |
<aside class="bewpi_sidebar support">
|
328 |
-
<h3><?php _e( 'Support',
|
329 |
-
<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>.',
|
330 |
<!-- Github star -->
|
331 |
<div class="github btn">
|
332 |
<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>
|
@@ -345,17 +372,17 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
345 |
</div>
|
346 |
<!-- Tweet -->
|
347 |
<div class="twitter btn">
|
348 |
-
<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!',
|
349 |
<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>
|
350 |
</div>
|
351 |
</aside>
|
352 |
<aside class="bewpi_sidebar need-help">
|
353 |
-
<h3><?php _e( 'Need Help?',
|
354 |
<ul>
|
355 |
-
<li><a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/faq/"><?php _e( 'Frequently Asked Questions',
|
356 |
-
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Support forum',
|
357 |
-
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Request a feature',
|
358 |
-
<li><a href="mailto:baselbers@hotmail.com"><?php _e( 'Email us',
|
359 |
</ul>
|
360 |
</aside>
|
361 |
<?php
|
@@ -410,7 +437,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
410 |
* Adds a box to the main column on the Post and Page edit screens.
|
411 |
*/
|
412 |
function add_meta_box_to_order_page() {
|
413 |
-
add_meta_box( 'order_page_create_invoice', __( 'PDF Invoice',
|
414 |
&$this,
|
415 |
'woocommerce_order_details_page_meta_box_create_invoice'
|
416 |
), 'shop_order', 'side', 'high' );
|
@@ -436,11 +463,11 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
436 |
private function show_invoice_number_info( $date, $number ) {
|
437 |
echo '<table class="invoice-info" width="100%">
|
438 |
<tr>
|
439 |
-
<td>' . __( 'Invoiced on:',
|
440 |
<td align="right"><b>' . $date . '</b></td>
|
441 |
</tr>
|
442 |
<tr>
|
443 |
-
<td>' . __( 'Invoice number:',
|
444 |
<td align="right"><b>' . $number . '</b></td>
|
445 |
</tr>
|
446 |
</table>';
|
@@ -456,9 +483,9 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
456 |
* @param array $arr
|
457 |
*/
|
458 |
private function show_invoice_button( $title, $order_id, $wpi_action, $btn_title, $arr = array() ) {
|
459 |
-
$title = __( $title,
|
460 |
$href = admin_url() . 'post.php?post=' . $order_id . '&action=edit&bewpi_action=' . $wpi_action . '&nonce=' . wp_create_nonce( $wpi_action );
|
461 |
-
$btn_title = __( $btn_title,
|
462 |
$attr = '';
|
463 |
|
464 |
foreach ( $arr as $str ) {
|
@@ -478,13 +505,13 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
478 |
|
479 |
if ( $invoice->exists() ) {
|
480 |
$this->show_invoice_number_info( $invoice->get_formatted_invoice_date(), $invoice->get_formatted_number() );
|
481 |
-
$this->show_invoice_button( __( 'View invoice',
|
482 |
-
$this->show_invoice_button( __( 'Cancel invoice',
|
483 |
'class="invoice-btn button grant_access"',
|
484 |
-
'onclick="return confirm(\'' . __( 'Are you sure to delete the invoice?',
|
485 |
) );
|
486 |
} else {
|
487 |
-
$this->show_invoice_button( __( 'Create invoice',
|
488 |
}
|
489 |
}
|
490 |
|
@@ -517,7 +544,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
517 |
$url = admin_url( 'admin-ajax.php?action=bewpi_download_invoice&order_id=' . $order->id . '&nonce=' . wp_create_nonce( 'bewpi_download_invoice' ) );
|
518 |
$actions['invoice'] = array(
|
519 |
'url' => $url,
|
520 |
-
'name' => sprintf( __( 'Invoice %s (PDF)',
|
521 |
);
|
522 |
}
|
523 |
|
@@ -628,7 +655,7 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
628 |
$query_string = '?' . http_build_query( array_merge( $query_params, array( self::OPTION_ADMIN_NOTICE_KEY => '1' ) ) );
|
629 |
|
630 |
echo '<div class="updated"><p>';
|
631 |
-
printf( __( "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We really need your ★★★★★ rating. It will support future development big-time. A huge thanks in advance and keep up the good work! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already done it!</a>" ), 'https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform', $query_string );
|
632 |
echo "</p></div>";
|
633 |
}
|
634 |
}
|
17 |
private $lang_code = 'en-US';
|
18 |
private $options_key = 'bewpi-invoices';
|
19 |
public $settings_tabs = array();
|
|
|
20 |
public $general_options = array();
|
21 |
public $template_options = array();
|
22 |
|
91 |
&$this,
|
92 |
'add_my_account_download_pdf_action'
|
93 |
), 10, 2 );
|
94 |
+
|
95 |
+
/**
|
96 |
+
* Shortcode to display invoice from view
|
97 |
+
*/
|
98 |
+
add_shortcode( 'bewpi-download-invoice', array( $this, 'bewpi_download_invoice_func' ) );
|
99 |
}
|
100 |
|
101 |
public function init() {
|
118 |
self::insert_install_date();
|
119 |
}
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
public function display_activation_admin_notice() {
|
122 |
global $pagenow;
|
123 |
if ( $pagenow != 'plugins.php' )
|
129 |
?>
|
130 |
<div id="bewpi-plugin-activated-notice" class="updated notice is-dismissible">
|
131 |
<p>
|
132 |
+
<?php printf( __( 'Alrighty then! <a href="%s">Let\'s start configuring <strong>WooCommerce PDF Invoices</strong></a>.', 'be-woocommerce-pdf-invoices' ), admin_url() . 'admin.php?page=bewpi-invoices' ); ?>
|
133 |
</p>
|
134 |
<?php printf( '<a href="%1$s" class="notice-dismiss"></a>', '?bewpi_hide_activation_notice=0' ); ?>
|
135 |
</div>
|
137 |
}
|
138 |
}
|
139 |
|
140 |
+
function add_plugin_action_links( $links ) {
|
141 |
+
return array_merge( array(
|
142 |
+
'<a href="' . admin_url( 'admin.php?page=bewpi-invoices' ) . '">' . __( 'Settings', 'be-woocommerce-pdf-invoices' ) . '</a>',
|
143 |
+
'<a href="http://wcpdfinvoices.com" target="_blank">' . __( 'Premium', 'be-woocommerce-pdf-invoices' ) . '</a>'
|
144 |
+
), $links );
|
145 |
+
}
|
146 |
+
|
147 |
+
public function bewpi_download_invoice_func( $atts ) {
|
148 |
+
$order_id = $atts[ 'order_id' ];
|
149 |
+
$title = $atts[ 'title' ];
|
150 |
+
$order = wc_get_order( $order_id );
|
151 |
+
$invoice = new BEWPI_Invoice( $order->id );
|
152 |
+
|
153 |
+
if ( $invoice->exists() && $invoice->is_download_allowed( $order->post_status ) ) {
|
154 |
+
$url = admin_url( 'admin-ajax.php?action=bewpi_download_invoice&order_id=' . $order->id . '&nonce=' . wp_create_nonce( 'bewpi_download_invoice' ) );
|
155 |
+
|
156 |
+
$tags = array (
|
157 |
+
'{formatted_invoice_number}' => $invoice->get_formatted_number(),
|
158 |
+
'{order_number}' => $order->id,
|
159 |
+
'{formatted_invoice_date}' => $invoice->get_formatted_invoice_date(),
|
160 |
+
'{formatted_order_date}' => $invoice->get_formatted_order_date()
|
161 |
+
);
|
162 |
+
foreach ( $tags as $key => $value )
|
163 |
+
$title = str_replace( $key, $value, $title );
|
164 |
+
|
165 |
+
// example: Download (PDF) Invoice [formatted_invoice_number]
|
166 |
+
echo '<a href="' . $url . '" alt="' . $title . '">' . $title . '</a>';
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
public function plugin_activation_notice_catch_hide() {
|
171 |
global $current_user;
|
172 |
$user_id = $current_user->ID;
|
214 |
*/
|
215 |
public function load_textdomain() {
|
216 |
$lang_dir = (string) BEWPI_LANG_DIR;
|
217 |
+
load_plugin_textdomain( 'be-woocommerce-pdf-invoices', false, apply_filters( 'bewpi_lang_dir', $lang_dir ) );
|
218 |
}
|
219 |
|
220 |
public function init_settings_tabs() {
|
221 |
+
$this->settings_tabs['bewpi_general_settings'] = __( 'General', 'be-woocommerce-pdf-invoices' );
|
222 |
+
$this->settings_tabs['bewpi_template_settings'] = __( 'Template', 'be-woocommerce-pdf-invoices' );
|
223 |
|
224 |
$this->settings_tabs = apply_filters( 'bewpi_settings_tabs', $this->settings_tabs );
|
225 |
}
|
242 |
* Adds submenu to WooCommerce menu.
|
243 |
*/
|
244 |
public function add_woocommerce_submenu_page() {
|
245 |
+
add_submenu_page( 'woocommerce', __( 'Invoices', 'be-woocommerce-pdf-invoices' ), __( 'Invoices', 'be-woocommerce-pdf-invoices' ), 'manage_options', $this->options_key, array(
|
246 |
&$this,
|
247 |
'options_page'
|
248 |
) );
|
281 |
<script type="text/javascript">
|
282 |
window.onload = function () {
|
283 |
// Change footer text into rate text for WPI.
|
284 |
+
document.getElementById("footer-thankyou").innerHTML = "<?php printf( __( 'If you like <strong>WooCommerce PDF Invoices</strong> please leave us a %s★★★★★%s rating. A huge thank you in advance!', 'be-woocommerce-pdf-invoices' ), '<a href=\'https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform\'>', '</a>' ); ?>";
|
285 |
+
document.getElementById("footer-upgrade").innerHTML = "<?php printf( __( 'Version %s', 'be-woocommerce-pdf-invoices' ), BEWPI_VERSION ); ?>";
|
286 |
};
|
287 |
</script>
|
288 |
<div class="wrap">
|
306 |
private function options_page_sidebar_html() {
|
307 |
?>
|
308 |
<aside class="bewpi_sidebar premium">
|
309 |
+
<h3><?php _e( 'WooCommerce PDF Invoices Premium', 'be-woocommerce-pdf-invoices' ); ?></h3>
|
310 |
<p>
|
311 |
+
<?php _e( 'This plugin offers a premium version which comes with the following features:', 'be-woocommerce-pdf-invoices' ); ?><br/>
|
312 |
+
- <?php _e( 'Bill periodically by generating and sending global invoices.', 'be-woocommerce-pdf-invoices' ); ?><br/>
|
313 |
+
- <?php _e( 'Add additional PDF\'s to customer invoices.', 'be-woocommerce-pdf-invoices' ); ?><br/>
|
314 |
+
- <?php _e( 'Send customer invoices directly to suppliers and others.', 'be-woocommerce-pdf-invoices' ); ?><br/>
|
315 |
+
- <?php printf( __( 'Compatible with <a href="%s">WooCommerce Subscriptions</a> plugin emails.', 'be-woocommerce-pdf-invoices' ), "http://www.woothemes.com/products/woocommerce-subscriptions/" ); ?><br/>
|
316 |
</p>
|
317 |
+
<a class="bewpi-learn-more" href="http://wcpdfinvoices.com" target="_blank"><?php _e ( 'Learn more', 'be-woocommerce-pdf-invoices' ); ?></a>
|
318 |
</aside>
|
319 |
|
320 |
<aside class="bewpi_sidebar premium">
|
321 |
+
<h3><?php _e( 'Stay up-to-date', 'be-woocommerce-pdf-invoices' ); ?></h3>
|
322 |
<!-- Begin MailChimp Signup Form -->
|
323 |
<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
|
324 |
<style type="text/css">
|
327 |
#mc_embed_signup input.button { margin: 0 !important; }
|
328 |
</style>
|
329 |
<p>
|
330 |
+
<?php _e( 'We\'re constantly developing new features, stay up-to-date by subscribing to our newsletter.', 'be-woocommerce-pdf-invoices' ); ?>
|
331 |
</p>
|
332 |
<div id="mc_embed_signup">
|
333 |
<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">
|
334 |
<div id="mc_embed_signup_scroll">
|
335 |
<?php $user_email = get_the_author_meta( 'user_email', get_current_user_id() ) ?>
|
336 |
+
<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', 'be-woocommerce-pdf-invoices' ); ?>" required>
|
337 |
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
338 |
<div style="position: absolute; left: -5000px;"><input type="text" name="b_f270649bc41a9687a38a8977f_395e1e319a" tabindex="-1" value=""></div>
|
339 |
+
<div class="clear"><input style="width: 100%; background-color: #F48C2D; border-radius: 0; height: 37px;box-shadow: none;" type="submit" value="<?php _e( 'Signup', 'be-woocommerce-pdf-invoices' ); ?>" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
|
340 |
+
<div style="font-size: 11px; text-align: center; margin-top: 1px !important;"><?php _e( 'No spam, ever. Unsubscribe at any time', 'be-woocommerce-pdf-invoices' ); ?></div>
|
341 |
</div>
|
342 |
</form>
|
343 |
</div>
|
345 |
</aside>
|
346 |
|
347 |
<aside class="bewpi_sidebar about">
|
348 |
+
<h3><?php _e( 'About', 'be-woocommerce-pdf-invoices' ); ?></h3>
|
349 |
+
<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>.' , 'be-woocommerce-pdf-invoices' ); ?></p>
|
350 |
+
<?php _e( '<b>Version</b>: ' . BEWPI_VERSION, 'be-woocommerce-pdf-invoices' ); ?>
|
351 |
<br/>
|
352 |
+
<?php _e( '<b>Author</b>: <a href="https://github.com/baselbers">Bas Elbers</a>', 'be-woocommerce-pdf-invoices' ); ?>
|
353 |
</aside>
|
354 |
<aside class="bewpi_sidebar support">
|
355 |
+
<h3><?php _e( 'Support', 'be-woocommerce-pdf-invoices' ); ?></h3>
|
356 |
+
<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>.', 'be-woocommerce-pdf-invoices' ); ?></p>
|
357 |
<!-- Github star -->
|
358 |
<div class="github btn">
|
359 |
<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>
|
372 |
</div>
|
373 |
<!-- Tweet -->
|
374 |
<div class="twitter btn">
|
375 |
+
<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!', 'be-woocommerce-pdf-invoices' ); ?>">Tweet</a>
|
376 |
<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>
|
377 |
</div>
|
378 |
</aside>
|
379 |
<aside class="bewpi_sidebar need-help">
|
380 |
+
<h3><?php _e( 'Need Help?', 'be-woocommerce-pdf-invoices' ); ?></h3>
|
381 |
<ul>
|
382 |
+
<li><a href="https://wordpress.org/plugins/woocommerce-pdf-invoices/faq/"><?php _e( 'Frequently Asked Questions', 'be-woocommerce-pdf-invoices' ); ?> </a></li>
|
383 |
+
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Support forum', 'be-woocommerce-pdf-invoices' ); ?></a></li>
|
384 |
+
<li><a href="https://wordpress.org/support/plugin/woocommerce-pdf-invoices"><?php _e( 'Request a feature', 'be-woocommerce-pdf-invoices' ); ?></a></li>
|
385 |
+
<li><a href="mailto:baselbers@hotmail.com"><?php _e( 'Email us', 'be-woocommerce-pdf-invoices' ); ?></a></li>
|
386 |
</ul>
|
387 |
</aside>
|
388 |
<?php
|
437 |
* Adds a box to the main column on the Post and Page edit screens.
|
438 |
*/
|
439 |
function add_meta_box_to_order_page() {
|
440 |
+
add_meta_box( 'order_page_create_invoice', __( 'PDF Invoice', 'be-woocommerce-pdf-invoices' ), array(
|
441 |
&$this,
|
442 |
'woocommerce_order_details_page_meta_box_create_invoice'
|
443 |
), 'shop_order', 'side', 'high' );
|
463 |
private function show_invoice_number_info( $date, $number ) {
|
464 |
echo '<table class="invoice-info" width="100%">
|
465 |
<tr>
|
466 |
+
<td>' . __( 'Invoiced on:', 'be-woocommerce-pdf-invoices' ) . '</td>
|
467 |
<td align="right"><b>' . $date . '</b></td>
|
468 |
</tr>
|
469 |
<tr>
|
470 |
+
<td>' . __( 'Invoice number:', 'be-woocommerce-pdf-invoices' ) . '</td>
|
471 |
<td align="right"><b>' . $number . '</b></td>
|
472 |
</tr>
|
473 |
</table>';
|
483 |
* @param array $arr
|
484 |
*/
|
485 |
private function show_invoice_button( $title, $order_id, $wpi_action, $btn_title, $arr = array() ) {
|
486 |
+
$title = __( $title, 'be-woocommerce-pdf-invoices');
|
487 |
$href = admin_url() . 'post.php?post=' . $order_id . '&action=edit&bewpi_action=' . $wpi_action . '&nonce=' . wp_create_nonce( $wpi_action );
|
488 |
+
$btn_title = __( $btn_title, 'be-woocommerce-pdf-invoices');
|
489 |
$attr = '';
|
490 |
|
491 |
foreach ( $arr as $str ) {
|
505 |
|
506 |
if ( $invoice->exists() ) {
|
507 |
$this->show_invoice_number_info( $invoice->get_formatted_invoice_date(), $invoice->get_formatted_number() );
|
508 |
+
$this->show_invoice_button( __( 'View invoice', 'be-woocommerce-pdf-invoices'), $post->ID, 'view', __( 'View', 'be-woocommerce-pdf-invoices'), array( 'class="invoice-btn button grant_access"', 'target="_blank"' ) );
|
509 |
+
$this->show_invoice_button( __( 'Cancel invoice', 'be-woocommerce-pdf-invoices'), $post->ID, 'cancel', __( 'Cancel', 'be-woocommerce-pdf-invoices' ), array(
|
510 |
'class="invoice-btn button grant_access"',
|
511 |
+
'onclick="return confirm(\'' . __( 'Are you sure to delete the invoice?', 'be-woocommerce-pdf-invoices') . '\')"'
|
512 |
) );
|
513 |
} else {
|
514 |
+
$this->show_invoice_button( __( 'Create invoice', 'be-woocommerce-pdf-invoices'), $post->ID, 'create', __( 'Create', 'be-woocommerce-pdf-invoices'), array( 'class="invoice-btn button grant_access"' ) );
|
515 |
}
|
516 |
}
|
517 |
|
544 |
$url = admin_url( 'admin-ajax.php?action=bewpi_download_invoice&order_id=' . $order->id . '&nonce=' . wp_create_nonce( 'bewpi_download_invoice' ) );
|
545 |
$actions['invoice'] = array(
|
546 |
'url' => $url,
|
547 |
+
'name' => sprintf( __( 'Invoice %s (PDF)', 'be-woocommerce-pdf-invoices' ), $invoice->get_formatted_number() )
|
548 |
);
|
549 |
}
|
550 |
|
655 |
$query_string = '?' . http_build_query( array_merge( $query_params, array( self::OPTION_ADMIN_NOTICE_KEY => '1' ) ) );
|
656 |
|
657 |
echo '<div class="updated"><p>';
|
658 |
+
printf( __( "You are working with <b>WooCommerce PDF Invoices</b> for some time now. We really need your ★★★★★ rating. It will support future development big-time. A huge thanks in advance and keep up the good work! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</a> - <a href='%s'>No, already done it!</a>", 'be-woocommerce-pdf-invoices' ), 'https://wordpress.org/support/view/plugin-reviews/woocommerce-pdf-invoices?rate=5#postform', $query_string );
|
659 |
echo "</p></div>";
|
660 |
}
|
661 |
}
|
includes/class-bewpi-invoice.php
CHANGED
@@ -45,7 +45,7 @@ if ( ! class_exists( 'BEWPI_Invoice' ) ) {
|
|
45 |
|
46 |
public function save( $dest, $html_templates = array() ) {
|
47 |
if ( $this->template_name == "" )
|
48 |
-
wp_die( __( 'Whoops, no template found. Please select a template on the Template settings page first.',
|
49 |
|
50 |
$template_dir_name = $this->get_template_dir( $this->template_name );
|
51 |
|
45 |
|
46 |
public function save( $dest, $html_templates = array() ) {
|
47 |
if ( $this->template_name == "" )
|
48 |
+
wp_die( __( 'Whoops, no template found. Please select a template on the Template settings page first.', 'be-woocommerce-pdf-invoices' ) );
|
49 |
|
50 |
$template_dir_name = $this->get_template_dir( $this->template_name );
|
51 |
|
includes/templates/invoices/global/micro/body.php
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
<td class="address small-font">
|
5 |
-
<b><?php _e( 'Invoice to',
|
6 |
<?php echo $this->order->get_formatted_billing_address(); ?><br/>
|
7 |
-
<?php if ( $this->order->billing_phone != "" ) printf( __( 'Phone: %s',
|
8 |
</td>
|
9 |
<td class="address small-font">
|
10 |
<?php if ( $this->order->get_formatted_shipping_address() != "" ) { ?>
|
11 |
-
<b><?php _e( 'Ship to',
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
13 |
<?php } ?>
|
14 |
</td>
|
@@ -19,7 +19,7 @@
|
|
19 |
<tbody>
|
20 |
<tr>
|
21 |
<td class="invoice-details">
|
22 |
-
<h1 class="title"><?php _e( 'Global Invoice',
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
<span class="small-font"><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
|
25 |
</td>
|
@@ -37,23 +37,23 @@
|
|
37 |
<thead>
|
38 |
<tr class="table-headers">
|
39 |
<!-- Description -->
|
40 |
-
<th class="align-left"><?php _e( 'Description',
|
41 |
<!-- SKU -->
|
42 |
<?php
|
43 |
if( $this->template_options['bewpi_show_sku'] ) {
|
44 |
-
echo '<th class="align-left">' . __( "SKU",
|
45 |
}
|
46 |
?>
|
47 |
<!-- Cost -->
|
48 |
-
<th class="align-left"><?php _e( 'Cost',
|
49 |
<!-- Qty -->
|
50 |
-
<th class="align-left"><?php _e( 'Qty',
|
51 |
<!-- Tax -->
|
52 |
<?php
|
53 |
$order_taxes = $this->get_taxes();
|
54 |
if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) && ! empty( $order_taxes ) ) :
|
55 |
foreach ( $order_taxes as $tax_id => $tax_item ) :
|
56 |
-
$tax_label = __( 'VAT',
|
57 |
$column_label = ! empty( $tax_item->label ) ? $tax_item->label : $tax_label;
|
58 |
?>
|
59 |
<th class="align-left">
|
@@ -64,7 +64,7 @@
|
|
64 |
endif;
|
65 |
?>
|
66 |
<!-- Total -->
|
67 |
-
<th class="align-right"><?php _e( 'Total',
|
68 |
</tr>
|
69 |
</thead>
|
70 |
<!-- Products -->
|
@@ -72,7 +72,7 @@
|
|
72 |
<?php foreach ( $this->orders as $order ) :
|
73 |
$order = wc_get_order( $order->id ); ?>
|
74 |
<tr>
|
75 |
-
<td><strong><?php printf( __( 'Order #%d - %s',
|
76 |
</tr>
|
77 |
<?php foreach( $order->get_items( 'line_item' ) as $item_id => $item ) :
|
78 |
$product = wc_get_product( $item['product_id'] ); ?>
|
@@ -217,7 +217,7 @@
|
|
217 |
<?php if( $this->template_options['bewpi_show_discount'] && $this->get_total_discount() !== 0 ) { ?>
|
218 |
<tr class="discount after-products">
|
219 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
220 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Discount',
|
221 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_discount(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
222 |
</tr>
|
223 |
<?php } ?>
|
@@ -225,7 +225,7 @@
|
|
225 |
<?php if( $this->template_options['bewpi_show_shipping'] && (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
226 |
<tr class="shipping after-products">
|
227 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
228 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping',
|
229 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
230 |
</tr>
|
231 |
<?php } ?>
|
@@ -233,7 +233,7 @@
|
|
233 |
<?php if( $this->template_options['bewpi_show_subtotal'] ) { ?>
|
234 |
<tr class="subtotal after-products">
|
235 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
236 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Subtotal',
|
237 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
238 |
</tr>
|
239 |
<?php } ?>
|
@@ -241,7 +241,7 @@
|
|
241 |
<?php if( $this->template_options['bewpi_show_shipping'] && ! (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
242 |
<tr class="shipping after-products">
|
243 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
244 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping',
|
245 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
246 |
</tr>
|
247 |
<?php } ?>
|
@@ -277,14 +277,14 @@
|
|
277 |
<!-- Total -->
|
278 |
<tr class="after-products">
|
279 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
280 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total',
|
281 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td>
|
282 |
</tr>
|
283 |
<!-- Refunded -->
|
284 |
<?php if ( $this->get_total_refunded() > 0 ) { ?>
|
285 |
<tr class="after-products">
|
286 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
287 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="refunded"><?php _e( 'Refunded',
|
288 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="refunded align-right"><?php echo '-' . wc_price( $this->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
289 |
</tr>
|
290 |
<?php } ?>
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
<td class="address small-font">
|
5 |
+
<b><?php _e( 'Invoice to', 'be-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', 'be-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', 'be-woocommerce-pdf-invoices' ); ?></b><br/>
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
13 |
<?php } ?>
|
14 |
</td>
|
19 |
<tbody>
|
20 |
<tr>
|
21 |
<td class="invoice-details">
|
22 |
+
<h1 class="title"><?php _e( 'Global Invoice', 'be-woocommerce-pdf-invoices' ); ?></h1>
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
<span class="small-font"><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
|
25 |
</td>
|
37 |
<thead>
|
38 |
<tr class="table-headers">
|
39 |
<!-- Description -->
|
40 |
+
<th class="align-left"><?php _e( 'Description', 'be-woocommerce-pdf-invoices' ); ?></th>
|
41 |
<!-- SKU -->
|
42 |
<?php
|
43 |
if( $this->template_options['bewpi_show_sku'] ) {
|
44 |
+
echo '<th class="align-left">' . __( "SKU", 'be-woocommerce-pdf-invoices') . '</th>';
|
45 |
}
|
46 |
?>
|
47 |
<!-- Cost -->
|
48 |
+
<th class="align-left"><?php _e( 'Cost', 'be-woocommerce-pdf-invoices' ); ?></th>
|
49 |
<!-- Qty -->
|
50 |
+
<th class="align-left"><?php _e( 'Qty', 'be-woocommerce-pdf-invoices' ); ?></th>
|
51 |
<!-- Tax -->
|
52 |
<?php
|
53 |
$order_taxes = $this->get_taxes();
|
54 |
if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) && ! empty( $order_taxes ) ) :
|
55 |
foreach ( $order_taxes as $tax_id => $tax_item ) :
|
56 |
+
$tax_label = __( 'VAT', 'be-woocommerce-pdf-invoices' );
|
57 |
$column_label = ! empty( $tax_item->label ) ? $tax_item->label : $tax_label;
|
58 |
?>
|
59 |
<th class="align-left">
|
64 |
endif;
|
65 |
?>
|
66 |
<!-- Total -->
|
67 |
+
<th class="align-right"><?php _e( 'Total', 'be-woocommerce-pdf-invoices' ); ?></th>
|
68 |
</tr>
|
69 |
</thead>
|
70 |
<!-- Products -->
|
72 |
<?php foreach ( $this->orders as $order ) :
|
73 |
$order = wc_get_order( $order->id ); ?>
|
74 |
<tr>
|
75 |
+
<td><strong><?php printf( __( 'Order #%d - %s', 'be-woocommerce-pdf-invoices' ), $order->get_order_number(), $this->get_formatted_order_date( $order->id ) ); ?></strong></td>
|
76 |
</tr>
|
77 |
<?php foreach( $order->get_items( 'line_item' ) as $item_id => $item ) :
|
78 |
$product = wc_get_product( $item['product_id'] ); ?>
|
217 |
<?php if( $this->template_options['bewpi_show_discount'] && $this->get_total_discount() !== 0 ) { ?>
|
218 |
<tr class="discount after-products">
|
219 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
220 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Discount', 'be-woocommerce-pdf-invoices' ); ?></td>
|
221 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_discount(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
222 |
</tr>
|
223 |
<?php } ?>
|
225 |
<?php if( $this->template_options['bewpi_show_shipping'] && (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
226 |
<tr class="shipping after-products">
|
227 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
228 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'be-woocommerce-pdf-invoices' ); ?></td>
|
229 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
230 |
</tr>
|
231 |
<?php } ?>
|
233 |
<?php if( $this->template_options['bewpi_show_subtotal'] ) { ?>
|
234 |
<tr class="subtotal after-products">
|
235 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
236 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Subtotal', 'be-woocommerce-pdf-invoices' ); ?></td>
|
237 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
238 |
</tr>
|
239 |
<?php } ?>
|
241 |
<?php if( $this->template_options['bewpi_show_shipping'] && ! (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
242 |
<tr class="shipping after-products">
|
243 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
244 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'be-woocommerce-pdf-invoices' ); ?></td>
|
245 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
246 |
</tr>
|
247 |
<?php } ?>
|
277 |
<!-- Total -->
|
278 |
<tr class="after-products">
|
279 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
280 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total', 'be-woocommerce-pdf-invoices' ); ?></td>
|
281 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td>
|
282 |
</tr>
|
283 |
<!-- Refunded -->
|
284 |
<?php if ( $this->get_total_refunded() > 0 ) { ?>
|
285 |
<tr class="after-products">
|
286 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
287 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="refunded"><?php _e( 'Refunded', 'be-woocommerce-pdf-invoices' ); ?></td>
|
288 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="refunded align-right"><?php echo '-' . wc_price( $this->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
289 |
</tr>
|
290 |
<?php } ?>
|
includes/templates/invoices/global/micro/footer.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
if ( $this->template_options[ 'bewpi_right_footer_column' ] !== "" ) {
|
13 |
echo nl2br( $this->template_options['bewpi_right_footer_column'] );
|
14 |
} else {
|
15 |
-
printf( __( '%s of %s',
|
16 |
}
|
17 |
?>
|
18 |
</p>
|
12 |
if ( $this->template_options[ 'bewpi_right_footer_column' ] !== "" ) {
|
13 |
echo nl2br( $this->template_options['bewpi_right_footer_column'] );
|
14 |
} else {
|
15 |
+
printf( __( '%s of %s', 'be-woocommerce-pdf-invoices' ), '{PAGENO}', '{nbpg}' );
|
16 |
}
|
17 |
?>
|
18 |
</p>
|
includes/templates/invoices/simple/micro/body.php
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
<td class="address small-font">
|
5 |
-
<b><?php _e( 'Invoice to',
|
6 |
<?php echo $this->order->get_formatted_billing_address(); ?><br/>
|
7 |
-
<?php if ( $this->order->billing_phone != "" ) printf( __( 'Phone: %s',
|
8 |
</td>
|
9 |
<td class="address small-font">
|
10 |
<?php if ( $this->order->get_formatted_shipping_address() != "" ) { ?>
|
11 |
-
<b><?php _e( 'Ship to',
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
13 |
<?php } ?>
|
14 |
</td>
|
@@ -19,11 +19,11 @@
|
|
19 |
<tbody>
|
20 |
<tr>
|
21 |
<td class="invoice-details">
|
22 |
-
<h1 class="title"><?php _e( 'Invoice',
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
<span class="small-font"><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
|
25 |
-
<span class="small-font"><?php printf( __( 'Order Number: %s',
|
26 |
-
<span class="small-font"><?php printf( __( 'Order Date: %s',
|
27 |
</td>
|
28 |
<td class="total-amount" bgcolor="<?php echo $this->template_options['bewpi_color_theme']; ?>">
|
29 |
<span>
|
@@ -39,23 +39,23 @@
|
|
39 |
<thead>
|
40 |
<tr class="table-headers">
|
41 |
<!-- Description -->
|
42 |
-
<th class="align-left"><?php _e( 'Description',
|
43 |
<!-- SKU -->
|
44 |
<?php
|
45 |
if( $this->template_options['bewpi_show_sku'] ) {
|
46 |
-
echo '<th class="align-left">' . __( "SKU",
|
47 |
}
|
48 |
?>
|
49 |
<!-- Cost -->
|
50 |
-
<th class="align-left"><?php _e( 'Cost',
|
51 |
<!-- Qty -->
|
52 |
-
<th class="align-left"><?php _e( 'Qty',
|
53 |
<!-- Tax -->
|
54 |
<?php
|
55 |
$order_taxes = $this->order->get_taxes();
|
56 |
if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) && ! empty( $order_taxes ) ) :
|
57 |
foreach ( $order_taxes as $tax_id => $tax_item ) :
|
58 |
-
$tax_label = __( 'VAT',
|
59 |
$column_label = ! empty( $tax_item['label'] ) ? $tax_item['label'] : $tax_label;
|
60 |
?>
|
61 |
<th class="align-left">
|
@@ -66,7 +66,7 @@
|
|
66 |
endif;
|
67 |
?>
|
68 |
<!-- Total -->
|
69 |
-
<th class="align-right"><?php _e( 'Total',
|
70 |
</tr>
|
71 |
</thead>
|
72 |
<!-- Products -->
|
@@ -203,7 +203,7 @@
|
|
203 |
<?php if( $this->template_options['bewpi_show_discount'] && $this->order->get_total_discount() !== 0.00 ) { ?>
|
204 |
<tr class="discount after-products">
|
205 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
206 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Discount',
|
207 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_discount(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
208 |
</tr>
|
209 |
<?php } ?>
|
@@ -211,7 +211,7 @@
|
|
211 |
<?php if( $this->template_options['bewpi_show_shipping'] && (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
212 |
<tr class="shipping after-products">
|
213 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
214 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping',
|
215 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
216 |
</tr>
|
217 |
<?php } ?>
|
@@ -219,7 +219,7 @@
|
|
219 |
<?php if( $this->template_options['bewpi_show_subtotal'] ) { ?>
|
220 |
<tr class="subtotal after-products">
|
221 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
222 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Subtotal',
|
223 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
224 |
</tr>
|
225 |
<?php } ?>
|
@@ -227,7 +227,7 @@
|
|
227 |
<?php if( $this->template_options['bewpi_show_shipping'] && ! (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
228 |
<tr class="shipping after-products">
|
229 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
230 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping',
|
231 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
232 |
</tr>
|
233 |
<?php } ?>
|
@@ -263,14 +263,14 @@
|
|
263 |
<!-- Total -->
|
264 |
<tr class="after-products">
|
265 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
266 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total',
|
267 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td>
|
268 |
</tr>
|
269 |
<!-- Refunded -->
|
270 |
<?php if ( $this->order->get_total_refunded() > 0 ) { ?>
|
271 |
<tr class="after-products">
|
272 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
273 |
-
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="refunded"><?php _e( 'Refunded',
|
274 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="refunded align-right"><?php echo '-' . wc_price( $this->order->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
275 |
</tr>
|
276 |
<?php } ?>
|
@@ -285,12 +285,12 @@
|
|
285 |
if ( $this->template_options['bewpi_show_customer_notes'] ) :
|
286 |
// Note added by customer.
|
287 |
if ( $this->order->post->post_excerpt != "" ) {
|
288 |
-
echo '<p><strong>' . __( 'Customer note',
|
289 |
}
|
290 |
// Notes added by administrator on order details page.
|
291 |
$customer_order_notes = $this->order->get_customer_order_notes();
|
292 |
if ( count( $customer_order_notes ) > 0 ) {
|
293 |
-
echo '<p><strong>' . __('Customer note',
|
294 |
}
|
295 |
endif;
|
296 |
?>
|
2 |
<tbody>
|
3 |
<tr>
|
4 |
<td class="address small-font">
|
5 |
+
<b><?php _e( 'Invoice to', 'be-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', 'be-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', 'be-woocommerce-pdf-invoices' ); ?></b><br/>
|
12 |
<?php echo $this->order->get_formatted_shipping_address(); ?>
|
13 |
<?php } ?>
|
14 |
</td>
|
19 |
<tbody>
|
20 |
<tr>
|
21 |
<td class="invoice-details">
|
22 |
+
<h1 class="title"><?php _e( 'Invoice', 'be-woocommerce-pdf-invoices' ); ?></h1>
|
23 |
<span class="number" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_formatted_number(); ?></span><br/>
|
24 |
<span class="small-font"><?php echo $this->get_formatted_invoice_date(); ?></span><br/><br/>
|
25 |
+
<span class="small-font"><?php printf( __( 'Order Number: %s', 'be-woocommerce-pdf-invoices' ), $this->order->get_order_number() ); ?></span><br/>
|
26 |
+
<span class="small-font"><?php printf( __( 'Order Date: %s', 'be-woocommerce-pdf-invoices' ), $this->get_formatted_order_date() ); ?></span><br/><br/>
|
27 |
</td>
|
28 |
<td class="total-amount" bgcolor="<?php echo $this->template_options['bewpi_color_theme']; ?>">
|
29 |
<span>
|
39 |
<thead>
|
40 |
<tr class="table-headers">
|
41 |
<!-- Description -->
|
42 |
+
<th class="align-left"><?php _e( 'Description', 'be-woocommerce-pdf-invoices' ); ?></th>
|
43 |
<!-- SKU -->
|
44 |
<?php
|
45 |
if( $this->template_options['bewpi_show_sku'] ) {
|
46 |
+
echo '<th class="align-left">' . __( "SKU", 'be-woocommerce-pdf-invoices' ) . '</th>';
|
47 |
}
|
48 |
?>
|
49 |
<!-- Cost -->
|
50 |
+
<th class="align-left"><?php _e( 'Cost', 'be-woocommerce-pdf-invoices' ); ?></th>
|
51 |
<!-- Qty -->
|
52 |
+
<th class="align-left"><?php _e( 'Qty', 'be-woocommerce-pdf-invoices' ); ?></th>
|
53 |
<!-- Tax -->
|
54 |
<?php
|
55 |
$order_taxes = $this->order->get_taxes();
|
56 |
if ( $this->template_options['bewpi_show_tax'] && wc_tax_enabled() && empty( $legacy_order ) && ! empty( $order_taxes ) ) :
|
57 |
foreach ( $order_taxes as $tax_id => $tax_item ) :
|
58 |
+
$tax_label = __( 'VAT', 'be-woocommerce-pdf-invoices' );
|
59 |
$column_label = ! empty( $tax_item['label'] ) ? $tax_item['label'] : $tax_label;
|
60 |
?>
|
61 |
<th class="align-left">
|
66 |
endif;
|
67 |
?>
|
68 |
<!-- Total -->
|
69 |
+
<th class="align-right"><?php _e( 'Total', 'be-woocommerce-pdf-invoices' ); ?></th>
|
70 |
</tr>
|
71 |
</thead>
|
72 |
<!-- Products -->
|
203 |
<?php if( $this->template_options['bewpi_show_discount'] && $this->order->get_total_discount() !== 0.00 ) { ?>
|
204 |
<tr class="discount after-products">
|
205 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
206 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Discount', 'be-woocommerce-pdf-invoices' ); ?></td>
|
207 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_discount(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
208 |
</tr>
|
209 |
<?php } ?>
|
211 |
<?php if( $this->template_options['bewpi_show_shipping'] && (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
212 |
<tr class="shipping after-products">
|
213 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
214 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'be-woocommerce-pdf-invoices' ); ?></td>
|
215 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
216 |
</tr>
|
217 |
<?php } ?>
|
219 |
<?php if( $this->template_options['bewpi_show_subtotal'] ) { ?>
|
220 |
<tr class="subtotal after-products">
|
221 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
222 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Subtotal', 'be-woocommerce-pdf-invoices' ); ?></td>
|
223 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->get_subtotal(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
224 |
</tr>
|
225 |
<?php } ?>
|
227 |
<?php if( $this->template_options['bewpi_show_shipping'] && ! (bool)$this->template_options["bewpi_shipping_taxable"] ) { ?>
|
228 |
<tr class="shipping after-products">
|
229 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
230 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>"><?php _e( 'Shipping', 'be-woocommerce-pdf-invoices' ); ?></td>
|
231 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="align-right"><?php echo wc_price( $this->order->get_total_shipping(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
232 |
</tr>
|
233 |
<?php } ?>
|
263 |
<!-- Total -->
|
264 |
<tr class="after-products">
|
265 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
266 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="total"><?php _e( 'Total', 'be-woocommerce-pdf-invoices' ); ?></td>
|
267 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="grand-total align-right" style="color: <?php echo $this->template_options['bewpi_color_theme']; ?>;"><?php echo $this->get_total(); ?></td>
|
268 |
</tr>
|
269 |
<!-- Refunded -->
|
270 |
<?php if ( $this->order->get_total_refunded() > 0 ) { ?>
|
271 |
<tr class="after-products">
|
272 |
<td colspan="<?php echo $this->colspan['left']; ?>"></td>
|
273 |
+
<td colspan="<?php echo $this->colspan['right_left']; ?>" class="refunded"><?php _e( 'Refunded', 'be-woocommerce-pdf-invoices' ); ?></td>
|
274 |
<td colspan="<?php echo $this->colspan['right_right']; ?>" class="refunded align-right"><?php echo '-' . wc_price( $this->order->get_total_refunded(), array( 'currency' => $this->order->get_order_currency() ) ); ?></td>
|
275 |
</tr>
|
276 |
<?php } ?>
|
285 |
if ( $this->template_options['bewpi_show_customer_notes'] ) :
|
286 |
// Note added by customer.
|
287 |
if ( $this->order->post->post_excerpt != "" ) {
|
288 |
+
echo '<p><strong>' . __( 'Customer note', 'be-woocommerce-pdf-invoices' ) . ' </strong> ' . $this->order->post->post_excerpt . '</p>';
|
289 |
}
|
290 |
// Notes added by administrator on order details page.
|
291 |
$customer_order_notes = $this->order->get_customer_order_notes();
|
292 |
if ( count( $customer_order_notes ) > 0 ) {
|
293 |
+
echo '<p><strong>' . __('Customer note', 'be-woocommerce-pdf-invoices') . ' </strong>' . $customer_order_notes[0]->comment_content . '</p>';
|
294 |
}
|
295 |
endif;
|
296 |
?>
|
includes/templates/invoices/simple/micro/footer.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
$this->order->payment_method_title,
|
16 |
$this->template_options['bewpi_right_footer_column'] ) );
|
17 |
} else {
|
18 |
-
printf( __( '%s of %s',
|
19 |
}
|
20 |
?>
|
21 |
</p>
|
15 |
$this->order->payment_method_title,
|
16 |
$this->template_options['bewpi_right_footer_column'] ) );
|
17 |
} else {
|
18 |
+
printf( __( '%s of %s', 'be-woocommerce-pdf-invoices' ), '{PAGENO}', '{nbpg}' );
|
19 |
}
|
20 |
?>
|
21 |
</p>
|
lang/be-woocommerce-pdf-invoices-es_ES.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -22,21 +22,35 @@ msgstr ""
|
|
22 |
"X-Generator: Poedit 1.7.3\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
-
#: ../includes/abstracts/abstract-bewpi-document.php:
|
26 |
msgid "Paid"
|
27 |
msgstr ""
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
#: ../includes/abstracts/abstract-bewpi-invoice.php:299
|
30 |
#, php-format
|
31 |
msgid ""
|
32 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../includes/abstracts/abstract-bewpi-setting.php:
|
36 |
msgid "Allowed HTML tags: "
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../includes/abstracts/abstract-bewpi-setting.php:
|
40 |
msgid "Remove logo"
|
41 |
msgstr "Eliminar logo"
|
42 |
|
@@ -105,7 +119,7 @@ msgid ""
|
|
105 |
msgstr ""
|
106 |
|
107 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
108 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
109 |
msgid "Template"
|
110 |
msgstr "Plantilla"
|
111 |
|
@@ -156,12 +170,6 @@ msgstr "Nombre de la empresa"
|
|
156 |
msgid "Company logo"
|
157 |
msgstr "Logo de la empresa"
|
158 |
|
159 |
-
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
160 |
-
msgid ""
|
161 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
162 |
-
"<code>allow_url_fopen</code>."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
166 |
msgid "Company address"
|
167 |
msgstr "Dirección de la empresa"
|
@@ -377,111 +385,117 @@ msgstr "Archivo no es válido y contiene ':' después del primer carácter."
|
|
377 |
msgid "File should be less then 2MB."
|
378 |
msgstr "Este archivo debe pesar menos de 2MB."
|
379 |
|
380 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
381 |
-
msgid "Settings"
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:120
|
385 |
-
msgid "Premium"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:135
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
392 |
"PDF Invoices</strong></a>."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgid "General"
|
397 |
msgstr "General"
|
398 |
|
399 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
400 |
msgid "Invoices"
|
401 |
msgstr "Facturas"
|
402 |
|
403 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
404 |
#, php-format
|
405 |
msgid ""
|
406 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
407 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
411 |
#, php-format
|
412 |
msgid "Version %s"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
416 |
msgid "WooCommerce PDF Invoices Premium"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
420 |
msgid ""
|
421 |
-
"This plugin offers a premium version
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
425 |
msgid "Bill periodically by generating and sending global invoices."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
429 |
msgid "Add additional PDF's to customer invoices."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
433 |
msgid "Send customer invoices directly to suppliers and others."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
msgid "Learn more"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
441 |
msgid "Stay up-to-date"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
445 |
msgid ""
|
446 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
447 |
"our newsletter."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
451 |
msgid "Your email address"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
455 |
msgid "Signup"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
459 |
msgid "No spam, ever. Unsubscribe at any time"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
463 |
msgid "About"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
467 |
msgid ""
|
468 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
469 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
473 |
msgid "<b>Version</b>: "
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
477 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
481 |
msgid "Support"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
485 |
msgid ""
|
486 |
"We will never ask for donations, but to garantee future development, we do "
|
487 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -490,77 +504,77 @@ msgid ""
|
|
490 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
494 |
msgid ""
|
495 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
499 |
msgid "Need Help?"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
503 |
msgid "Frequently Asked Questions"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
507 |
msgid "Support forum"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
511 |
msgid "Request a feature"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
515 |
msgid "Email us"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
519 |
msgid "PDF Invoice"
|
520 |
msgstr "PDF Factura"
|
521 |
|
522 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
523 |
msgid "Invoiced on:"
|
524 |
msgstr "Facturado en:"
|
525 |
|
526 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
527 |
msgid "Invoice number:"
|
528 |
msgstr "Nº de factura"
|
529 |
|
530 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
531 |
msgid "View invoice"
|
532 |
msgstr "Ver factura"
|
533 |
|
534 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
535 |
msgid "View"
|
536 |
msgstr "Ver"
|
537 |
|
538 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
539 |
msgid "Cancel invoice"
|
540 |
msgstr "Cancelar factura"
|
541 |
|
542 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
543 |
msgid "Cancel"
|
544 |
msgstr "Cancelar"
|
545 |
|
546 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
547 |
msgid "Are you sure to delete the invoice?"
|
548 |
msgstr "¿Está seguro de eliminar la factura?"
|
549 |
|
550 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
551 |
msgid "Create invoice"
|
552 |
msgstr "Crear factura"
|
553 |
|
554 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
555 |
msgid "Create"
|
556 |
msgstr "Crear"
|
557 |
|
558 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
559 |
#, php-format
|
560 |
msgid "Invoice %s (PDF)"
|
561 |
msgstr "Factura %s (PDF)"
|
562 |
|
563 |
-
#: ../includes/be-woocommerce-pdf-invoices.php:
|
564 |
#, php-format
|
565 |
msgid ""
|
566 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
2 |
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: 2015-12-12 23:36+0100\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
22 |
"X-Generator: Poedit 1.7.3\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#: ../includes/abstracts/abstract-bewpi-document.php:64
|
26 |
msgid "Paid"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../includes/abstracts/abstract-bewpi-invoice.php:255
|
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:260
|
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:299
|
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-setting.php:90
|
50 |
msgid "Allowed HTML tags: "
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: ../includes/abstracts/abstract-bewpi-setting.php:170
|
54 |
msgid "Remove logo"
|
55 |
msgstr "Eliminar logo"
|
56 |
|
119 |
msgstr ""
|
120 |
|
121 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
122 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:222
|
123 |
msgid "Template"
|
124 |
msgstr "Plantilla"
|
125 |
|
170 |
msgid "Company logo"
|
171 |
msgstr "Logo de la empresa"
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
#: ../includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
174 |
msgid "Company address"
|
175 |
msgstr "Dirección de la empresa"
|
385 |
msgid "File should be less then 2MB."
|
386 |
msgstr "Este archivo debe pesar menos de 2MB."
|
387 |
|
388 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
392 |
"PDF Invoices</strong></a>."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:142
|
396 |
+
msgid "Settings"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:143
|
400 |
+
msgid "Premium"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:221
|
404 |
msgid "General"
|
405 |
msgstr "General"
|
406 |
|
407 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:245
|
408 |
msgid "Invoices"
|
409 |
msgstr "Facturas"
|
410 |
|
411 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:284
|
412 |
#, php-format
|
413 |
msgid ""
|
414 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
415 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:285
|
419 |
#, php-format
|
420 |
msgid "Version %s"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:309
|
424 |
msgid "WooCommerce PDF Invoices Premium"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:311
|
428 |
msgid ""
|
429 |
+
"This plugin offers a premium version which comes with the following features:"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:312
|
433 |
msgid "Bill periodically by generating and sending global invoices."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:313
|
437 |
msgid "Add additional PDF's to customer invoices."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:314
|
441 |
msgid "Send customer invoices directly to suppliers and others."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:315
|
445 |
+
#, php-format
|
446 |
+
msgid ""
|
447 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:317
|
451 |
msgid "Learn more"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:321
|
455 |
msgid "Stay up-to-date"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:330
|
459 |
msgid ""
|
460 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
461 |
"our newsletter."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:336
|
465 |
msgid "Your email address"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:339
|
469 |
msgid "Signup"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:340
|
473 |
msgid "No spam, ever. Unsubscribe at any time"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:348
|
477 |
msgid "About"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:349
|
481 |
msgid ""
|
482 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
483 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:350
|
487 |
msgid "<b>Version</b>: "
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:352
|
491 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:355
|
495 |
msgid "Support"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:356
|
499 |
msgid ""
|
500 |
"We will never ask for donations, but to garantee future development, we do "
|
501 |
"need your support. Please show us your appreciation by leaving a <a href="
|
504 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:375
|
508 |
msgid ""
|
509 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:380
|
513 |
msgid "Need Help?"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:382
|
517 |
msgid "Frequently Asked Questions"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:383
|
521 |
msgid "Support forum"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:384
|
525 |
msgid "Request a feature"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:385
|
529 |
msgid "Email us"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:440
|
533 |
msgid "PDF Invoice"
|
534 |
msgstr "PDF Factura"
|
535 |
|
536 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:466
|
537 |
msgid "Invoiced on:"
|
538 |
msgstr "Facturado en:"
|
539 |
|
540 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:470
|
541 |
msgid "Invoice number:"
|
542 |
msgstr "Nº de factura"
|
543 |
|
544 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:508
|
545 |
msgid "View invoice"
|
546 |
msgstr "Ver factura"
|
547 |
|
548 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:508
|
549 |
msgid "View"
|
550 |
msgstr "Ver"
|
551 |
|
552 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:509
|
553 |
msgid "Cancel invoice"
|
554 |
msgstr "Cancelar factura"
|
555 |
|
556 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:509
|
557 |
msgid "Cancel"
|
558 |
msgstr "Cancelar"
|
559 |
|
560 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:511
|
561 |
msgid "Are you sure to delete the invoice?"
|
562 |
msgstr "¿Está seguro de eliminar la factura?"
|
563 |
|
564 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:514
|
565 |
msgid "Create invoice"
|
566 |
msgstr "Crear factura"
|
567 |
|
568 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:514
|
569 |
msgid "Create"
|
570 |
msgstr "Crear"
|
571 |
|
572 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:547
|
573 |
#, php-format
|
574 |
msgid "Invoice %s (PDF)"
|
575 |
msgstr "Factura %s (PDF)"
|
576 |
|
577 |
+
#: ../includes/be-woocommerce-pdf-invoices.php:658
|
578 |
#, php-format
|
579 |
msgid ""
|
580 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
lang/be-woocommerce-pdf-invoices-fr_FR.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
|
7 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
8 |
"Language: fr_FR\n"
|
@@ -19,21 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
33 |
msgid "Allowed HTML tags: "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
37 |
msgid "Remove logo"
|
38 |
msgstr "Retirer le logo"
|
39 |
|
@@ -104,7 +118,7 @@ msgstr ""
|
|
104 |
"Google Drive ou Egnyte et entrez votre compte ci-dessous"
|
105 |
|
106 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
107 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
108 |
msgid "Template"
|
109 |
msgstr "Template"
|
110 |
|
@@ -155,12 +169,6 @@ msgstr "Nom de la société"
|
|
155 |
msgid "Company logo"
|
156 |
msgstr "Logo de la société"
|
157 |
|
158 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
159 |
-
msgid ""
|
160 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
161 |
-
"<code>allow_url_fopen</code>."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
165 |
msgid "Company address"
|
166 |
msgstr "Adresse de la société"
|
@@ -376,111 +384,117 @@ msgstr "Le fichier est invalide et contient ':' aprés la premiere lettre. "
|
|
376 |
msgid "File should be less then 2MB."
|
377 |
msgstr "Le fichier doit être inférieure à 2 Mo."
|
378 |
|
379 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
380 |
-
msgid "Settings"
|
381 |
-
msgstr ""
|
382 |
-
|
383 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
384 |
-
msgid "Premium"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
388 |
#, php-format
|
389 |
msgid ""
|
390 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
391 |
"PDF Invoices</strong></a>."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "General"
|
396 |
msgstr "Général"
|
397 |
|
398 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
399 |
msgid "Invoices"
|
400 |
msgstr "Factures"
|
401 |
|
402 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
403 |
#, php-format
|
404 |
msgid ""
|
405 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
406 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
410 |
#, php-format
|
411 |
msgid "Version %s"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
415 |
msgid "WooCommerce PDF Invoices Premium"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
419 |
msgid ""
|
420 |
-
"This plugin offers a premium version
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
424 |
msgid "Bill periodically by generating and sending global invoices."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
428 |
msgid "Add additional PDF's to customer invoices."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
432 |
msgid "Send customer invoices directly to suppliers and others."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
msgid "Learn more"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
440 |
msgid "Stay up-to-date"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
444 |
msgid ""
|
445 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
446 |
"our newsletter."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
450 |
msgid "Your email address"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
454 |
msgid "Signup"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
458 |
msgid "No spam, ever. Unsubscribe at any time"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
462 |
msgid "About"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
466 |
msgid ""
|
467 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
468 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
472 |
msgid "<b>Version</b>: "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
476 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
480 |
msgid "Support"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
484 |
msgid ""
|
485 |
"We will never ask for donations, but to garantee future development, we do "
|
486 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -489,77 +503,77 @@ msgid ""
|
|
489 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
493 |
msgid ""
|
494 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
498 |
msgid "Need Help?"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
502 |
msgid "Frequently Asked Questions"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
506 |
msgid "Support forum"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
510 |
msgid "Request a feature"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
514 |
msgid "Email us"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
518 |
msgid "PDF Invoice"
|
519 |
msgstr "Facture PDF"
|
520 |
|
521 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
522 |
msgid "Invoiced on:"
|
523 |
msgstr "Facturés sur"
|
524 |
|
525 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
526 |
msgid "Invoice number:"
|
527 |
msgstr "Numéro de facture"
|
528 |
|
529 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
530 |
msgid "View invoice"
|
531 |
msgstr " Voir la facture"
|
532 |
|
533 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
534 |
msgid "View"
|
535 |
msgstr "Voir"
|
536 |
|
537 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
538 |
msgid "Cancel invoice"
|
539 |
msgstr "Annuler la facture"
|
540 |
|
541 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
542 |
msgid "Cancel"
|
543 |
msgstr "Annuler"
|
544 |
|
545 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
546 |
msgid "Are you sure to delete the invoice?"
|
547 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
548 |
|
549 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
550 |
msgid "Create invoice"
|
551 |
msgstr "Créer une facture"
|
552 |
|
553 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
554 |
msgid "Create"
|
555 |
msgstr "créer"
|
556 |
|
557 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
558 |
#, php-format
|
559 |
msgid "Invoice %s (PDF)"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
563 |
#, php-format
|
564 |
msgid ""
|
565 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-12-12 23:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-12-12 23:37+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"
|
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:255
|
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:260
|
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:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
51 |
msgid "Remove logo"
|
52 |
msgstr "Retirer le logo"
|
53 |
|
118 |
"Google Drive ou Egnyte et entrez votre compte ci-dessous"
|
119 |
|
120 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
121 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
122 |
msgid "Template"
|
123 |
msgstr "Template"
|
124 |
|
169 |
msgid "Company logo"
|
170 |
msgstr "Logo de la société"
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
173 |
msgid "Company address"
|
174 |
msgstr "Adresse de la société"
|
384 |
msgid "File should be less then 2MB."
|
385 |
msgstr "Le fichier doit être inférieure à 2 Mo."
|
386 |
|
387 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
388 |
#, php-format
|
389 |
msgid ""
|
390 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
391 |
"PDF Invoices</strong></a>."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
395 |
+
msgid "Settings"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
399 |
+
msgid "Premium"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
403 |
msgid "General"
|
404 |
msgstr "Général"
|
405 |
|
406 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
407 |
msgid "Invoices"
|
408 |
msgstr "Factures"
|
409 |
|
410 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
411 |
#, php-format
|
412 |
msgid ""
|
413 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
414 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
418 |
#, php-format
|
419 |
msgid "Version %s"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
423 |
msgid "WooCommerce PDF Invoices Premium"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
427 |
msgid ""
|
428 |
+
"This plugin offers a premium version which comes with the following features:"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
432 |
msgid "Bill periodically by generating and sending global invoices."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
436 |
msgid "Add additional PDF's to customer invoices."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
440 |
msgid "Send customer invoices directly to suppliers and others."
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
444 |
+
#, php-format
|
445 |
+
msgid ""
|
446 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
450 |
msgid "Learn more"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
454 |
msgid "Stay up-to-date"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
458 |
msgid ""
|
459 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
460 |
"our newsletter."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
464 |
msgid "Your email address"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
468 |
msgid "Signup"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
472 |
msgid "No spam, ever. Unsubscribe at any time"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
476 |
msgid "About"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
480 |
msgid ""
|
481 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
482 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
486 |
msgid "<b>Version</b>: "
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
490 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
494 |
msgid "Support"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
498 |
msgid ""
|
499 |
"We will never ask for donations, but to garantee future development, we do "
|
500 |
"need your support. Please show us your appreciation by leaving a <a href="
|
503 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
507 |
msgid ""
|
508 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
512 |
msgid "Need Help?"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
516 |
msgid "Frequently Asked Questions"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
520 |
msgid "Support forum"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
524 |
msgid "Request a feature"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
528 |
msgid "Email us"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
532 |
msgid "PDF Invoice"
|
533 |
msgstr "Facture PDF"
|
534 |
|
535 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
536 |
msgid "Invoiced on:"
|
537 |
msgstr "Facturés sur"
|
538 |
|
539 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
540 |
msgid "Invoice number:"
|
541 |
msgstr "Numéro de facture"
|
542 |
|
543 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
544 |
msgid "View invoice"
|
545 |
msgstr " Voir la facture"
|
546 |
|
547 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
548 |
msgid "View"
|
549 |
msgstr "Voir"
|
550 |
|
551 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
552 |
msgid "Cancel invoice"
|
553 |
msgstr "Annuler la facture"
|
554 |
|
555 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
556 |
msgid "Cancel"
|
557 |
msgstr "Annuler"
|
558 |
|
559 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
560 |
msgid "Are you sure to delete the invoice?"
|
561 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
562 |
|
563 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
564 |
msgid "Create invoice"
|
565 |
msgstr "Créer une facture"
|
566 |
|
567 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
568 |
msgid "Create"
|
569 |
msgstr "créer"
|
570 |
|
571 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
572 |
#, php-format
|
573 |
msgid "Invoice %s (PDF)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
577 |
#, php-format
|
578 |
msgid ""
|
579 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
lang/be-woocommerce-pdf-invoices-nb_NO.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
@@ -19,21 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
23 |
msgid "Paid"
|
24 |
msgstr "Betalt"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
33 |
msgid "Allowed HTML tags: "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
37 |
msgid "Remove logo"
|
38 |
msgstr "Fjern logo"
|
39 |
|
@@ -104,7 +118,7 @@ msgstr ""
|
|
104 |
"Drive eller Egnyte og skriv inn kontoen din under."
|
105 |
|
106 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
107 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
108 |
msgid "Template"
|
109 |
msgstr "Mal"
|
110 |
|
@@ -156,14 +170,6 @@ msgstr "Firmanavn"
|
|
156 |
msgid "Company logo"
|
157 |
msgstr "Firmalogo"
|
158 |
|
159 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
160 |
-
msgid ""
|
161 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
162 |
-
"<code>allow_url_fopen</code>."
|
163 |
-
msgstr ""
|
164 |
-
"<b>NB</b>: Om logoen din ikke vises, forsøk å aktivere "
|
165 |
-
"<code>allow_url_fopen</code>."
|
166 |
-
|
167 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
168 |
msgid "Company address"
|
169 |
msgstr "Firmaadresse"
|
@@ -379,111 +385,117 @@ msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
|
|
379 |
msgid "File should be less then 2MB."
|
380 |
msgstr "Filen bør være under 2 megabyte."
|
381 |
|
382 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
383 |
-
msgid "Settings"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
387 |
-
msgid "Premium"
|
388 |
-
msgstr ""
|
389 |
-
|
390 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
391 |
#, php-format
|
392 |
msgid ""
|
393 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
394 |
"PDF Invoices</strong></a>."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid "General"
|
399 |
msgstr "Generelt"
|
400 |
|
401 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
402 |
msgid "Invoices"
|
403 |
msgstr "PDF Faktura"
|
404 |
|
405 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
406 |
#, php-format
|
407 |
msgid ""
|
408 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
409 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
413 |
#, php-format
|
414 |
msgid "Version %s"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
418 |
msgid "WooCommerce PDF Invoices Premium"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
422 |
msgid ""
|
423 |
-
"This plugin offers a premium version
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
427 |
msgid "Bill periodically by generating and sending global invoices."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
431 |
msgid "Add additional PDF's to customer invoices."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
435 |
msgid "Send customer invoices directly to suppliers and others."
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
msgid "Learn more"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
443 |
msgid "Stay up-to-date"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
447 |
msgid ""
|
448 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
449 |
"our newsletter."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
453 |
msgid "Your email address"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
457 |
msgid "Signup"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
461 |
msgid "No spam, ever. Unsubscribe at any time"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
465 |
msgid "About"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
469 |
msgid ""
|
470 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
471 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
475 |
msgid "<b>Version</b>: "
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
479 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
483 |
msgid "Support"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
487 |
msgid ""
|
488 |
"We will never ask for donations, but to garantee future development, we do "
|
489 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -492,77 +504,77 @@ msgid ""
|
|
492 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
496 |
msgid ""
|
497 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
501 |
msgid "Need Help?"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
505 |
msgid "Frequently Asked Questions"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
509 |
msgid "Support forum"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
513 |
msgid "Request a feature"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
517 |
msgid "Email us"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
521 |
msgid "PDF Invoice"
|
522 |
msgstr "PDF Faktura"
|
523 |
|
524 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
525 |
msgid "Invoiced on:"
|
526 |
msgstr "Sendt:"
|
527 |
|
528 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
529 |
msgid "Invoice number:"
|
530 |
msgstr "Fakturanummer:"
|
531 |
|
532 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
533 |
msgid "View invoice"
|
534 |
msgstr "Vis faktura"
|
535 |
|
536 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
537 |
msgid "View"
|
538 |
msgstr "Vis"
|
539 |
|
540 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
541 |
msgid "Cancel invoice"
|
542 |
msgstr "Slett faktura"
|
543 |
|
544 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
545 |
msgid "Cancel"
|
546 |
msgstr "Slett"
|
547 |
|
548 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
549 |
msgid "Are you sure to delete the invoice?"
|
550 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
551 |
|
552 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
553 |
msgid "Create invoice"
|
554 |
msgstr "Opprett faktura"
|
555 |
|
556 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
557 |
msgid "Create"
|
558 |
msgstr "Opprett"
|
559 |
|
560 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
561 |
#, php-format
|
562 |
msgid "Invoice %s (PDF)"
|
563 |
msgstr "Faktura %s (PDF)"
|
564 |
|
565 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
566 |
#, php-format
|
567 |
msgid ""
|
568 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
@@ -665,6 +677,13 @@ msgstr "Ordre dato: %s"
|
|
665 |
msgid "Customer note"
|
666 |
msgstr "Kundenotat"
|
667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
#~ msgid "Feel free to use "
|
669 |
#~ msgstr "Du kan også bruke "
|
670 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-12-12 23:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-12-12 23:37+0100\n"
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\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 "Betalt"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
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:260
|
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:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
51 |
msgid "Remove logo"
|
52 |
msgstr "Fjern logo"
|
53 |
|
118 |
"Drive eller Egnyte og skriv inn kontoen din under."
|
119 |
|
120 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
121 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
122 |
msgid "Template"
|
123 |
msgstr "Mal"
|
124 |
|
170 |
msgid "Company logo"
|
171 |
msgstr "Firmalogo"
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
174 |
msgid "Company address"
|
175 |
msgstr "Firmaadresse"
|
385 |
msgid "File should be less then 2MB."
|
386 |
msgstr "Filen bør være under 2 megabyte."
|
387 |
|
388 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
#, php-format
|
390 |
msgid ""
|
391 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
392 |
"PDF Invoices</strong></a>."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
396 |
+
msgid "Settings"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
400 |
+
msgid "Premium"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
404 |
msgid "General"
|
405 |
msgstr "Generelt"
|
406 |
|
407 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
408 |
msgid "Invoices"
|
409 |
msgstr "PDF Faktura"
|
410 |
|
411 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
412 |
#, php-format
|
413 |
msgid ""
|
414 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
415 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
419 |
#, php-format
|
420 |
msgid "Version %s"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
424 |
msgid "WooCommerce PDF Invoices Premium"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
428 |
msgid ""
|
429 |
+
"This plugin offers a premium version which comes with the following features:"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
433 |
msgid "Bill periodically by generating and sending global invoices."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
437 |
msgid "Add additional PDF's to customer invoices."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
441 |
msgid "Send customer invoices directly to suppliers and others."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
445 |
+
#, php-format
|
446 |
+
msgid ""
|
447 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
451 |
msgid "Learn more"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
455 |
msgid "Stay up-to-date"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
459 |
msgid ""
|
460 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
461 |
"our newsletter."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
465 |
msgid "Your email address"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
469 |
msgid "Signup"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
473 |
msgid "No spam, ever. Unsubscribe at any time"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
477 |
msgid "About"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
481 |
msgid ""
|
482 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
483 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
487 |
msgid "<b>Version</b>: "
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
491 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
495 |
msgid "Support"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
499 |
msgid ""
|
500 |
"We will never ask for donations, but to garantee future development, we do "
|
501 |
"need your support. Please show us your appreciation by leaving a <a href="
|
504 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
508 |
msgid ""
|
509 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
513 |
msgid "Need Help?"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
517 |
msgid "Frequently Asked Questions"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
521 |
msgid "Support forum"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
525 |
msgid "Request a feature"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
529 |
msgid "Email us"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
533 |
msgid "PDF Invoice"
|
534 |
msgstr "PDF Faktura"
|
535 |
|
536 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
537 |
msgid "Invoiced on:"
|
538 |
msgstr "Sendt:"
|
539 |
|
540 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
541 |
msgid "Invoice number:"
|
542 |
msgstr "Fakturanummer:"
|
543 |
|
544 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
545 |
msgid "View invoice"
|
546 |
msgstr "Vis faktura"
|
547 |
|
548 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
549 |
msgid "View"
|
550 |
msgstr "Vis"
|
551 |
|
552 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
553 |
msgid "Cancel invoice"
|
554 |
msgstr "Slett faktura"
|
555 |
|
556 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
557 |
msgid "Cancel"
|
558 |
msgstr "Slett"
|
559 |
|
560 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
561 |
msgid "Are you sure to delete the invoice?"
|
562 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
563 |
|
564 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
565 |
msgid "Create invoice"
|
566 |
msgstr "Opprett faktura"
|
567 |
|
568 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
569 |
msgid "Create"
|
570 |
msgstr "Opprett"
|
571 |
|
572 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
573 |
#, php-format
|
574 |
msgid "Invoice %s (PDF)"
|
575 |
msgstr "Faktura %s (PDF)"
|
576 |
|
577 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
578 |
#, php-format
|
579 |
msgid ""
|
580 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
677 |
msgid "Customer note"
|
678 |
msgstr "Kundenotat"
|
679 |
|
680 |
+
#~ msgid ""
|
681 |
+
#~ "<b>Note</b>: If your logo doesn't show up, try to enable "
|
682 |
+
#~ "<code>allow_url_fopen</code>."
|
683 |
+
#~ msgstr ""
|
684 |
+
#~ "<b>NB</b>: Om logoen din ikke vises, forsøk å aktivere "
|
685 |
+
#~ "<code>allow_url_fopen</code>."
|
686 |
+
|
687 |
#~ msgid "Feel free to use "
|
688 |
#~ msgstr "Du kan også bruke "
|
689 |
|
lang/be-woocommerce-pdf-invoices-nl_NL.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -19,21 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
23 |
msgid "Paid"
|
24 |
msgstr "Betaald"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
33 |
msgid "Allowed HTML tags: "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
37 |
msgid "Remove logo"
|
38 |
msgstr "Verwijder logo"
|
39 |
|
@@ -104,7 +118,7 @@ msgstr ""
|
|
104 |
"Drive of Egnyte en voer je account onderstaand in."
|
105 |
|
106 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
107 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
108 |
msgid "Template"
|
109 |
msgstr ""
|
110 |
|
@@ -157,14 +171,6 @@ msgstr "Bedrijfsnaam"
|
|
157 |
msgid "Company logo"
|
158 |
msgstr "Bedrijfslogo"
|
159 |
|
160 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
161 |
-
msgid ""
|
162 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
163 |
-
"<code>allow_url_fopen</code>."
|
164 |
-
msgstr ""
|
165 |
-
"<b>Let wel</b>: Als het logo niet wordt getoond, probeer dan "
|
166 |
-
"<code>allow_url_fopen</code> aan te zetten."
|
167 |
-
|
168 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
169 |
msgid "Company address"
|
170 |
msgstr "Bedrijfsadres"
|
@@ -380,15 +386,7 @@ msgstr "Bestand is niet valide en bevat ':' na het eerste teken."
|
|
380 |
msgid "File should be less then 2MB."
|
381 |
msgstr "Bestand moet minder dan 2MB zijn."
|
382 |
|
383 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
384 |
-
msgid "Settings"
|
385 |
-
msgstr "Opties"
|
386 |
-
|
387 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
388 |
-
msgid "Premium"
|
389 |
-
msgstr ""
|
390 |
-
|
391 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
392 |
#, php-format
|
393 |
msgid ""
|
394 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
@@ -396,78 +394,92 @@ msgid ""
|
|
396 |
msgstr ""
|
397 |
"<a href=\"%s\">Configureer uw <strong>WooCommerce PDF Invoices</strong></a>."
|
398 |
|
399 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
msgid "General"
|
401 |
msgstr "Algemeen"
|
402 |
|
403 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
404 |
msgid "Invoices"
|
405 |
msgstr "Facturen"
|
406 |
|
407 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
408 |
#, php-format
|
409 |
msgid ""
|
410 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
411 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
415 |
#, php-format
|
416 |
msgid "Version %s"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
420 |
msgid "WooCommerce PDF Invoices Premium"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
424 |
msgid ""
|
425 |
-
"This plugin offers a premium version
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
429 |
msgid "Bill periodically by generating and sending global invoices."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
433 |
msgid "Add additional PDF's to customer invoices."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
437 |
msgid "Send customer invoices directly to suppliers and others."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
msgid "Learn more"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
445 |
msgid "Stay up-to-date"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
449 |
msgid ""
|
450 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
451 |
"our newsletter."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
455 |
msgid "Your email address"
|
456 |
msgstr "Jouw Emailadres"
|
457 |
|
458 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
459 |
msgid "Signup"
|
460 |
msgstr "Inschrijven"
|
461 |
|
462 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
463 |
msgid "No spam, ever. Unsubscribe at any time"
|
464 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
465 |
|
466 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
467 |
msgid "About"
|
468 |
msgstr "Over"
|
469 |
|
470 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
471 |
msgid ""
|
472 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
473 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -475,19 +487,19 @@ msgstr ""
|
|
475 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
476 |
"WooCommerce op te vullen."
|
477 |
|
478 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
479 |
msgid "<b>Version</b>: "
|
480 |
msgstr "<b>Versie</b>:"
|
481 |
|
482 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
483 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
484 |
msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
485 |
|
486 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
487 |
msgid "Support"
|
488 |
msgstr "Ondersteuning"
|
489 |
|
490 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
491 |
msgid ""
|
492 |
"We will never ask for donations, but to garantee future development, we do "
|
493 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -502,77 +514,77 @@ msgstr ""
|
|
502 |
"<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
|
503 |
"a>."
|
504 |
|
505 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
506 |
msgid ""
|
507 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
511 |
msgid "Need Help?"
|
512 |
msgstr "Hulp Nodig?"
|
513 |
|
514 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
515 |
msgid "Frequently Asked Questions"
|
516 |
msgstr "Veel gestelde vragen"
|
517 |
|
518 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
519 |
msgid "Support forum"
|
520 |
msgstr "Support Forum"
|
521 |
|
522 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
523 |
msgid "Request a feature"
|
524 |
msgstr "Verzoek een nieuwe functionaliteit"
|
525 |
|
526 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
527 |
msgid "Email us"
|
528 |
msgstr "Email ons"
|
529 |
|
530 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
531 |
msgid "PDF Invoice"
|
532 |
msgstr "PDF Factuur"
|
533 |
|
534 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
535 |
msgid "Invoiced on:"
|
536 |
msgstr "Gefactureerd op:"
|
537 |
|
538 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
539 |
msgid "Invoice number:"
|
540 |
msgstr "Factuurnummer:"
|
541 |
|
542 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
543 |
msgid "View invoice"
|
544 |
msgstr "Toon factuur"
|
545 |
|
546 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
547 |
msgid "View"
|
548 |
msgstr "Bekijk"
|
549 |
|
550 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
551 |
msgid "Cancel invoice"
|
552 |
msgstr "Factuur annuleren"
|
553 |
|
554 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
555 |
msgid "Cancel"
|
556 |
msgstr "Annuleer"
|
557 |
|
558 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
559 |
msgid "Are you sure to delete the invoice?"
|
560 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
561 |
|
562 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
563 |
msgid "Create invoice"
|
564 |
msgstr "Maak factuur"
|
565 |
|
566 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
567 |
msgid "Create"
|
568 |
msgstr "Aanmaken"
|
569 |
|
570 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
571 |
#, php-format
|
572 |
msgid "Invoice %s (PDF)"
|
573 |
msgstr "Factuur %s (PDF)"
|
574 |
|
575 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
576 |
#, php-format
|
577 |
msgid ""
|
578 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
@@ -675,6 +687,13 @@ msgstr "Datum bestelling: %s"
|
|
675 |
msgid "Customer note"
|
676 |
msgstr "Opmerking klant"
|
677 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
#~ msgid "Feel free to use "
|
679 |
#~ msgstr "Gebruik"
|
680 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-12-12 23:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-12-12 23:37+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\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 "Betaald"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
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:260
|
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:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
51 |
msgid "Remove logo"
|
52 |
msgstr "Verwijder logo"
|
53 |
|
118 |
"Drive of Egnyte en voer je account onderstaand in."
|
119 |
|
120 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
121 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
122 |
msgid "Template"
|
123 |
msgstr ""
|
124 |
|
171 |
msgid "Company logo"
|
172 |
msgstr "Bedrijfslogo"
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
175 |
msgid "Company address"
|
176 |
msgstr "Bedrijfsadres"
|
386 |
msgid "File should be less then 2MB."
|
387 |
msgstr "Bestand moet minder dan 2MB zijn."
|
388 |
|
389 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
394 |
msgstr ""
|
395 |
"<a href=\"%s\">Configureer uw <strong>WooCommerce PDF Invoices</strong></a>."
|
396 |
|
397 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
398 |
+
msgid "Settings"
|
399 |
+
msgstr "Opties"
|
400 |
+
|
401 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
402 |
+
msgid "Premium"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
406 |
msgid "General"
|
407 |
msgstr "Algemeen"
|
408 |
|
409 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
410 |
msgid "Invoices"
|
411 |
msgstr "Facturen"
|
412 |
|
413 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
414 |
#, php-format
|
415 |
msgid ""
|
416 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
417 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
421 |
#, php-format
|
422 |
msgid "Version %s"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
426 |
msgid "WooCommerce PDF Invoices Premium"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
430 |
msgid ""
|
431 |
+
"This plugin offers a premium version which comes with the following features:"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
435 |
msgid "Bill periodically by generating and sending global invoices."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
439 |
msgid "Add additional PDF's to customer invoices."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
443 |
msgid "Send customer invoices directly to suppliers and others."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
447 |
+
#, php-format
|
448 |
+
msgid ""
|
449 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
453 |
msgid "Learn more"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
457 |
msgid "Stay up-to-date"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
461 |
msgid ""
|
462 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
463 |
"our newsletter."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
467 |
msgid "Your email address"
|
468 |
msgstr "Jouw Emailadres"
|
469 |
|
470 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
471 |
msgid "Signup"
|
472 |
msgstr "Inschrijven"
|
473 |
|
474 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
475 |
msgid "No spam, ever. Unsubscribe at any time"
|
476 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
477 |
|
478 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
479 |
msgid "About"
|
480 |
msgstr "Over"
|
481 |
|
482 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
483 |
msgid ""
|
484 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
485 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
487 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
488 |
"WooCommerce op te vullen."
|
489 |
|
490 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
491 |
msgid "<b>Version</b>: "
|
492 |
msgstr "<b>Versie</b>:"
|
493 |
|
494 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
495 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
496 |
msgstr "<b>Auteur</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
497 |
|
498 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
499 |
msgid "Support"
|
500 |
msgstr "Ondersteuning"
|
501 |
|
502 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
503 |
msgid ""
|
504 |
"We will never ask for donations, but to garantee future development, we do "
|
505 |
"need your support. Please show us your appreciation by leaving a <a href="
|
514 |
"<a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</"
|
515 |
"a>."
|
516 |
|
517 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
518 |
msgid ""
|
519 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
523 |
msgid "Need Help?"
|
524 |
msgstr "Hulp Nodig?"
|
525 |
|
526 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
527 |
msgid "Frequently Asked Questions"
|
528 |
msgstr "Veel gestelde vragen"
|
529 |
|
530 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
531 |
msgid "Support forum"
|
532 |
msgstr "Support Forum"
|
533 |
|
534 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
535 |
msgid "Request a feature"
|
536 |
msgstr "Verzoek een nieuwe functionaliteit"
|
537 |
|
538 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
539 |
msgid "Email us"
|
540 |
msgstr "Email ons"
|
541 |
|
542 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
543 |
msgid "PDF Invoice"
|
544 |
msgstr "PDF Factuur"
|
545 |
|
546 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
547 |
msgid "Invoiced on:"
|
548 |
msgstr "Gefactureerd op:"
|
549 |
|
550 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
551 |
msgid "Invoice number:"
|
552 |
msgstr "Factuurnummer:"
|
553 |
|
554 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
555 |
msgid "View invoice"
|
556 |
msgstr "Toon factuur"
|
557 |
|
558 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
559 |
msgid "View"
|
560 |
msgstr "Bekijk"
|
561 |
|
562 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
563 |
msgid "Cancel invoice"
|
564 |
msgstr "Factuur annuleren"
|
565 |
|
566 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
567 |
msgid "Cancel"
|
568 |
msgstr "Annuleer"
|
569 |
|
570 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
571 |
msgid "Are you sure to delete the invoice?"
|
572 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
573 |
|
574 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
575 |
msgid "Create invoice"
|
576 |
msgstr "Maak factuur"
|
577 |
|
578 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
579 |
msgid "Create"
|
580 |
msgstr "Aanmaken"
|
581 |
|
582 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
583 |
#, php-format
|
584 |
msgid "Invoice %s (PDF)"
|
585 |
msgstr "Factuur %s (PDF)"
|
586 |
|
587 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
588 |
#, php-format
|
589 |
msgid ""
|
590 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
687 |
msgid "Customer note"
|
688 |
msgstr "Opmerking klant"
|
689 |
|
690 |
+
#~ msgid ""
|
691 |
+
#~ "<b>Note</b>: If your logo doesn't show up, try to enable "
|
692 |
+
#~ "<code>allow_url_fopen</code>."
|
693 |
+
#~ msgstr ""
|
694 |
+
#~ "<b>Let wel</b>: Als het logo niet wordt getoond, probeer dan "
|
695 |
+
#~ "<code>allow_url_fopen</code> aan te zetten."
|
696 |
+
|
697 |
#~ msgid "Feel free to use "
|
698 |
#~ msgstr "Gebruik"
|
699 |
|
lang/be-woocommerce-pdf-invoices-sl_SI.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -19,21 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
23 |
msgid "Paid"
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
33 |
msgid "Allowed HTML tags: "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
37 |
msgid "Remove logo"
|
38 |
msgstr ""
|
39 |
|
@@ -102,7 +116,7 @@ msgid ""
|
|
102 |
msgstr ""
|
103 |
|
104 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
105 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
106 |
msgid "Template"
|
107 |
msgstr ""
|
108 |
|
@@ -153,12 +167,6 @@ msgstr ""
|
|
153 |
msgid "Company logo"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
157 |
-
msgid ""
|
158 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
159 |
-
"<code>allow_url_fopen</code>."
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
163 |
msgid "Company address"
|
164 |
msgstr ""
|
@@ -374,111 +382,117 @@ msgstr ""
|
|
374 |
msgid "File should be less then 2MB."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
378 |
-
msgid "Settings"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
382 |
-
msgid "Premium"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
386 |
#, php-format
|
387 |
msgid ""
|
388 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
389 |
"PDF Invoices</strong></a>."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid "General"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
397 |
msgid "Invoices"
|
398 |
msgstr "Računi"
|
399 |
|
400 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
401 |
#, php-format
|
402 |
msgid ""
|
403 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
404 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
408 |
#, php-format
|
409 |
msgid "Version %s"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
413 |
msgid "WooCommerce PDF Invoices Premium"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
417 |
msgid ""
|
418 |
-
"This plugin offers a premium version
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
422 |
msgid "Bill periodically by generating and sending global invoices."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
426 |
msgid "Add additional PDF's to customer invoices."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
430 |
msgid "Send customer invoices directly to suppliers and others."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Learn more"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
438 |
msgid "Stay up-to-date"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
442 |
msgid ""
|
443 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
444 |
"our newsletter."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
448 |
msgid "Your email address"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
452 |
msgid "Signup"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
456 |
msgid "No spam, ever. Unsubscribe at any time"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
460 |
msgid "About"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
464 |
msgid ""
|
465 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
466 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
470 |
msgid "<b>Version</b>: "
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
474 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
478 |
msgid "Support"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
482 |
msgid ""
|
483 |
"We will never ask for donations, but to garantee future development, we do "
|
484 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -487,77 +501,77 @@ msgid ""
|
|
487 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
491 |
msgid ""
|
492 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
496 |
msgid "Need Help?"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
500 |
msgid "Frequently Asked Questions"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
504 |
msgid "Support forum"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
508 |
msgid "Request a feature"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
512 |
msgid "Email us"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
516 |
msgid "PDF Invoice"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
520 |
msgid "Invoiced on:"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
524 |
msgid "Invoice number:"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
528 |
msgid "View invoice"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
532 |
msgid "View"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
536 |
msgid "Cancel invoice"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
540 |
msgid "Cancel"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
544 |
msgid "Are you sure to delete the invoice?"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
548 |
msgid "Create invoice"
|
549 |
msgstr "Maak factuur"
|
550 |
|
551 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
552 |
msgid "Create"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
556 |
#, php-format
|
557 |
msgid "Invoice %s (PDF)"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
561 |
#, php-format
|
562 |
msgid ""
|
563 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-12-12 23:37+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-12-12 23:37+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\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:255
|
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:260
|
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:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
51 |
msgid "Remove logo"
|
52 |
msgstr ""
|
53 |
|
116 |
msgstr ""
|
117 |
|
118 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
119 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
120 |
msgid "Template"
|
121 |
msgstr ""
|
122 |
|
167 |
msgid "Company logo"
|
168 |
msgstr ""
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
171 |
msgid "Company address"
|
172 |
msgstr ""
|
382 |
msgid "File should be less then 2MB."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
#, php-format
|
387 |
msgid ""
|
388 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
389 |
"PDF Invoices</strong></a>."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
393 |
+
msgid "Settings"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
397 |
+
msgid "Premium"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
401 |
msgid "General"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
405 |
msgid "Invoices"
|
406 |
msgstr "Računi"
|
407 |
|
408 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
409 |
#, php-format
|
410 |
msgid ""
|
411 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
412 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
416 |
#, php-format
|
417 |
msgid "Version %s"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
421 |
msgid "WooCommerce PDF Invoices Premium"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
425 |
msgid ""
|
426 |
+
"This plugin offers a premium version which comes with the following features:"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
430 |
msgid "Bill periodically by generating and sending global invoices."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
434 |
msgid "Add additional PDF's to customer invoices."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
438 |
msgid "Send customer invoices directly to suppliers and others."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
442 |
+
#, php-format
|
443 |
+
msgid ""
|
444 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
448 |
msgid "Learn more"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
452 |
msgid "Stay up-to-date"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
456 |
msgid ""
|
457 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
458 |
"our newsletter."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
462 |
msgid "Your email address"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
466 |
msgid "Signup"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
470 |
msgid "No spam, ever. Unsubscribe at any time"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
474 |
msgid "About"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
478 |
msgid ""
|
479 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
480 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
484 |
msgid "<b>Version</b>: "
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
488 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
492 |
msgid "Support"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
496 |
msgid ""
|
497 |
"We will never ask for donations, but to garantee future development, we do "
|
498 |
"need your support. Please show us your appreciation by leaving a <a href="
|
501 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
505 |
msgid ""
|
506 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
510 |
msgid "Need Help?"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
514 |
msgid "Frequently Asked Questions"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
518 |
msgid "Support forum"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
522 |
msgid "Request a feature"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
526 |
msgid "Email us"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
530 |
msgid "PDF Invoice"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
534 |
msgid "Invoiced on:"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
538 |
msgid "Invoice number:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
542 |
msgid "View invoice"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
546 |
msgid "View"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
550 |
msgid "Cancel invoice"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
554 |
msgid "Cancel"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
558 |
msgid "Are you sure to delete the invoice?"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
562 |
msgid "Create invoice"
|
563 |
msgstr "Maak factuur"
|
564 |
|
565 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
566 |
msgid "Create"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
570 |
#, php-format
|
571 |
msgid "Invoice %s (PDF)"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
575 |
#, php-format
|
576 |
msgid ""
|
577 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
lang/be-woocommerce-pdf-invoices-sv_SE.mo
CHANGED
Binary file
|
lang/be-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: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
@@ -19,21 +19,35 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
23 |
msgid "Paid"
|
24 |
msgstr "Betald"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
27 |
#, php-format
|
28 |
msgid ""
|
29 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
33 |
msgid "Allowed HTML tags: "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
37 |
msgid "Remove logo"
|
38 |
msgstr "Ta bort logo"
|
39 |
|
@@ -102,7 +116,7 @@ msgid ""
|
|
102 |
msgstr ""
|
103 |
|
104 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
105 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
106 |
msgid "Template"
|
107 |
msgstr "Mall"
|
108 |
|
@@ -153,12 +167,6 @@ msgstr "Företagsnamn"
|
|
153 |
msgid "Company logo"
|
154 |
msgstr "Företagslogi"
|
155 |
|
156 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
157 |
-
msgid ""
|
158 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
159 |
-
"<code>allow_url_fopen</code>."
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
163 |
msgid "Company address"
|
164 |
msgstr "Företagsadress"
|
@@ -374,111 +382,117 @@ msgstr ""
|
|
374 |
msgid "File should be less then 2MB."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
378 |
-
msgid "Settings"
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
382 |
-
msgid "Premium"
|
383 |
-
msgstr ""
|
384 |
-
|
385 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
386 |
#, php-format
|
387 |
msgid ""
|
388 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
389 |
"PDF Invoices</strong></a>."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid "General"
|
394 |
msgstr "Allmänt"
|
395 |
|
396 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
397 |
msgid "Invoices"
|
398 |
msgstr "Faktura"
|
399 |
|
400 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
401 |
#, php-format
|
402 |
msgid ""
|
403 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
404 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
408 |
#, php-format
|
409 |
msgid "Version %s"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
413 |
msgid "WooCommerce PDF Invoices Premium"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
417 |
msgid ""
|
418 |
-
"This plugin offers a premium version
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
422 |
msgid "Bill periodically by generating and sending global invoices."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
426 |
msgid "Add additional PDF's to customer invoices."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
430 |
msgid "Send customer invoices directly to suppliers and others."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Learn more"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
438 |
msgid "Stay up-to-date"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
442 |
msgid ""
|
443 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
444 |
"our newsletter."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
448 |
msgid "Your email address"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
452 |
msgid "Signup"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
456 |
msgid "No spam, ever. Unsubscribe at any time"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
460 |
msgid "About"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
464 |
msgid ""
|
465 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
466 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
470 |
msgid "<b>Version</b>: "
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
474 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
478 |
msgid "Support"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
482 |
msgid ""
|
483 |
"We will never ask for donations, but to garantee future development, we do "
|
484 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -487,77 +501,77 @@ msgid ""
|
|
487 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
491 |
msgid ""
|
492 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
496 |
msgid "Need Help?"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
500 |
msgid "Frequently Asked Questions"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
504 |
msgid "Support forum"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
508 |
msgid "Request a feature"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
512 |
msgid "Email us"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
516 |
msgid "PDF Invoice"
|
517 |
msgstr "PDF Faktura"
|
518 |
|
519 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
520 |
msgid "Invoiced on:"
|
521 |
msgstr "Fakturerad"
|
522 |
|
523 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
524 |
msgid "Invoice number:"
|
525 |
msgstr "Fakturanummer"
|
526 |
|
527 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
528 |
msgid "View invoice"
|
529 |
msgstr "Visa Faktura"
|
530 |
|
531 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
532 |
msgid "View"
|
533 |
msgstr "Visa"
|
534 |
|
535 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
536 |
msgid "Cancel invoice"
|
537 |
msgstr "Avbryt Faktura"
|
538 |
|
539 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
540 |
msgid "Cancel"
|
541 |
msgstr "Avbryt"
|
542 |
|
543 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
544 |
msgid "Are you sure to delete the invoice?"
|
545 |
msgstr "Är du säker på att du vill radera fakturan?"
|
546 |
|
547 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
548 |
msgid "Create invoice"
|
549 |
msgstr "Skapa faktura"
|
550 |
|
551 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
552 |
msgid "Create"
|
553 |
msgstr "Skapa"
|
554 |
|
555 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
556 |
#, php-format
|
557 |
msgid "Invoice %s (PDF)"
|
558 |
msgstr "Faktura %s (PDF)"
|
559 |
|
560 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
561 |
#, php-format
|
562 |
msgid ""
|
563 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-12-12 23:38+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-12-12 23:38+0100\n"
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\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 "Betald"
|
25 |
|
26 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
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:260
|
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:299
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
47 |
msgid "Allowed HTML tags: "
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
51 |
msgid "Remove logo"
|
52 |
msgstr "Ta bort logo"
|
53 |
|
116 |
msgstr ""
|
117 |
|
118 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
119 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
120 |
msgid "Template"
|
121 |
msgstr "Mall"
|
122 |
|
167 |
msgid "Company logo"
|
168 |
msgstr "Företagslogi"
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
171 |
msgid "Company address"
|
172 |
msgstr "Företagsadress"
|
382 |
msgid "File should be less then 2MB."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
#, php-format
|
387 |
msgid ""
|
388 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
389 |
"PDF Invoices</strong></a>."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
393 |
+
msgid "Settings"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
397 |
+
msgid "Premium"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
401 |
msgid "General"
|
402 |
msgstr "Allmänt"
|
403 |
|
404 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
405 |
msgid "Invoices"
|
406 |
msgstr "Faktura"
|
407 |
|
408 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
409 |
#, php-format
|
410 |
msgid ""
|
411 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
412 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
416 |
#, php-format
|
417 |
msgid "Version %s"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
421 |
msgid "WooCommerce PDF Invoices Premium"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
425 |
msgid ""
|
426 |
+
"This plugin offers a premium version which comes with the following features:"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
430 |
msgid "Bill periodically by generating and sending global invoices."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
434 |
msgid "Add additional PDF's to customer invoices."
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
438 |
msgid "Send customer invoices directly to suppliers and others."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
442 |
+
#, php-format
|
443 |
+
msgid ""
|
444 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
448 |
msgid "Learn more"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
452 |
msgid "Stay up-to-date"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
456 |
msgid ""
|
457 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
458 |
"our newsletter."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
462 |
msgid "Your email address"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
466 |
msgid "Signup"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
470 |
msgid "No spam, ever. Unsubscribe at any time"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
474 |
msgid "About"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
478 |
msgid ""
|
479 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
480 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
484 |
msgid "<b>Version</b>: "
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
488 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
492 |
msgid "Support"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
496 |
msgid ""
|
497 |
"We will never ask for donations, but to garantee future development, we do "
|
498 |
"need your support. Please show us your appreciation by leaving a <a href="
|
501 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
505 |
msgid ""
|
506 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
510 |
msgid "Need Help?"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
514 |
msgid "Frequently Asked Questions"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
518 |
msgid "Support forum"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
522 |
msgid "Request a feature"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
526 |
msgid "Email us"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
530 |
msgid "PDF Invoice"
|
531 |
msgstr "PDF Faktura"
|
532 |
|
533 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
534 |
msgid "Invoiced on:"
|
535 |
msgstr "Fakturerad"
|
536 |
|
537 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
538 |
msgid "Invoice number:"
|
539 |
msgstr "Fakturanummer"
|
540 |
|
541 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
542 |
msgid "View invoice"
|
543 |
msgstr "Visa Faktura"
|
544 |
|
545 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
546 |
msgid "View"
|
547 |
msgstr "Visa"
|
548 |
|
549 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
550 |
msgid "Cancel invoice"
|
551 |
msgstr "Avbryt Faktura"
|
552 |
|
553 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
554 |
msgid "Cancel"
|
555 |
msgstr "Avbryt"
|
556 |
|
557 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
558 |
msgid "Are you sure to delete the invoice?"
|
559 |
msgstr "Är du säker på att du vill radera fakturan?"
|
560 |
|
561 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
562 |
msgid "Create invoice"
|
563 |
msgstr "Skapa faktura"
|
564 |
|
565 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
566 |
msgid "Create"
|
567 |
msgstr "Skapa"
|
568 |
|
569 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
570 |
#, php-format
|
571 |
msgid "Invoice %s (PDF)"
|
572 |
msgstr "Faktura %s (PDF)"
|
573 |
|
574 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
575 |
#, php-format
|
576 |
msgid ""
|
577 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
lang/be-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: 2015-
|
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"
|
@@ -17,116 +17,122 @@ msgstr ""
|
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
|
20 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
21 |
-
msgid "Settings"
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: includes/be-woocommerce-pdf-invoices.php:120
|
25 |
-
msgid "Premium"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: includes/be-woocommerce-pdf-invoices.php:135
|
29 |
#, php-format
|
30 |
msgid ""
|
31 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
32 |
"PDF Invoices</strong></a>."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "General"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
40 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
41 |
msgid "Template"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
45 |
msgid "Invoices"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
49 |
#, php-format
|
50 |
msgid ""
|
51 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
52 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
56 |
#, php-format
|
57 |
msgid "Version %s"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
61 |
msgid "WooCommerce PDF Invoices Premium"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
65 |
msgid ""
|
66 |
-
"This plugin offers a premium version
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
70 |
msgid "Bill periodically by generating and sending global invoices."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
74 |
msgid "Add additional PDF's to customer invoices."
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
78 |
msgid "Send customer invoices directly to suppliers and others."
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgid "Learn more"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
86 |
msgid "Stay up-to-date"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
90 |
msgid ""
|
91 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
92 |
"our newsletter."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
96 |
msgid "Your email address"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
100 |
msgid "Signup"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
104 |
msgid "No spam, ever. Unsubscribe at any time"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
108 |
msgid "About"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
112 |
msgid ""
|
113 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
114 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
118 |
msgid "<b>Version</b>: "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
122 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
126 |
msgid "Support"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
130 |
msgid ""
|
131 |
"We will never ask for donations, but to garantee future development, we do "
|
132 |
"need your support. Please show us your appreciation by leaving a <a href="
|
@@ -135,77 +141,77 @@ msgid ""
|
|
135 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
139 |
msgid ""
|
140 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
144 |
msgid "Need Help?"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
148 |
msgid "Frequently Asked Questions"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
152 |
msgid "Support forum"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
156 |
msgid "Request a feature"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
160 |
msgid "Email us"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
164 |
msgid "PDF Invoice"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
168 |
msgid "Invoiced on:"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
172 |
msgid "Invoice number:"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
176 |
msgid "View invoice"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
180 |
msgid "View"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
184 |
msgid "Cancel invoice"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
188 |
msgid "Cancel"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
192 |
msgid "Are you sure to delete the invoice?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
196 |
msgid "Create invoice"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
200 |
msgid "Create"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
204 |
#, php-format
|
205 |
msgid "Invoice %s (PDF)"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/be-woocommerce-pdf-invoices.php:
|
209 |
#, php-format
|
210 |
msgid ""
|
211 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
@@ -221,21 +227,35 @@ msgid ""
|
|
221 |
"page first."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/abstracts/abstract-bewpi-document.php:
|
225 |
msgid "Paid"
|
226 |
msgstr ""
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
229 |
#, php-format
|
230 |
msgid ""
|
231 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
235 |
msgid "Allowed HTML tags: "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/abstracts/abstract-bewpi-setting.php:
|
239 |
msgid "Remove logo"
|
240 |
msgstr ""
|
241 |
|
@@ -350,12 +370,6 @@ msgstr ""
|
|
350 |
msgid "Company logo"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/admin/settings/class-bewpi-admin-settings-template.php:182
|
354 |
-
msgid ""
|
355 |
-
"<b>Note</b>: If your logo doesn't show up, try to enable "
|
356 |
-
"<code>allow_url_fopen</code>."
|
357 |
-
msgstr ""
|
358 |
-
|
359 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
360 |
msgid "Company address"
|
361 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-12-12 23:36+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"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
|
20 |
+
#: includes/be-woocommerce-pdf-invoices.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
#, php-format
|
22 |
msgid ""
|
23 |
"Alrighty then! <a href=\"%s\">Let's start configuring <strong>WooCommerce "
|
24 |
"PDF Invoices</strong></a>."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: includes/be-woocommerce-pdf-invoices.php:142
|
28 |
+
msgid "Settings"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: includes/be-woocommerce-pdf-invoices.php:143
|
32 |
+
msgid "Premium"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/be-woocommerce-pdf-invoices.php:221
|
36 |
msgid "General"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/be-woocommerce-pdf-invoices.php:222
|
40 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:88
|
41 |
msgid "Template"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/be-woocommerce-pdf-invoices.php:245
|
45 |
msgid "Invoices"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/be-woocommerce-pdf-invoices.php:284
|
49 |
#, php-format
|
50 |
msgid ""
|
51 |
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
52 |
"%s★★★★★%s rating. A huge thank you in advance!"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: includes/be-woocommerce-pdf-invoices.php:285
|
56 |
#, php-format
|
57 |
msgid "Version %s"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/be-woocommerce-pdf-invoices.php:309
|
61 |
msgid "WooCommerce PDF Invoices Premium"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: includes/be-woocommerce-pdf-invoices.php:311
|
65 |
msgid ""
|
66 |
+
"This plugin offers a premium version which comes with the following features:"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/be-woocommerce-pdf-invoices.php:312
|
70 |
msgid "Bill periodically by generating and sending global invoices."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: includes/be-woocommerce-pdf-invoices.php:313
|
74 |
msgid "Add additional PDF's to customer invoices."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: includes/be-woocommerce-pdf-invoices.php:314
|
78 |
msgid "Send customer invoices directly to suppliers and others."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/be-woocommerce-pdf-invoices.php:315
|
82 |
+
#, php-format
|
83 |
+
msgid ""
|
84 |
+
"Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin emails."
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: includes/be-woocommerce-pdf-invoices.php:317
|
88 |
msgid "Learn more"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: includes/be-woocommerce-pdf-invoices.php:321
|
92 |
msgid "Stay up-to-date"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: includes/be-woocommerce-pdf-invoices.php:330
|
96 |
msgid ""
|
97 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
98 |
"our newsletter."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/be-woocommerce-pdf-invoices.php:336
|
102 |
msgid "Your email address"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: includes/be-woocommerce-pdf-invoices.php:339
|
106 |
msgid "Signup"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: includes/be-woocommerce-pdf-invoices.php:340
|
110 |
msgid "No spam, ever. Unsubscribe at any time"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: includes/be-woocommerce-pdf-invoices.php:348
|
114 |
msgid "About"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/be-woocommerce-pdf-invoices.php:349
|
118 |
msgid ""
|
119 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
120 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: includes/be-woocommerce-pdf-invoices.php:350
|
124 |
msgid "<b>Version</b>: "
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/be-woocommerce-pdf-invoices.php:352
|
128 |
msgid "<b>Author</b>: <a href=\"https://github.com/baselbers\">Bas Elbers</a>"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/be-woocommerce-pdf-invoices.php:355
|
132 |
msgid "Support"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/be-woocommerce-pdf-invoices.php:356
|
136 |
msgid ""
|
137 |
"We will never ask for donations, but to garantee future development, we do "
|
138 |
"need your support. Please show us your appreciation by leaving a <a href="
|
141 |
"org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/be-woocommerce-pdf-invoices.php:375
|
145 |
msgid ""
|
146 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/be-woocommerce-pdf-invoices.php:380
|
150 |
msgid "Need Help?"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/be-woocommerce-pdf-invoices.php:382
|
154 |
msgid "Frequently Asked Questions"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/be-woocommerce-pdf-invoices.php:383
|
158 |
msgid "Support forum"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: includes/be-woocommerce-pdf-invoices.php:384
|
162 |
msgid "Request a feature"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/be-woocommerce-pdf-invoices.php:385
|
166 |
msgid "Email us"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/be-woocommerce-pdf-invoices.php:440
|
170 |
msgid "PDF Invoice"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/be-woocommerce-pdf-invoices.php:466
|
174 |
msgid "Invoiced on:"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/be-woocommerce-pdf-invoices.php:470
|
178 |
msgid "Invoice number:"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
182 |
msgid "View invoice"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: includes/be-woocommerce-pdf-invoices.php:508
|
186 |
msgid "View"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
190 |
msgid "Cancel invoice"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/be-woocommerce-pdf-invoices.php:509
|
194 |
msgid "Cancel"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/be-woocommerce-pdf-invoices.php:511
|
198 |
msgid "Are you sure to delete the invoice?"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
202 |
msgid "Create invoice"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/be-woocommerce-pdf-invoices.php:514
|
206 |
msgid "Create"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/be-woocommerce-pdf-invoices.php:547
|
210 |
#, php-format
|
211 |
msgid "Invoice %s (PDF)"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/be-woocommerce-pdf-invoices.php:658
|
215 |
#, php-format
|
216 |
msgid ""
|
217 |
"You are working with <b>WooCommerce PDF Invoices</b> for some time now. We "
|
227 |
"page first."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/abstracts/abstract-bewpi-document.php:64
|
231 |
msgid "Paid"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:255
|
235 |
+
#, php-format
|
236 |
+
msgid ""
|
237 |
+
"Could not create invoice. In order to reset invoice number with %d, delete "
|
238 |
+
"all invoices with invoice number %s and greater."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/abstracts/abstract-bewpi-invoice.php:260
|
242 |
+
#, php-format
|
243 |
+
msgid ""
|
244 |
+
"Could not create invoice. Invoice with invoice number %s already exists. "
|
245 |
+
"First delete invoice and try again."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
#: includes/abstracts/abstract-bewpi-invoice.php:299
|
249 |
#, php-format
|
250 |
msgid ""
|
251 |
"Invoice with invoice number %s not found. First create invoice and try again."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: includes/abstracts/abstract-bewpi-setting.php:90
|
255 |
msgid "Allowed HTML tags: "
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: includes/abstracts/abstract-bewpi-setting.php:170
|
259 |
msgid "Remove logo"
|
260 |
msgstr ""
|
261 |
|
370 |
msgid "Company logo"
|
371 |
msgstr ""
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
#: includes/admin/settings/class-bewpi-admin-settings-template.php:188
|
374 |
msgid "Company address"
|
375 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: woocommerce pdf invoices, invoice, generate, pdf, woocommerce, attachment, email, completed order, customer invoice, processing order, attach, automatic, vat, rate, sequential, number
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.3.1
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -32,7 +32,8 @@ This WooCommerce plugin generates PDF invoices, attaches it to the WooCommerce e
|
|
32 |
> This plugin offers a premium version wich comes with the following features:<br /><br />
|
33 |
> - Periodically bill by generating and sending global invoices.<br />
|
34 |
> - Add additional PDF's to customer invoices.<br />
|
35 |
-
> - Send customer invoices directly to suppliers and others.<br
|
|
|
36 |
> [Upgrade to WooCommerce PDF Invoices Premium >>](http://wcpdfinvoices.com)
|
37 |
|
38 |
= Support =
|
@@ -123,6 +124,11 @@ To change the options of the PDF, use below example.
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
|
|
|
|
|
|
|
|
|
|
126 |
= 2.3.13 - November 28, 2015 =
|
127 |
|
128 |
- Improved: Changed file_get_contents to wp_get_remote
|
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.5
|
6 |
Tested up to: 4.3.1
|
7 |
+
Stable tag: 2.3.14
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
32 |
> This plugin offers a premium version wich comes with the following features:<br /><br />
|
33 |
> - Periodically bill by generating and sending global invoices.<br />
|
34 |
> - Add additional PDF's to customer invoices.<br />
|
35 |
+
> - Send customer invoices directly to suppliers and others.<br />
|
36 |
+
> - Compatible with [WooCommerce Subscriptions](http://www.woothemes.com/products/woocommerce-subscriptions) plugin emails.<br /><br />
|
37 |
> [Upgrade to WooCommerce PDF Invoices Premium >>](http://wcpdfinvoices.com)
|
38 |
|
39 |
= Support =
|
124 |
|
125 |
== Changelog ==
|
126 |
|
127 |
+
= 2.3.14 - December 11, 2015 =
|
128 |
+
|
129 |
+
- Fixed: Fatal errors due to Wordpress 4.4
|
130 |
+
- Improved: Replaced textdomain variable by strongly typed string (properly prepared for translations)
|
131 |
+
|
132 |
= 2.3.13 - November 28, 2015 =
|
133 |
|
134 |
- Improved: Changed file_get_contents to wp_get_remote
|