Version Description
April 25, 2015 =
Added: Admin notices
Improved: Translations
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- admin/classes/be-woocommerce-pdf-invoices.php +100 -0
- admin/classes/bewpi-template-settings.php +7 -7
- bootstrap.php +6 -5
- lang/be-woocommerce-pdf-invoices-fr_FR.mo +0 -0
- lang/be-woocommerce-pdf-invoices-fr_FR.po +58 -39
- lang/be-woocommerce-pdf-invoices-nb_NO.mo +0 -0
- lang/be-woocommerce-pdf-invoices-nb_NO.po +161 -143
- lang/be-woocommerce-pdf-invoices-nl_NL.mo +0 -0
- lang/be-woocommerce-pdf-invoices-nl_NL.po +58 -39
- readme.txt +6 -1
admin/classes/be-woocommerce-pdf-invoices.php
CHANGED
@@ -31,6 +31,13 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
31 |
*/
|
32 |
private $textdomain = 'be-woocommerce-pdf-invoices';
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
/**
|
35 |
* Initialize plugin and register actions and filters.
|
36 |
*
|
@@ -74,6 +81,8 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
74 |
*/
|
75 |
public function init() {
|
76 |
|
|
|
|
|
77 |
/**
|
78 |
* Init invoice actions to view, delete or save invoice.
|
79 |
*/
|
@@ -110,6 +119,36 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
110 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'add_my_account_download_pdf_action' ), 10, 2 );
|
111 |
}
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
/**
|
114 |
* Callback to sniff for specific plugin actions to view, create or delete invoice.
|
115 |
*/
|
@@ -383,5 +422,66 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
383 |
}
|
384 |
return $actions;
|
385 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
386 |
}
|
387 |
}
|
31 |
*/
|
32 |
private $textdomain = 'be-woocommerce-pdf-invoices';
|
33 |
|
34 |
+
const OPTION_INSTALL_DATE = 'bewpi-install-date';
|
35 |
+
const OPTION_ADMIN_NOTICE_KEY = 'bewpi-hide-notice';
|
36 |
+
|
37 |
+
public static function plugin_activation() {
|
38 |
+
self::insert_install_date();
|
39 |
+
}
|
40 |
+
|
41 |
/**
|
42 |
* Initialize plugin and register actions and filters.
|
43 |
*
|
81 |
*/
|
82 |
public function init() {
|
83 |
|
84 |
+
$this->init_review_admin_notice();
|
85 |
+
|
86 |
/**
|
87 |
* Init invoice actions to view, delete or save invoice.
|
88 |
*/
|
119 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'add_my_account_download_pdf_action' ), 10, 2 );
|
120 |
}
|
121 |
|
122 |
+
private function init_review_admin_notice() {
|
123 |
+
// Check if user is an administrator
|
124 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
125 |
+
return false;
|
126 |
+
}
|
127 |
+
|
128 |
+
// Admin notice hide catch
|
129 |
+
add_action( 'admin_init', array( &$this, 'catch_hide_notice' ) );
|
130 |
+
|
131 |
+
$current_user = wp_get_current_user();
|
132 |
+
$hide_notice = get_user_meta( $current_user->ID, self::OPTION_ADMIN_NOTICE_KEY, true );
|
133 |
+
|
134 |
+
if ( current_user_can( 'install_plugins' ) && $hide_notice == '' ) {
|
135 |
+
// Get installation date
|
136 |
+
$datetime_install = $this->get_install_date();
|
137 |
+
$datetime_past = new DateTime( '-10 days' );
|
138 |
+
//$datetime_past = new DateTime( '-10 second' );
|
139 |
+
|
140 |
+
if ( $datetime_past >= $datetime_install ) {
|
141 |
+
// 10 or more days ago, show admin notice
|
142 |
+
add_action( 'admin_notices', array( &$this, 'display_admin_notice' ) );
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
+
// Don't add admin bar option in admin panel
|
147 |
+
if ( is_admin() ) {
|
148 |
+
return;
|
149 |
+
}
|
150 |
+
}
|
151 |
+
|
152 |
/**
|
153 |
* Callback to sniff for specific plugin actions to view, create or delete invoice.
|
154 |
*/
|
422 |
}
|
423 |
return $actions;
|
424 |
}
|
425 |
+
|
426 |
+
private static function insert_install_date() {
|
427 |
+
$datetime_now = new DateTime();
|
428 |
+
$date_string = $datetime_now->format( 'Y-m-d' );
|
429 |
+
add_site_option( self::OPTION_INSTALL_DATE, $date_string, '', 'no' );
|
430 |
+
|
431 |
+
return $date_string;
|
432 |
+
}
|
433 |
+
|
434 |
+
private function get_install_date() {
|
435 |
+
$date_string = get_site_option( self::OPTION_INSTALL_DATE, '' );
|
436 |
+
if ( $date_string == '' ) {
|
437 |
+
// There is no install date, plugin was installed before version 2.2.1. Add it now.
|
438 |
+
$date_string = self::insert_install_date();
|
439 |
+
}
|
440 |
+
|
441 |
+
return new DateTime( $date_string );
|
442 |
+
}
|
443 |
+
|
444 |
+
private function get_admin_querystring_array() {
|
445 |
+
parse_str( $_SERVER['QUERY_STRING'], $params );
|
446 |
+
|
447 |
+
return $params;
|
448 |
+
}
|
449 |
+
|
450 |
+
public function catch_hide_notice() {
|
451 |
+
if ( isset( $_GET[self::OPTION_ADMIN_NOTICE_KEY] ) && current_user_can( 'install_plugins' ) ) {
|
452 |
+
// Add user meta
|
453 |
+
global $current_user;
|
454 |
+
add_user_meta( $current_user->ID, self::OPTION_ADMIN_NOTICE_KEY, '1', true );
|
455 |
+
|
456 |
+
// Build redirect URL
|
457 |
+
$query_params = $this->get_admin_querystring_array();
|
458 |
+
unset( $query_params[self::OPTION_ADMIN_NOTICE_KEY] );
|
459 |
+
$query_string = http_build_query( $query_params );
|
460 |
+
if ( $query_string != '' ) {
|
461 |
+
$query_string = '?' . $query_string;
|
462 |
+
}
|
463 |
+
|
464 |
+
$redirect_url = 'http';
|
465 |
+
if ( isset( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] == 'on' ) {
|
466 |
+
$redirect_url .= 's';
|
467 |
+
}
|
468 |
+
$redirect_url .= '://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] . $query_string;
|
469 |
+
|
470 |
+
// Redirect
|
471 |
+
wp_redirect( $redirect_url );
|
472 |
+
exit;
|
473 |
+
}
|
474 |
+
}
|
475 |
+
|
476 |
+
public function display_admin_notice() {
|
477 |
+
|
478 |
+
$query_params = $this->get_admin_querystring_array();
|
479 |
+
$query_string = '?' . http_build_query( array_merge( $query_params, array( self::OPTION_ADMIN_NOTICE_KEY => '1' ) ) );
|
480 |
+
|
481 |
+
echo '<div class="updated"><p>';
|
482 |
+
printf( __( "Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. Please show us your appreciation by leaving a ★★★★★ rating. A huge thank you in advance! <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 );
|
483 |
+
echo "</p></div>";
|
484 |
+
|
485 |
+
}
|
486 |
}
|
487 |
}
|
admin/classes/bewpi-template-settings.php
CHANGED
@@ -200,7 +200,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
200 |
'page' => $this->settings_key,
|
201 |
'section' => 'footer',
|
202 |
'type' => 'checkbox',
|
203 |
-
'desc' => 'Show customer notes',
|
204 |
'class' => 'bewpi-customer-notes-option-title',
|
205 |
'default' => 1
|
206 |
),
|
@@ -315,7 +315,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
315 |
'page' => $this->settings_key,
|
316 |
'section' => 'invoice_number',
|
317 |
'type' => 'checkbox',
|
318 |
-
'desc' => 'Reset on 1st of january',
|
319 |
'class' => 'bewpi-reset-counter-yearly-option-title',
|
320 |
'default' => 1
|
321 |
),
|
@@ -328,7 +328,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
328 |
'page' => $this->settings_key,
|
329 |
'section' => 'visible_columns',
|
330 |
'type' => 'checkbox',
|
331 |
-
'desc' => 'SKU',
|
332 |
'class' => 'bewpi-visible-columns-option-title',
|
333 |
'default' => 0
|
334 |
),
|
@@ -340,7 +340,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
340 |
'page' => $this->settings_key,
|
341 |
'section' => 'visible_columns',
|
342 |
'type' => 'checkbox',
|
343 |
-
'desc' => 'Subtotal',
|
344 |
'class' => 'bewpi-visible-columns-option-title',
|
345 |
'default' => 1
|
346 |
),
|
@@ -352,7 +352,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
352 |
'page' => $this->settings_key,
|
353 |
'section' => 'visible_columns',
|
354 |
'type' => 'checkbox',
|
355 |
-
'desc' => 'Tax',
|
356 |
'class' => 'bewpi-visible-columns-option-title',
|
357 |
'default' => 1
|
358 |
),
|
@@ -364,7 +364,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
364 |
'page' => $this->settings_key,
|
365 |
'section' => 'visible_columns',
|
366 |
'type' => 'checkbox',
|
367 |
-
'desc' => 'Discount',
|
368 |
'class' => 'bewpi-visible-columns-option-title',
|
369 |
'default' => 1
|
370 |
),
|
@@ -376,7 +376,7 @@ if ( ! class_exists( 'BEWPI_Template_Settings' ) ) {
|
|
376 |
'page' => $this->settings_key,
|
377 |
'section' => 'visible_columns',
|
378 |
'type' => 'checkbox',
|
379 |
-
'desc' => 'Shipping',
|
380 |
'class' => 'bewpi-visible-columns-option-title',
|
381 |
'default' => 1
|
382 |
)
|
200 |
'page' => $this->settings_key,
|
201 |
'section' => 'footer',
|
202 |
'type' => 'checkbox',
|
203 |
+
'desc' => __( 'Show customer notes', $this->textdomain ),
|
204 |
'class' => 'bewpi-customer-notes-option-title',
|
205 |
'default' => 1
|
206 |
),
|
315 |
'page' => $this->settings_key,
|
316 |
'section' => 'invoice_number',
|
317 |
'type' => 'checkbox',
|
318 |
+
'desc' => __( 'Reset on 1st of january', $this->textdomain ),
|
319 |
'class' => 'bewpi-reset-counter-yearly-option-title',
|
320 |
'default' => 1
|
321 |
),
|
328 |
'page' => $this->settings_key,
|
329 |
'section' => 'visible_columns',
|
330 |
'type' => 'checkbox',
|
331 |
+
'desc' => __( 'SKU', $this->textdomain ),
|
332 |
'class' => 'bewpi-visible-columns-option-title',
|
333 |
'default' => 0
|
334 |
),
|
340 |
'page' => $this->settings_key,
|
341 |
'section' => 'visible_columns',
|
342 |
'type' => 'checkbox',
|
343 |
+
'desc' => __( 'Subtotal', $this->textdomain ),
|
344 |
'class' => 'bewpi-visible-columns-option-title',
|
345 |
'default' => 1
|
346 |
),
|
352 |
'page' => $this->settings_key,
|
353 |
'section' => 'visible_columns',
|
354 |
'type' => 'checkbox',
|
355 |
+
'desc' => __( 'Tax', $this->textdomain ),
|
356 |
'class' => 'bewpi-visible-columns-option-title',
|
357 |
'default' => 1
|
358 |
),
|
364 |
'page' => $this->settings_key,
|
365 |
'section' => 'visible_columns',
|
366 |
'type' => 'checkbox',
|
367 |
+
'desc' => __( 'Discount', $this->textdomain ),
|
368 |
'class' => 'bewpi-visible-columns-option-title',
|
369 |
'default' => 1
|
370 |
),
|
376 |
'page' => $this->settings_key,
|
377 |
'section' => 'visible_columns',
|
378 |
'type' => 'checkbox',
|
379 |
+
'desc' => __( 'Shipping', $this->textdomain ),
|
380 |
'class' => 'bewpi-visible-columns-option-title',
|
381 |
'default' => 1
|
382 |
)
|
bootstrap.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* @version 2.2.
|
5 |
* @package WooCommerce PDF Invoices
|
6 |
* @author baaaaas
|
7 |
*
|
@@ -9,7 +9,7 @@
|
|
9 |
* Plugin Name: WooCommerce PDF Invoices
|
10 |
* Plugin URI:
|
11 |
* Description: Automatically or manually create and send PDF Invoices for WooCommerce orders and connect with Dropbox, Google Drive, OneDrive or Egnyte.
|
12 |
-
* Version: 2.2.
|
13 |
* Author: baaaaas
|
14 |
* Author URI:
|
15 |
* License: GPL-2.0+
|
@@ -22,7 +22,7 @@ if ( ! defined( 'ABSPATH' ) )
|
|
22 |
die( 'Access denied.' );
|
23 |
|
24 |
if( !defined( 'BEWPI_VERSION' ) )
|
25 |
-
define( 'BEWPI_VERSION', '2.2.
|
26 |
|
27 |
if( !defined( 'BEWPI_URL' ) )
|
28 |
define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
|
@@ -45,13 +45,14 @@ if ( !defined( 'BEWPI_LIB_DIR' ) )
|
|
45 |
define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
|
46 |
|
47 |
require_once( BEWPI_DIR . 'functions.php' );
|
48 |
-
require_once( BEWPI_DIR . 'admin/classes/be-woocommerce-pdf-invoices.php' );
|
49 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-settings.php' );
|
50 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-general-settings.php' );
|
51 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-template-settings.php' );
|
52 |
require_once( BEWPI_DIR . 'includes/classes/bewpi-document.php' );
|
53 |
require_once( BEWPI_DIR . 'includes/classes/bewpi-invoice.php' );
|
|
|
54 |
|
55 |
if ( class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
56 |
-
|
|
|
57 |
}
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* @version 2.2.2
|
5 |
* @package WooCommerce PDF Invoices
|
6 |
* @author baaaaas
|
7 |
*
|
9 |
* Plugin Name: WooCommerce PDF Invoices
|
10 |
* Plugin URI:
|
11 |
* Description: Automatically or manually create and send PDF Invoices for WooCommerce orders and connect with Dropbox, Google Drive, OneDrive or Egnyte.
|
12 |
+
* Version: 2.2.2
|
13 |
* Author: baaaaas
|
14 |
* Author URI:
|
15 |
* License: GPL-2.0+
|
22 |
die( 'Access denied.' );
|
23 |
|
24 |
if( !defined( 'BEWPI_VERSION' ) )
|
25 |
+
define( 'BEWPI_VERSION', '2.2.2' );
|
26 |
|
27 |
if( !defined( 'BEWPI_URL' ) )
|
28 |
define( 'BEWPI_URL', plugins_url( '', __FILE__ ) . '/' );
|
45 |
define( 'BEWPI_LIB_DIR', plugin_dir_path( __FILE__ ) . '/lib/' );
|
46 |
|
47 |
require_once( BEWPI_DIR . 'functions.php' );
|
|
|
48 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-settings.php' );
|
49 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-general-settings.php' );
|
50 |
require_once( BEWPI_DIR . 'admin/classes/bewpi-template-settings.php' );
|
51 |
require_once( BEWPI_DIR . 'includes/classes/bewpi-document.php' );
|
52 |
require_once( BEWPI_DIR . 'includes/classes/bewpi-invoice.php' );
|
53 |
+
require_once( BEWPI_DIR . 'admin/classes/be-woocommerce-pdf-invoices.php' );
|
54 |
|
55 |
if ( class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
56 |
+
add_action( 'plugins_loaded', create_function( '', 'new BE_WooCommerce_PDF_Invoices();' ) );
|
57 |
+
register_activation_hook( __FILE__, array( 'BE_WooCommerce_PDF_Invoices', 'plugin_activation' ) );
|
58 |
}
|
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-04-25
|
5 |
-
"PO-Revision-Date: 2015-04-25
|
6 |
"Last-Translator: Mosaika.fr <bonjour@mosaika.fr>\n"
|
7 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
8 |
"Language: fr_FR\n"
|
@@ -19,64 +19,73 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
23 |
msgid "General"
|
24 |
msgstr "Général"
|
25 |
|
26 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
27 |
#: admin/classes/bewpi-template-settings.php:86
|
28 |
msgid "Template"
|
29 |
msgstr "Template"
|
30 |
|
31 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
32 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
33 |
msgid "Invoices"
|
34 |
msgstr "Factures"
|
35 |
|
36 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "Facture PDF"
|
39 |
|
40 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
41 |
msgid "Invoiced on:"
|
42 |
msgstr "Facturés sur"
|
43 |
|
44 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
45 |
msgid "Invoice number:"
|
46 |
msgstr "Numéro de facture"
|
47 |
|
48 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
49 |
msgid "View invoice"
|
50 |
msgstr " Voir la facture"
|
51 |
|
52 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
53 |
msgid "View"
|
54 |
msgstr "Voir"
|
55 |
|
56 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
57 |
msgid "Cancel invoice"
|
58 |
msgstr "Annuler la facture"
|
59 |
|
60 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
61 |
msgid "Cancel"
|
62 |
msgstr "Annuler"
|
63 |
|
64 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
67 |
|
68 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
69 |
msgid "Create invoice"
|
70 |
msgstr "Créer une facture"
|
71 |
|
72 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
73 |
msgid "Create"
|
74 |
msgstr "créer"
|
75 |
|
76 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
77 |
msgid "Download invoice (PDF)"
|
78 |
msgstr "Télécharger la facture (PDF)"
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
#: admin/classes/bewpi-general-settings.php:85
|
81 |
msgid "Attach to Email"
|
82 |
msgstr "Joindre à l'Email"
|
@@ -172,6 +181,10 @@ msgstr "Texte d'introduction"
|
|
172 |
msgid "Terms & conditions, policies etc."
|
173 |
msgstr "Termes et conditions, mentions légales, etc..."
|
174 |
|
|
|
|
|
|
|
|
|
175 |
#: admin/classes/bewpi-template-settings.php:211
|
176 |
msgid "Type"
|
177 |
msgstr "Type"
|
@@ -225,6 +238,34 @@ msgstr ""
|
|
225 |
"N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s %sNote:"
|
226 |
"%s %s estrequis."
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
#: admin/classes/bewpi-template-settings.php:393
|
229 |
msgid "General Options"
|
230 |
msgstr "Options générales "
|
@@ -312,10 +353,6 @@ msgstr "Date de commande %s"
|
|
312 |
msgid "Description"
|
313 |
msgstr "Description"
|
314 |
|
315 |
-
#: includes/views/templates/invoice-micro.php:220
|
316 |
-
msgid "SKU"
|
317 |
-
msgstr "UGS"
|
318 |
-
|
319 |
#: includes/views/templates/invoice-micro.php:223
|
320 |
msgid "Cost"
|
321 |
msgstr "Coût"
|
@@ -333,18 +370,6 @@ msgstr "TVA"
|
|
333 |
msgid "Total"
|
334 |
msgstr "Total"
|
335 |
|
336 |
-
#: includes/views/templates/invoice-micro.php:372
|
337 |
-
msgid "Discount"
|
338 |
-
msgstr "Réduction"
|
339 |
-
|
340 |
-
#: includes/views/templates/invoice-micro.php:380
|
341 |
-
msgid "Shipping"
|
342 |
-
msgstr "Livraison"
|
343 |
-
|
344 |
-
#: includes/views/templates/invoice-micro.php:388
|
345 |
-
msgid "Subtotal"
|
346 |
-
msgstr "Sous-total"
|
347 |
-
|
348 |
#: includes/views/templates/invoice-micro.php:398
|
349 |
#, php-format
|
350 |
msgid "VAT %s"
|
@@ -357,18 +382,12 @@ msgstr "Remboursement"
|
|
357 |
#~ msgid "Feel free to use"
|
358 |
#~ msgstr "N'hésitez pas à l'utiliser"
|
359 |
|
360 |
-
#~ msgid "Show customer notes"
|
361 |
-
#~ msgstr "Montrer les notes du client"
|
362 |
-
|
363 |
#~ msgid "Quantity"
|
364 |
#~ msgstr "Qté"
|
365 |
|
366 |
#~ msgid "Unit price"
|
367 |
#~ msgstr "Prix unitaire"
|
368 |
|
369 |
-
#~ msgid "Tax"
|
370 |
-
#~ msgstr "TVA"
|
371 |
-
|
372 |
#~ msgid "Signup at %s and enter your account beyond."
|
373 |
#~ msgstr "Inscription à %s et entrez votre compte."
|
374 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-04-25 23:38+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-04-25 23:39+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 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:189
|
23 |
msgid "General"
|
24 |
msgstr "Général"
|
25 |
|
26 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:190
|
27 |
#: admin/classes/bewpi-template-settings.php:86
|
28 |
msgid "Template"
|
29 |
msgstr "Template"
|
30 |
|
31 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:209
|
32 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:210
|
33 |
msgid "Invoices"
|
34 |
msgstr "Factures"
|
35 |
|
36 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:315
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "Facture PDF"
|
39 |
|
40 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:342
|
41 |
msgid "Invoiced on:"
|
42 |
msgstr "Facturés sur"
|
43 |
|
44 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:346
|
45 |
msgid "Invoice number:"
|
46 |
msgstr "Numéro de facture"
|
47 |
|
48 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:384
|
49 |
msgid "View invoice"
|
50 |
msgstr " Voir la facture"
|
51 |
|
52 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:384
|
53 |
msgid "View"
|
54 |
msgstr "Voir"
|
55 |
|
56 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
57 |
msgid "Cancel invoice"
|
58 |
msgstr "Annuler la facture"
|
59 |
|
60 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
61 |
msgid "Cancel"
|
62 |
msgstr "Annuler"
|
63 |
|
64 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
67 |
|
68 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:387
|
69 |
msgid "Create invoice"
|
70 |
msgstr "Créer une facture"
|
71 |
|
72 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:387
|
73 |
msgid "Create"
|
74 |
msgstr "créer"
|
75 |
|
76 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:420
|
77 |
msgid "Download invoice (PDF)"
|
78 |
msgstr "Télécharger la facture (PDF)"
|
79 |
|
80 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:482
|
81 |
+
#, php-format
|
82 |
+
msgid ""
|
83 |
+
"Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
|
84 |
+
"Please show us your appreciation by leaving a ★★★★★ rating. A huge thank you "
|
85 |
+
"in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</"
|
86 |
+
"a> - <a href='%s'>No, already done it!</a>"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
#: admin/classes/bewpi-general-settings.php:85
|
90 |
msgid "Attach to Email"
|
91 |
msgstr "Joindre à l'Email"
|
181 |
msgid "Terms & conditions, policies etc."
|
182 |
msgstr "Termes et conditions, mentions légales, etc..."
|
183 |
|
184 |
+
#: admin/classes/bewpi-template-settings.php:203
|
185 |
+
msgid "Show customer notes"
|
186 |
+
msgstr "Montrer les notes du client"
|
187 |
+
|
188 |
#: admin/classes/bewpi-template-settings.php:211
|
189 |
msgid "Type"
|
190 |
msgstr "Type"
|
238 |
"N'hésitez pas à utiliser les espaces réservés %s %s %s %s et %s. %s %sNote:"
|
239 |
"%s %s estrequis."
|
240 |
|
241 |
+
#: admin/classes/bewpi-template-settings.php:318
|
242 |
+
msgid "Reset on 1st of january"
|
243 |
+
msgstr "Réinitialiser le 1er janvier"
|
244 |
+
|
245 |
+
#: admin/classes/bewpi-template-settings.php:331
|
246 |
+
#: includes/views/templates/invoice-micro.php:220
|
247 |
+
msgid "SKU"
|
248 |
+
msgstr "UGS"
|
249 |
+
|
250 |
+
#: admin/classes/bewpi-template-settings.php:343
|
251 |
+
#: includes/views/templates/invoice-micro.php:388
|
252 |
+
msgid "Subtotal"
|
253 |
+
msgstr "Sous-total"
|
254 |
+
|
255 |
+
#: admin/classes/bewpi-template-settings.php:355
|
256 |
+
msgid "Tax"
|
257 |
+
msgstr "TVA"
|
258 |
+
|
259 |
+
#: admin/classes/bewpi-template-settings.php:367
|
260 |
+
#: includes/views/templates/invoice-micro.php:372
|
261 |
+
msgid "Discount"
|
262 |
+
msgstr "Réduction"
|
263 |
+
|
264 |
+
#: admin/classes/bewpi-template-settings.php:379
|
265 |
+
#: includes/views/templates/invoice-micro.php:380
|
266 |
+
msgid "Shipping"
|
267 |
+
msgstr "Livraison"
|
268 |
+
|
269 |
#: admin/classes/bewpi-template-settings.php:393
|
270 |
msgid "General Options"
|
271 |
msgstr "Options générales "
|
353 |
msgid "Description"
|
354 |
msgstr "Description"
|
355 |
|
|
|
|
|
|
|
|
|
356 |
#: includes/views/templates/invoice-micro.php:223
|
357 |
msgid "Cost"
|
358 |
msgstr "Coût"
|
370 |
msgid "Total"
|
371 |
msgstr "Total"
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
#: includes/views/templates/invoice-micro.php:398
|
374 |
#, php-format
|
375 |
msgid "VAT %s"
|
382 |
#~ msgid "Feel free to use"
|
383 |
#~ msgstr "N'hésitez pas à l'utiliser"
|
384 |
|
|
|
|
|
|
|
385 |
#~ msgid "Quantity"
|
386 |
#~ msgstr "Qté"
|
387 |
|
388 |
#~ msgid "Unit price"
|
389 |
#~ msgstr "Prix unitaire"
|
390 |
|
|
|
|
|
|
|
391 |
#~ msgid "Signup at %s and enter your account beyond."
|
392 |
#~ msgstr "Inscription à %s et entrez votre compte."
|
393 |
|
lang/be-woocommerce-pdf-invoices-nb_NO.mo
CHANGED
Binary file
|
lang/be-woocommerce-pdf-invoices-nb_NO.po
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date: 2015-04-
|
5 |
-
"PO-Revision-Date: 2015-04-
|
6 |
-
"Last-Translator:
|
7 |
-
"Language-Team:
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.7.
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
@@ -28,54 +28,54 @@ msgstr "Generelt"
|
|
28 |
msgid "Template"
|
29 |
msgstr "Mal"
|
30 |
|
|
|
31 |
#: admin/classes/be-woocommerce-pdf-invoices.php:170
|
32 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:171
|
33 |
msgid "Invoices"
|
34 |
msgstr "Fakturaer"
|
35 |
|
36 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "PDF Faktura"
|
39 |
|
40 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
41 |
msgid "Invoiced on:"
|
42 |
-
msgstr ""
|
43 |
|
44 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
45 |
msgid "Invoice number:"
|
46 |
-
msgstr ""
|
47 |
|
48 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
49 |
msgid "View invoice"
|
50 |
-
msgstr ""
|
51 |
|
52 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
53 |
msgid "View"
|
54 |
-
msgstr ""
|
55 |
|
56 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
57 |
msgid "Cancel invoice"
|
58 |
-
msgstr ""
|
59 |
|
60 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
61 |
msgid "Cancel"
|
62 |
-
msgstr ""
|
63 |
|
64 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
-
msgstr ""
|
67 |
|
68 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
69 |
msgid "Create invoice"
|
70 |
-
msgstr "
|
71 |
|
72 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
73 |
msgid "Create"
|
74 |
-
msgstr ""
|
75 |
|
76 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
77 |
msgid "Download invoice (PDF)"
|
78 |
-
msgstr ""
|
79 |
|
80 |
#: admin/classes/bewpi-general-settings.php:85
|
81 |
msgid "Attach to Email"
|
@@ -83,11 +83,11 @@ msgstr "Legg ved e-post"
|
|
83 |
|
84 |
#: admin/classes/bewpi-general-settings.php:93
|
85 |
msgid "Processing order"
|
86 |
-
msgstr "Behandler
|
87 |
|
88 |
#: admin/classes/bewpi-general-settings.php:97
|
89 |
msgid "Completed order"
|
90 |
-
msgstr "Fullført
|
91 |
|
92 |
#: admin/classes/bewpi-general-settings.php:101
|
93 |
msgid "Customer invoice"
|
@@ -99,7 +99,7 @@ msgstr "Legg til ny bestilling e-post"
|
|
99 |
|
100 |
#: admin/classes/bewpi-general-settings.php:127
|
101 |
msgid "Enable Email It In"
|
102 |
-
msgstr ""
|
103 |
|
104 |
#: admin/classes/bewpi-general-settings.php:135
|
105 |
msgid "Email It In account"
|
@@ -108,15 +108,15 @@ msgstr "Email It In konto"
|
|
108 |
#: admin/classes/bewpi-general-settings.php:140
|
109 |
#, php-format
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: admin/classes/bewpi-general-settings.php:153
|
114 |
msgid "Email Options"
|
115 |
-
msgstr ""
|
116 |
|
117 |
#: admin/classes/bewpi-general-settings.php:159
|
118 |
msgid "Cloud Storage Options"
|
119 |
-
msgstr ""
|
120 |
|
121 |
#: admin/classes/bewpi-general-settings.php:166
|
122 |
#, php-format
|
@@ -124,12 +124,14 @@ msgid ""
|
|
124 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
125 |
"Egnyte and enter your account below."
|
126 |
msgstr ""
|
|
|
|
|
127 |
|
128 |
#: admin/classes/bewpi-settings.php:89
|
129 |
msgid "Feel free to use "
|
130 |
-
msgstr ""
|
131 |
|
132 |
-
#: admin/classes/bewpi-settings.php:
|
133 |
msgid "Remove logo"
|
134 |
msgstr "Fjern logo"
|
135 |
|
@@ -139,12 +141,12 @@ msgstr "Fargetema"
|
|
139 |
|
140 |
#: admin/classes/bewpi-template-settings.php:115
|
141 |
msgid "Date format"
|
142 |
-
msgstr ""
|
143 |
|
144 |
#: admin/classes/bewpi-template-settings.php:120
|
145 |
#, php-format
|
146 |
msgid "%sFormat%s of invoice date and order date."
|
147 |
-
msgstr ""
|
148 |
|
149 |
#: admin/classes/bewpi-template-settings.php:131
|
150 |
msgid "Company name"
|
@@ -164,7 +166,7 @@ msgstr "Firmadetaljer"
|
|
164 |
|
165 |
#: admin/classes/bewpi-template-settings.php:175
|
166 |
msgid "Intro text"
|
167 |
-
msgstr "
|
168 |
|
169 |
#: admin/classes/bewpi-template-settings.php:187
|
170 |
msgid "Terms & conditions, policies etc."
|
@@ -172,19 +174,19 @@ msgstr "Betingelser, vilkår etc."
|
|
172 |
|
173 |
#: admin/classes/bewpi-template-settings.php:211
|
174 |
msgid "Type"
|
175 |
-
msgstr ""
|
176 |
|
177 |
#: admin/classes/bewpi-template-settings.php:219
|
178 |
msgid "WooCommerce order number"
|
179 |
-
msgstr ""
|
180 |
|
181 |
#: admin/classes/bewpi-template-settings.php:223
|
182 |
msgid "Sequential number"
|
183 |
-
msgstr ""
|
184 |
|
185 |
#: admin/classes/bewpi-template-settings.php:247
|
186 |
msgid "Next"
|
187 |
-
msgstr ""
|
188 |
|
189 |
#: admin/classes/bewpi-template-settings.php:252
|
190 |
#, php-format
|
@@ -193,22 +195,25 @@ msgid ""
|
|
193 |
"Only available with sequential numbering type and you need to check the "
|
194 |
"checkbox to actually reset the value."
|
195 |
msgstr ""
|
|
|
|
|
|
|
196 |
|
197 |
#: admin/classes/bewpi-template-settings.php:261
|
198 |
msgid "Digits"
|
199 |
-
msgstr ""
|
200 |
|
201 |
#: admin/classes/bewpi-template-settings.php:277
|
202 |
msgid "[prefix]"
|
203 |
-
msgstr ""
|
204 |
|
205 |
#: admin/classes/bewpi-template-settings.php:288
|
206 |
msgid "[suffix]"
|
207 |
-
msgstr ""
|
208 |
|
209 |
#: admin/classes/bewpi-template-settings.php:299
|
210 |
msgid "Format"
|
211 |
-
msgstr ""
|
212 |
|
213 |
#: admin/classes/bewpi-template-settings.php:304
|
214 |
#, php-format
|
@@ -216,282 +221,295 @@ msgid ""
|
|
216 |
"Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
|
217 |
"required."
|
218 |
msgstr ""
|
|
|
|
|
219 |
|
220 |
#: admin/classes/bewpi-template-settings.php:393
|
221 |
msgid "General Options"
|
222 |
-
msgstr ""
|
223 |
|
224 |
#: admin/classes/bewpi-template-settings.php:399
|
225 |
msgid "Invoice Number Options"
|
226 |
-
msgstr ""
|
227 |
|
228 |
#: admin/classes/bewpi-template-settings.php:405
|
229 |
msgid "Header Options"
|
230 |
-
msgstr ""
|
231 |
|
232 |
#: admin/classes/bewpi-template-settings.php:411
|
233 |
msgid "Footer Options"
|
234 |
-
msgstr ""
|
235 |
|
236 |
#: admin/classes/bewpi-template-settings.php:417
|
237 |
msgid "Visible Columns"
|
238 |
-
msgstr ""
|
239 |
|
240 |
#: admin/classes/bewpi-template-settings.php:423
|
241 |
msgid "These are the general template options."
|
242 |
-
msgstr ""
|
243 |
|
244 |
#: admin/classes/bewpi-template-settings.php:424
|
245 |
msgid "These are the invoice number options."
|
246 |
-
msgstr ""
|
247 |
|
248 |
#: admin/classes/bewpi-template-settings.php:425
|
249 |
msgid "The header will be visible on every page. "
|
250 |
-
msgstr ""
|
251 |
|
252 |
#: admin/classes/bewpi-template-settings.php:426
|
253 |
msgid "The footer will be visible on every page. "
|
254 |
-
msgstr ""
|
255 |
|
256 |
#: admin/classes/bewpi-template-settings.php:427
|
257 |
msgid "Enable or disable the columns."
|
258 |
-
msgstr ""
|
259 |
|
260 |
#: admin/classes/bewpi-template-settings.php:497
|
261 |
msgid "File is invalid and contains either '..' or './'."
|
262 |
-
msgstr "Filen er ugyldig og inneholder '
|
263 |
|
264 |
#: admin/classes/bewpi-template-settings.php:504
|
265 |
msgid "File is invalid and contains ':' after the first character."
|
266 |
-
msgstr "Filen er ugyldig og inneholder ':' etter første
|
267 |
|
268 |
#: admin/classes/bewpi-template-settings.php:513
|
269 |
msgid "File should be less then 2MB."
|
270 |
-
msgstr ""
|
271 |
|
272 |
#: includes/classes/bewpi-invoice.php:158
|
273 |
msgid "Customer note"
|
274 |
-
msgstr "Kundenotat
|
275 |
|
276 |
#: includes/classes/bewpi-invoice.php:169
|
277 |
#, php-format
|
278 |
msgid "%sPayment%s via"
|
279 |
-
msgstr ""
|
280 |
|
281 |
-
#: includes/views/templates/invoice-micro.php:
|
282 |
msgid "Invoice to"
|
283 |
-
msgstr ""
|
284 |
|
285 |
-
#: includes/views/templates/invoice-micro.php:
|
286 |
msgid "Ship to"
|
287 |
-
msgstr ""
|
288 |
|
289 |
-
#: includes/views/templates/invoice-micro.php:
|
290 |
msgid "Invoice"
|
291 |
msgstr "Faktura"
|
292 |
|
293 |
-
#: includes/views/templates/invoice-micro.php:
|
294 |
#, php-format
|
295 |
msgid "Order Number %s"
|
296 |
-
msgstr ""
|
297 |
|
298 |
-
#: includes/views/templates/invoice-micro.php:
|
299 |
#, php-format
|
300 |
msgid "Order Date %s"
|
301 |
-
msgstr ""
|
302 |
|
303 |
-
#: includes/views/templates/invoice-micro.php:
|
304 |
msgid "Description"
|
305 |
msgstr "Produkt"
|
306 |
|
307 |
-
#: includes/views/templates/invoice-micro.php:
|
308 |
msgid "SKU"
|
309 |
msgstr "SKU"
|
310 |
|
311 |
-
#: includes/views/templates/invoice-micro.php:
|
312 |
msgid "Cost"
|
313 |
-
msgstr ""
|
314 |
|
315 |
-
#: includes/views/templates/invoice-micro.php:
|
316 |
msgid "Qty"
|
317 |
-
msgstr ""
|
318 |
|
319 |
-
#: includes/views/templates/invoice-micro.php:
|
320 |
msgid "VAT"
|
321 |
-
msgstr ""
|
322 |
|
323 |
-
#: includes/views/templates/invoice-micro.php:
|
324 |
-
#: includes/views/templates/invoice-micro.php:
|
325 |
msgid "Total"
|
326 |
-
msgstr "
|
327 |
|
328 |
-
#: includes/views/templates/invoice-micro.php:
|
329 |
msgid "Discount"
|
330 |
msgstr "Rabatt"
|
331 |
|
332 |
-
#: includes/views/templates/invoice-micro.php:
|
333 |
msgid "Shipping"
|
334 |
msgstr "Frakt"
|
335 |
|
336 |
-
#: includes/views/templates/invoice-micro.php:
|
337 |
msgid "Subtotal"
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: includes/views/templates/invoice-micro.php:
|
341 |
#, php-format
|
342 |
msgid "VAT %s"
|
343 |
-
msgstr ""
|
344 |
|
345 |
-
#: includes/views/templates/invoice-micro.php:
|
346 |
msgid "Refunded"
|
347 |
-
msgstr ""
|
348 |
|
349 |
#~ msgid "General Settings"
|
350 |
-
#~ msgstr "
|
351 |
|
352 |
#~ msgid ""
|
353 |
#~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
|
354 |
-
#~ msgstr ""
|
355 |
-
#~ "Send automatisk faktura til Google Drive, Egnyte, Dropbox eller OneDrive"
|
356 |
|
357 |
#~ msgid "For bookkeeping purposes."
|
358 |
-
#~ msgstr "
|
359 |
|
360 |
#~ msgid "Signup at %s and enter your account below."
|
361 |
-
#~ msgstr "
|
362 |
|
363 |
#~ msgid "Enter your %s account."
|
364 |
-
#~ msgstr "
|
365 |
|
366 |
#~ msgid "Invalid type of Email."
|
367 |
-
#~ msgstr "
|
368 |
|
369 |
#~ msgid "Please don't try to change the values."
|
370 |
-
#~ msgstr "
|
371 |
|
372 |
#~ msgid "Invalid Email address."
|
373 |
-
#~ msgstr "
|
374 |
|
375 |
#~ msgid "Allowed tags: "
|
376 |
-
#~ msgstr "
|
377 |
|
378 |
#~ msgid "Template Settings"
|
379 |
-
#~ msgstr "
|
380 |
|
381 |
#~ msgid "Invoice number type"
|
382 |
-
#~ msgstr "
|
383 |
|
384 |
#~ msgid "Next invoice number"
|
385 |
-
#~ msgstr "
|
386 |
|
387 |
#~ msgid "Number of digits"
|
388 |
-
#~ msgstr "
|
389 |
|
390 |
#~ msgid "Invoice number prefix"
|
391 |
-
#~ msgstr "
|
392 |
|
393 |
#~ msgid "Invoice number suffix"
|
394 |
-
#~ msgstr "
|
395 |
|
396 |
#~ msgid "Invoice number format"
|
397 |
-
#~ msgstr "
|
398 |
|
399 |
#~ msgid "Reset on 1st January"
|
400 |
-
#~ msgstr "
|
401 |
|
402 |
#~ msgid "Invoice date format"
|
403 |
-
#~ msgstr "
|
|
|
|
|
|
|
404 |
|
405 |
#~ msgid "Show SKU"
|
406 |
-
#~ msgstr "
|
407 |
|
408 |
#~ msgid "Show discount"
|
409 |
-
#~ msgstr "
|
410 |
|
411 |
#~ msgid "Show subtotal"
|
412 |
-
#~ msgstr "
|
413 |
|
414 |
#~ msgid "Show tax"
|
415 |
-
#~ msgstr "
|
416 |
|
417 |
#~ msgid "Show shipping"
|
418 |
-
#~ msgstr "
|
419 |
|
420 |
#~ msgid "Show customer notes"
|
421 |
-
#~ msgstr "
|
422 |
|
423 |
#~ msgid "Color theme of the invoice."
|
424 |
-
#~ msgstr "
|
425 |
|
426 |
#~ msgid ""
|
427 |
#~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
|
428 |
#~ "png."
|
429 |
#~ msgstr ""
|
430 |
-
#~ "
|
431 |
-
#~ "
|
432 |
|
433 |
#~ msgid "Invoice number to use for next invoice."
|
434 |
-
#~ msgstr "
|
435 |
|
436 |
#~ msgid "Number of zero digits."
|
437 |
-
#~ msgstr "
|
438 |
|
439 |
#~ msgid "Prefix text for the invoice number. Not required."
|
440 |
-
#~ msgstr "
|
441 |
|
442 |
#~ msgid "Suffix text for the invoice number. Not required."
|
443 |
-
#~ msgstr "
|
444 |
|
445 |
-
#~ msgid ""
|
446 |
-
#~ "
|
447 |
-
#~ msgstr ""
|
448 |
-
#~ "Bruk [prefix], [suffix] og [number] som plassholdere. [number] er "
|
449 |
-
#~ "obligatorisk."
|
450 |
|
451 |
#~ msgid "Reset on the first of January."
|
452 |
-
#~ msgstr "
|
453 |
|
454 |
#~ msgid "%sFormat%s of the date. Examples: %s or %s."
|
455 |
-
#~ msgstr "%sFormat%s
|
|
|
|
|
|
|
456 |
|
457 |
#~ msgid "Invalid template."
|
458 |
-
#~ msgstr "
|
459 |
|
460 |
#~ msgid "Invalid color theme code."
|
461 |
-
#~ msgstr "
|
462 |
|
463 |
#~ msgid "Invalid company name."
|
464 |
-
#~ msgstr "
|
465 |
|
466 |
#~ msgid "Invalid input into one of the textarea's."
|
467 |
-
#~ msgstr "
|
|
|
|
|
|
|
468 |
|
469 |
#~ msgid "Invalid (next) invoice number."
|
470 |
-
#~ msgstr "
|
471 |
|
472 |
#~ msgid "Invalid invoice number digits."
|
473 |
-
#~ msgstr "
|
474 |
|
475 |
#~ msgid "The [number] placeholder is required as invoice number format."
|
476 |
-
#~ msgstr "[number]
|
477 |
|
478 |
#~ msgid "Invalid invoice number format."
|
479 |
-
#~ msgstr "
|
480 |
|
481 |
#~ msgid "Invalid date format."
|
482 |
-
#~ msgstr "
|
483 |
|
484 |
#~ msgid "Please upload image with extension jpg, jpeg or png."
|
485 |
-
#~ msgstr "
|
486 |
|
487 |
#~ msgid "Quantity"
|
488 |
-
#~ msgstr "
|
489 |
|
490 |
#~ msgid "Unit price"
|
491 |
-
#~ msgstr "
|
492 |
|
493 |
#~ msgid "Tax"
|
494 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
|
496 |
#~ msgid "Signup at %s and enter your account beyond."
|
497 |
#~ msgstr "Meld je aan op %s en vul je account onderstaand in."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-04-23 23:33+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-04-25 16:31+0100\n"
|
6 |
+
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: nb\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.7.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
17 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
28 |
msgid "Template"
|
29 |
msgstr "Mal"
|
30 |
|
31 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:169
|
32 |
#: admin/classes/be-woocommerce-pdf-invoices.php:170
|
|
|
33 |
msgid "Invoices"
|
34 |
msgstr "Fakturaer"
|
35 |
|
36 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:275
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "PDF Faktura"
|
39 |
|
40 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:302
|
41 |
msgid "Invoiced on:"
|
42 |
+
msgstr "Sendt:"
|
43 |
|
44 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:306
|
45 |
msgid "Invoice number:"
|
46 |
+
msgstr "Fakturanummer:"
|
47 |
|
48 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:344
|
49 |
msgid "View invoice"
|
50 |
+
msgstr "Vis faktura"
|
51 |
|
52 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:344
|
53 |
msgid "View"
|
54 |
+
msgstr "Vis"
|
55 |
|
56 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:345
|
57 |
msgid "Cancel invoice"
|
58 |
+
msgstr "Slett faktura"
|
59 |
|
60 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:345
|
61 |
msgid "Cancel"
|
62 |
+
msgstr "Slett"
|
63 |
|
64 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:345
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
+
msgstr "Er du sikker på at du vil slette fakturaen?"
|
67 |
|
68 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:347
|
69 |
msgid "Create invoice"
|
70 |
+
msgstr "Opprett faktura"
|
71 |
|
72 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:347
|
73 |
msgid "Create"
|
74 |
+
msgstr "Opprett"
|
75 |
|
76 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:380
|
77 |
msgid "Download invoice (PDF)"
|
78 |
+
msgstr "Last ned faktura (PDF)"
|
79 |
|
80 |
#: admin/classes/bewpi-general-settings.php:85
|
81 |
msgid "Attach to Email"
|
83 |
|
84 |
#: admin/classes/bewpi-general-settings.php:93
|
85 |
msgid "Processing order"
|
86 |
+
msgstr "Behandler ordre"
|
87 |
|
88 |
#: admin/classes/bewpi-general-settings.php:97
|
89 |
msgid "Completed order"
|
90 |
+
msgstr "Fullført ordre"
|
91 |
|
92 |
#: admin/classes/bewpi-general-settings.php:101
|
93 |
msgid "Customer invoice"
|
99 |
|
100 |
#: admin/classes/bewpi-general-settings.php:127
|
101 |
msgid "Enable Email It In"
|
102 |
+
msgstr "Aktiver dette epostvarselet"
|
103 |
|
104 |
#: admin/classes/bewpi-general-settings.php:135
|
105 |
msgid "Email It In account"
|
108 |
#: admin/classes/bewpi-general-settings.php:140
|
109 |
#, php-format
|
110 |
msgid "Get your account from your Email It In %suser account%s."
|
111 |
+
msgstr "Få din konto fra din Email It In %suser account%s."
|
112 |
|
113 |
#: admin/classes/bewpi-general-settings.php:153
|
114 |
msgid "Email Options"
|
115 |
+
msgstr "E-post alternativer"
|
116 |
|
117 |
#: admin/classes/bewpi-general-settings.php:159
|
118 |
msgid "Cloud Storage Options"
|
119 |
+
msgstr "Skylagringsalternativer"
|
120 |
|
121 |
#: admin/classes/bewpi-general-settings.php:166
|
122 |
#, php-format
|
124 |
"Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
125 |
"Egnyte and enter your account below."
|
126 |
msgstr ""
|
127 |
+
"Registrer deg på %s for å sende fakturaene til din DropBox, OneDrive, Google "
|
128 |
+
"Drive eller Egnyte og skriv inn kontoen din under."
|
129 |
|
130 |
#: admin/classes/bewpi-settings.php:89
|
131 |
msgid "Feel free to use "
|
132 |
+
msgstr "Du kan også bruke "
|
133 |
|
134 |
+
#: admin/classes/bewpi-settings.php:153
|
135 |
msgid "Remove logo"
|
136 |
msgstr "Fjern logo"
|
137 |
|
141 |
|
142 |
#: admin/classes/bewpi-template-settings.php:115
|
143 |
msgid "Date format"
|
144 |
+
msgstr "Datoformat"
|
145 |
|
146 |
#: admin/classes/bewpi-template-settings.php:120
|
147 |
#, php-format
|
148 |
msgid "%sFormat%s of invoice date and order date."
|
149 |
+
msgstr "%sFormat%s til fakturadato og ordredato."
|
150 |
|
151 |
#: admin/classes/bewpi-template-settings.php:131
|
152 |
msgid "Company name"
|
166 |
|
167 |
#: admin/classes/bewpi-template-settings.php:175
|
168 |
msgid "Intro text"
|
169 |
+
msgstr "Introduksjonstekst"
|
170 |
|
171 |
#: admin/classes/bewpi-template-settings.php:187
|
172 |
msgid "Terms & conditions, policies etc."
|
174 |
|
175 |
#: admin/classes/bewpi-template-settings.php:211
|
176 |
msgid "Type"
|
177 |
+
msgstr "Type"
|
178 |
|
179 |
#: admin/classes/bewpi-template-settings.php:219
|
180 |
msgid "WooCommerce order number"
|
181 |
+
msgstr "WooCommerce bestillingsnummer"
|
182 |
|
183 |
#: admin/classes/bewpi-template-settings.php:223
|
184 |
msgid "Sequential number"
|
185 |
+
msgstr "Sekvensielt nummer"
|
186 |
|
187 |
#: admin/classes/bewpi-template-settings.php:247
|
188 |
msgid "Next"
|
189 |
+
msgstr "Neste"
|
190 |
|
191 |
#: admin/classes/bewpi-template-settings.php:252
|
192 |
#, php-format
|
195 |
"Only available with sequential numbering type and you need to check the "
|
196 |
"checkbox to actually reset the value."
|
197 |
msgstr ""
|
198 |
+
"TIlbakestill fakturatelleren og start med neste fakturanummer. %s %sMerk:%s "
|
199 |
+
"Kun tilgjengelig med sekvensielle nummer og du må huke av boksen for å "
|
200 |
+
"faktisk tilbakestille verdien."
|
201 |
|
202 |
#: admin/classes/bewpi-template-settings.php:261
|
203 |
msgid "Digits"
|
204 |
+
msgstr "Tegn"
|
205 |
|
206 |
#: admin/classes/bewpi-template-settings.php:277
|
207 |
msgid "[prefix]"
|
208 |
+
msgstr "[prefix]"
|
209 |
|
210 |
#: admin/classes/bewpi-template-settings.php:288
|
211 |
msgid "[suffix]"
|
212 |
+
msgstr "[suffix]"
|
213 |
|
214 |
#: admin/classes/bewpi-template-settings.php:299
|
215 |
msgid "Format"
|
216 |
+
msgstr "Format"
|
217 |
|
218 |
#: admin/classes/bewpi-template-settings.php:304
|
219 |
#, php-format
|
221 |
"Feel free to use the placeholders %s %s %s %s and %s. %s %sNote:%s %s is "
|
222 |
"required."
|
223 |
msgstr ""
|
224 |
+
"Du kan også bruke plassholderne %s %s %s %s og %s. %s %sMerk:%s %s er "
|
225 |
+
"obligatorisk."
|
226 |
|
227 |
#: admin/classes/bewpi-template-settings.php:393
|
228 |
msgid "General Options"
|
229 |
+
msgstr "Generelle valg"
|
230 |
|
231 |
#: admin/classes/bewpi-template-settings.php:399
|
232 |
msgid "Invoice Number Options"
|
233 |
+
msgstr "Alternativer for fakturanummer"
|
234 |
|
235 |
#: admin/classes/bewpi-template-settings.php:405
|
236 |
msgid "Header Options"
|
237 |
+
msgstr "Overskriftsvalg"
|
238 |
|
239 |
#: admin/classes/bewpi-template-settings.php:411
|
240 |
msgid "Footer Options"
|
241 |
+
msgstr "Footer valg"
|
242 |
|
243 |
#: admin/classes/bewpi-template-settings.php:417
|
244 |
msgid "Visible Columns"
|
245 |
+
msgstr "Synlige kolonner"
|
246 |
|
247 |
#: admin/classes/bewpi-template-settings.php:423
|
248 |
msgid "These are the general template options."
|
249 |
+
msgstr "Dette er de generelle alternativene for malen."
|
250 |
|
251 |
#: admin/classes/bewpi-template-settings.php:424
|
252 |
msgid "These are the invoice number options."
|
253 |
+
msgstr "Dette er alternativene for fakturanummer."
|
254 |
|
255 |
#: admin/classes/bewpi-template-settings.php:425
|
256 |
msgid "The header will be visible on every page. "
|
257 |
+
msgstr "Overskriften vil være synlig på alle sider. "
|
258 |
|
259 |
#: admin/classes/bewpi-template-settings.php:426
|
260 |
msgid "The footer will be visible on every page. "
|
261 |
+
msgstr "Footeren vil være synlig på alle sider. "
|
262 |
|
263 |
#: admin/classes/bewpi-template-settings.php:427
|
264 |
msgid "Enable or disable the columns."
|
265 |
+
msgstr "Aktiver eller deaktiver kolonnene."
|
266 |
|
267 |
#: admin/classes/bewpi-template-settings.php:497
|
268 |
msgid "File is invalid and contains either '..' or './'."
|
269 |
+
msgstr "Filen er ugyldig og inneholder enten '...' eller './'."
|
270 |
|
271 |
#: admin/classes/bewpi-template-settings.php:504
|
272 |
msgid "File is invalid and contains ':' after the first character."
|
273 |
+
msgstr "Filen er ugyldig og inneholder ':' etter den første bokstaven."
|
274 |
|
275 |
#: admin/classes/bewpi-template-settings.php:513
|
276 |
msgid "File should be less then 2MB."
|
277 |
+
msgstr "Filen bør være under 2 megabyte."
|
278 |
|
279 |
#: includes/classes/bewpi-invoice.php:158
|
280 |
msgid "Customer note"
|
281 |
+
msgstr "Kundenotat"
|
282 |
|
283 |
#: includes/classes/bewpi-invoice.php:169
|
284 |
#, php-format
|
285 |
msgid "%sPayment%s via"
|
286 |
+
msgstr "%sBetaling%s med"
|
287 |
|
288 |
+
#: includes/views/templates/invoice-micro.php:185
|
289 |
msgid "Invoice to"
|
290 |
+
msgstr "Faktura til"
|
291 |
|
292 |
+
#: includes/views/templates/invoice-micro.php:189
|
293 |
msgid "Ship to"
|
294 |
+
msgstr "Leveringsadresse"
|
295 |
|
296 |
+
#: includes/views/templates/invoice-micro.php:199
|
297 |
msgid "Invoice"
|
298 |
msgstr "Faktura"
|
299 |
|
300 |
+
#: includes/views/templates/invoice-micro.php:202
|
301 |
#, php-format
|
302 |
msgid "Order Number %s"
|
303 |
+
msgstr "Bestillingsnummer: %s"
|
304 |
|
305 |
+
#: includes/views/templates/invoice-micro.php:203
|
306 |
#, php-format
|
307 |
msgid "Order Date %s"
|
308 |
+
msgstr "Bestillingsdato: %s"
|
309 |
|
310 |
+
#: includes/views/templates/invoice-micro.php:217
|
311 |
msgid "Description"
|
312 |
msgstr "Produkt"
|
313 |
|
314 |
+
#: includes/views/templates/invoice-micro.php:220
|
315 |
msgid "SKU"
|
316 |
msgstr "SKU"
|
317 |
|
318 |
+
#: includes/views/templates/invoice-micro.php:223
|
319 |
msgid "Cost"
|
320 |
+
msgstr "Pris"
|
321 |
|
322 |
+
#: includes/views/templates/invoice-micro.php:224
|
323 |
msgid "Qty"
|
324 |
+
msgstr "Ant"
|
325 |
|
326 |
+
#: includes/views/templates/invoice-micro.php:231
|
327 |
msgid "VAT"
|
328 |
+
msgstr "MVA"
|
329 |
|
330 |
+
#: includes/views/templates/invoice-micro.php:241
|
331 |
+
#: includes/views/templates/invoice-micro.php:407
|
332 |
msgid "Total"
|
333 |
+
msgstr "Totalt"
|
334 |
|
335 |
+
#: includes/views/templates/invoice-micro.php:372
|
336 |
msgid "Discount"
|
337 |
msgstr "Rabatt"
|
338 |
|
339 |
+
#: includes/views/templates/invoice-micro.php:380
|
340 |
msgid "Shipping"
|
341 |
msgstr "Frakt"
|
342 |
|
343 |
+
#: includes/views/templates/invoice-micro.php:388
|
344 |
msgid "Subtotal"
|
345 |
+
msgstr "Delsum"
|
346 |
|
347 |
+
#: includes/views/templates/invoice-micro.php:398
|
348 |
#, php-format
|
349 |
msgid "VAT %s"
|
350 |
+
msgstr "MVA %s"
|
351 |
|
352 |
+
#: includes/views/templates/invoice-micro.php:414
|
353 |
msgid "Refunded"
|
354 |
+
msgstr "Refundert"
|
355 |
|
356 |
#~ msgid "General Settings"
|
357 |
+
#~ msgstr "Algemene Opties"
|
358 |
|
359 |
#~ msgid ""
|
360 |
#~ "Automatically send invoice to Google Drive, Egnyte, Dropbox or OneDrive"
|
361 |
+
#~ msgstr "Verzend automatisch naar Google Drive, Egnyte, Dropbox of OneDrive"
|
|
|
362 |
|
363 |
#~ msgid "For bookkeeping purposes."
|
364 |
+
#~ msgstr "Voor boekhoudkundige doeleinden."
|
365 |
|
366 |
#~ msgid "Signup at %s and enter your account below."
|
367 |
+
#~ msgstr "Meld je aan op %s en geef je account onderstaand in."
|
368 |
|
369 |
#~ msgid "Enter your %s account."
|
370 |
+
#~ msgstr "Het %s account."
|
371 |
|
372 |
#~ msgid "Invalid type of Email."
|
373 |
+
#~ msgstr "Ongeldig type Email."
|
374 |
|
375 |
#~ msgid "Please don't try to change the values."
|
376 |
+
#~ msgstr "Probeer de waardes niet te wijzigen a.u.b."
|
377 |
|
378 |
#~ msgid "Invalid Email address."
|
379 |
+
#~ msgstr "Ongeldig Emailadres."
|
380 |
|
381 |
#~ msgid "Allowed tags: "
|
382 |
+
#~ msgstr "Toegestane tags: "
|
383 |
|
384 |
#~ msgid "Template Settings"
|
385 |
+
#~ msgstr "Template Opties"
|
386 |
|
387 |
#~ msgid "Invoice number type"
|
388 |
+
#~ msgstr "Type factuurnummer"
|
389 |
|
390 |
#~ msgid "Next invoice number"
|
391 |
+
#~ msgstr "Eerstvolgende factuurnummer"
|
392 |
|
393 |
#~ msgid "Number of digits"
|
394 |
+
#~ msgstr "Aantal cijfers"
|
395 |
|
396 |
#~ msgid "Invoice number prefix"
|
397 |
+
#~ msgstr "Factuurnummer voorvoegsel"
|
398 |
|
399 |
#~ msgid "Invoice number suffix"
|
400 |
+
#~ msgstr "Factuurnummer achtervoegsel"
|
401 |
|
402 |
#~ msgid "Invoice number format"
|
403 |
+
#~ msgstr "Factuurnummer format"
|
404 |
|
405 |
#~ msgid "Reset on 1st January"
|
406 |
+
#~ msgstr "Reset op 1 januari"
|
407 |
|
408 |
#~ msgid "Invoice date format"
|
409 |
+
#~ msgstr "Factuur datumnotatie"
|
410 |
+
|
411 |
+
#~ msgid "Order date format"
|
412 |
+
#~ msgstr "Notatie bestellingsdatum"
|
413 |
|
414 |
#~ msgid "Show SKU"
|
415 |
+
#~ msgstr "Toon SKU"
|
416 |
|
417 |
#~ msgid "Show discount"
|
418 |
+
#~ msgstr "Toon korting"
|
419 |
|
420 |
#~ msgid "Show subtotal"
|
421 |
+
#~ msgstr "Toon subtotaal"
|
422 |
|
423 |
#~ msgid "Show tax"
|
424 |
+
#~ msgstr "Toon BTW"
|
425 |
|
426 |
#~ msgid "Show shipping"
|
427 |
+
#~ msgstr "Toon verzendkosten"
|
428 |
|
429 |
#~ msgid "Show customer notes"
|
430 |
+
#~ msgstr "Toon notities klant"
|
431 |
|
432 |
#~ msgid "Color theme of the invoice."
|
433 |
+
#~ msgstr "Kleurthema van de factuur."
|
434 |
|
435 |
#~ msgid ""
|
436 |
#~ "Please upload an image less then 200Kb and make sure it's a jpeg, jpg or "
|
437 |
#~ "png."
|
438 |
#~ msgstr ""
|
439 |
+
#~ "Upload een afbeelding van maximaal 200Kb en zorg dat het een jpeg, jpg of "
|
440 |
+
#~ "png is."
|
441 |
|
442 |
#~ msgid "Invoice number to use for next invoice."
|
443 |
+
#~ msgstr "Factuurnummer te gebruiken voor de volgende factuur."
|
444 |
|
445 |
#~ msgid "Number of zero digits."
|
446 |
+
#~ msgstr "Aantal nullen."
|
447 |
|
448 |
#~ msgid "Prefix text for the invoice number. Not required."
|
449 |
+
#~ msgstr "Voorvoegsel van het factuurnummer is niet verplicht."
|
450 |
|
451 |
#~ msgid "Suffix text for the invoice number. Not required."
|
452 |
+
#~ msgstr "Achtervoegsel van het factuurnummer is niet verplicht."
|
453 |
|
454 |
+
#~ msgid "Available placeholder are %s %s %s %s and %s. %s is required."
|
455 |
+
#~ msgstr "Beschikbare aanduidingen zijn %s %s %s %s of %s. %s is verplicht."
|
|
|
|
|
|
|
456 |
|
457 |
#~ msgid "Reset on the first of January."
|
458 |
+
#~ msgstr "Reset op de eerste van januari."
|
459 |
|
460 |
#~ msgid "%sFormat%s of the date. Examples: %s or %s."
|
461 |
+
#~ msgstr "%sFormat%s van de datum. Bijvoorbeeld: %s of %s."
|
462 |
+
|
463 |
+
#~ msgid "Order date %sformat%s. Examples: %s or %s."
|
464 |
+
#~ msgstr "Notatie %sbestellingsdatum%s. Voorbeelden: %s of %s."
|
465 |
|
466 |
#~ msgid "Invalid template."
|
467 |
+
#~ msgstr "Ongeldige template."
|
468 |
|
469 |
#~ msgid "Invalid color theme code."
|
470 |
+
#~ msgstr "Ongeldige kleurcode."
|
471 |
|
472 |
#~ msgid "Invalid company name."
|
473 |
+
#~ msgstr "Ongeldige bedsrijfsnaam."
|
474 |
|
475 |
#~ msgid "Invalid input into one of the textarea's."
|
476 |
+
#~ msgstr "Ongeldige invoer in een van de textarea's."
|
477 |
+
|
478 |
+
#~ msgid "Invalid type of invoice number."
|
479 |
+
#~ msgstr "Ongeldig type factuurnummer."
|
480 |
|
481 |
#~ msgid "Invalid (next) invoice number."
|
482 |
+
#~ msgstr "Ongeldig (eerstvolgend) factuurnummer."
|
483 |
|
484 |
#~ msgid "Invalid invoice number digits."
|
485 |
+
#~ msgstr "Ongeldige factuurnummer cijfers."
|
486 |
|
487 |
#~ msgid "The [number] placeholder is required as invoice number format."
|
488 |
+
#~ msgstr "De aanduiding [number] is vereist."
|
489 |
|
490 |
#~ msgid "Invalid invoice number format."
|
491 |
+
#~ msgstr "Ongeldig factuurnummer format."
|
492 |
|
493 |
#~ msgid "Invalid date format."
|
494 |
+
#~ msgstr "Ongeldige datumnotatie."
|
495 |
|
496 |
#~ msgid "Please upload image with extension jpg, jpeg or png."
|
497 |
+
#~ msgstr "Gelieve te uploaden een afbeelding met extensie jpg, jpeg of png."
|
498 |
|
499 |
#~ msgid "Quantity"
|
500 |
+
#~ msgstr "Aantal"
|
501 |
|
502 |
#~ msgid "Unit price"
|
503 |
+
#~ msgstr "Prijs per stuk"
|
504 |
|
505 |
#~ msgid "Tax"
|
506 |
+
#~ msgstr "BTW"
|
507 |
+
|
508 |
+
#~ msgid ""
|
509 |
+
#~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
|
510 |
+
#~ msgstr ""
|
511 |
+
#~ "Gebruik [prefix], [suffix] en [number] als aanduidingen. [number] is "
|
512 |
+
#~ "verplicht."
|
513 |
|
514 |
#~ msgid "Signup at %s and enter your account beyond."
|
515 |
#~ msgstr "Meld je aan op %s en vul je account onderstaand in."
|
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-04-25
|
5 |
-
"PO-Revision-Date: 2015-04-25
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -19,64 +19,73 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
23 |
msgid "General"
|
24 |
msgstr "Algemeen"
|
25 |
|
26 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
27 |
#: admin/classes/bewpi-template-settings.php:86
|
28 |
msgid "Template"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
32 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
33 |
msgid "Invoices"
|
34 |
msgstr "Facturen"
|
35 |
|
36 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "PDF Factuur"
|
39 |
|
40 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
41 |
msgid "Invoiced on:"
|
42 |
msgstr "Gefactureerd op:"
|
43 |
|
44 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
45 |
msgid "Invoice number:"
|
46 |
msgstr "Factuurnummer:"
|
47 |
|
48 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
49 |
msgid "View invoice"
|
50 |
msgstr "Toon factuur"
|
51 |
|
52 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
53 |
msgid "View"
|
54 |
msgstr "Bekijk"
|
55 |
|
56 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
57 |
msgid "Cancel invoice"
|
58 |
msgstr "Factuur annuleren"
|
59 |
|
60 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
61 |
msgid "Cancel"
|
62 |
msgstr "Annuleer"
|
63 |
|
64 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
67 |
|
68 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
69 |
msgid "Create invoice"
|
70 |
msgstr "Maak factuur"
|
71 |
|
72 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
73 |
msgid "Create"
|
74 |
msgstr "Aanmaken"
|
75 |
|
76 |
-
#: admin/classes/be-woocommerce-pdf-invoices.php:
|
77 |
msgid "Download invoice (PDF)"
|
78 |
msgstr "Download factuur (PDF)"
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
#: admin/classes/bewpi-general-settings.php:85
|
81 |
msgid "Attach to Email"
|
82 |
msgstr "Voeg toe aan Email"
|
@@ -172,6 +181,10 @@ msgstr "Introtekst"
|
|
172 |
msgid "Terms & conditions, policies etc."
|
173 |
msgstr "Algemene voorwaarden"
|
174 |
|
|
|
|
|
|
|
|
|
175 |
#: admin/classes/bewpi-template-settings.php:211
|
176 |
msgid "Type"
|
177 |
msgstr ""
|
@@ -224,6 +237,34 @@ msgstr ""
|
|
224 |
"Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
|
225 |
"gebruiken. %s % sLet wel: %s %s is vereist."
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
#: admin/classes/bewpi-template-settings.php:393
|
228 |
msgid "General Options"
|
229 |
msgstr "Algemene Opties"
|
@@ -311,10 +352,6 @@ msgstr "Besteldatum: %s"
|
|
311 |
msgid "Description"
|
312 |
msgstr "Beschrijving"
|
313 |
|
314 |
-
#: includes/views/templates/invoice-micro.php:220
|
315 |
-
msgid "SKU"
|
316 |
-
msgstr "Productcode"
|
317 |
-
|
318 |
#: includes/views/templates/invoice-micro.php:223
|
319 |
msgid "Cost"
|
320 |
msgstr "Kosten"
|
@@ -332,18 +369,6 @@ msgstr "BTW"
|
|
332 |
msgid "Total"
|
333 |
msgstr "Totaal"
|
334 |
|
335 |
-
#: includes/views/templates/invoice-micro.php:372
|
336 |
-
msgid "Discount"
|
337 |
-
msgstr "Korting"
|
338 |
-
|
339 |
-
#: includes/views/templates/invoice-micro.php:380
|
340 |
-
msgid "Shipping"
|
341 |
-
msgstr "Verzending"
|
342 |
-
|
343 |
-
#: includes/views/templates/invoice-micro.php:388
|
344 |
-
msgid "Subtotal"
|
345 |
-
msgstr "Subtotaal"
|
346 |
-
|
347 |
#: includes/views/templates/invoice-micro.php:398
|
348 |
#, php-format
|
349 |
msgid "VAT %s"
|
@@ -426,9 +451,6 @@ msgstr "Terugbetaald"
|
|
426 |
#~ msgid "Show shipping"
|
427 |
#~ msgstr "Toon verzendkosten"
|
428 |
|
429 |
-
#~ msgid "Show customer notes"
|
430 |
-
#~ msgstr "Toon notities klant"
|
431 |
-
|
432 |
#~ msgid "Color theme of the invoice."
|
433 |
#~ msgstr "Kleurthema van de factuur."
|
434 |
|
@@ -502,9 +524,6 @@ msgstr "Terugbetaald"
|
|
502 |
#~ msgid "Unit price"
|
503 |
#~ msgstr "Prijs per stuk"
|
504 |
|
505 |
-
#~ msgid "Tax"
|
506 |
-
#~ msgstr "BTW"
|
507 |
-
|
508 |
#~ msgid ""
|
509 |
#~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
|
510 |
#~ msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2015-04-25 23:29+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-04-25 23:30+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 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:189
|
23 |
msgid "General"
|
24 |
msgstr "Algemeen"
|
25 |
|
26 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:190
|
27 |
#: admin/classes/bewpi-template-settings.php:86
|
28 |
msgid "Template"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:209
|
32 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:210
|
33 |
msgid "Invoices"
|
34 |
msgstr "Facturen"
|
35 |
|
36 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:315
|
37 |
msgid "PDF Invoice"
|
38 |
msgstr "PDF Factuur"
|
39 |
|
40 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:342
|
41 |
msgid "Invoiced on:"
|
42 |
msgstr "Gefactureerd op:"
|
43 |
|
44 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:346
|
45 |
msgid "Invoice number:"
|
46 |
msgstr "Factuurnummer:"
|
47 |
|
48 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:384
|
49 |
msgid "View invoice"
|
50 |
msgstr "Toon factuur"
|
51 |
|
52 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:384
|
53 |
msgid "View"
|
54 |
msgstr "Bekijk"
|
55 |
|
56 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
57 |
msgid "Cancel invoice"
|
58 |
msgstr "Factuur annuleren"
|
59 |
|
60 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
61 |
msgid "Cancel"
|
62 |
msgstr "Annuleer"
|
63 |
|
64 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:385
|
65 |
msgid "Are you sure to delete the invoice?"
|
66 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
67 |
|
68 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:387
|
69 |
msgid "Create invoice"
|
70 |
msgstr "Maak factuur"
|
71 |
|
72 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:387
|
73 |
msgid "Create"
|
74 |
msgstr "Aanmaken"
|
75 |
|
76 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:420
|
77 |
msgid "Download invoice (PDF)"
|
78 |
msgstr "Download factuur (PDF)"
|
79 |
|
80 |
+
#: admin/classes/be-woocommerce-pdf-invoices.php:482
|
81 |
+
#, php-format
|
82 |
+
msgid ""
|
83 |
+
"Thank you for using <b>WooCommerce PDF Invoices</b> for some time now. "
|
84 |
+
"Please show us your appreciation by leaving a ★★★★★ rating. A huge thank you "
|
85 |
+
"in advance! <br /> <a href='%s' target='_blank'>Yes, will do it right away!</"
|
86 |
+
"a> - <a href='%s'>No, already done it!</a>"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
#: admin/classes/bewpi-general-settings.php:85
|
90 |
msgid "Attach to Email"
|
91 |
msgstr "Voeg toe aan Email"
|
181 |
msgid "Terms & conditions, policies etc."
|
182 |
msgstr "Algemene voorwaarden"
|
183 |
|
184 |
+
#: admin/classes/bewpi-template-settings.php:203
|
185 |
+
msgid "Show customer notes"
|
186 |
+
msgstr "Toon notities klant"
|
187 |
+
|
188 |
#: admin/classes/bewpi-template-settings.php:211
|
189 |
msgid "Type"
|
190 |
msgstr ""
|
237 |
"Voel je vrij om het gebruik van de aanduidingen %s %s %s %s en %s te "
|
238 |
"gebruiken. %s % sLet wel: %s %s is vereist."
|
239 |
|
240 |
+
#: admin/classes/bewpi-template-settings.php:318
|
241 |
+
msgid "Reset on 1st of january"
|
242 |
+
msgstr "Reset op 1 januari"
|
243 |
+
|
244 |
+
#: admin/classes/bewpi-template-settings.php:331
|
245 |
+
#: includes/views/templates/invoice-micro.php:220
|
246 |
+
msgid "SKU"
|
247 |
+
msgstr "Productcode"
|
248 |
+
|
249 |
+
#: admin/classes/bewpi-template-settings.php:343
|
250 |
+
#: includes/views/templates/invoice-micro.php:388
|
251 |
+
msgid "Subtotal"
|
252 |
+
msgstr "Subtotaal"
|
253 |
+
|
254 |
+
#: admin/classes/bewpi-template-settings.php:355
|
255 |
+
msgid "Tax"
|
256 |
+
msgstr "BTW"
|
257 |
+
|
258 |
+
#: admin/classes/bewpi-template-settings.php:367
|
259 |
+
#: includes/views/templates/invoice-micro.php:372
|
260 |
+
msgid "Discount"
|
261 |
+
msgstr "Korting"
|
262 |
+
|
263 |
+
#: admin/classes/bewpi-template-settings.php:379
|
264 |
+
#: includes/views/templates/invoice-micro.php:380
|
265 |
+
msgid "Shipping"
|
266 |
+
msgstr "Verzending"
|
267 |
+
|
268 |
#: admin/classes/bewpi-template-settings.php:393
|
269 |
msgid "General Options"
|
270 |
msgstr "Algemene Opties"
|
352 |
msgid "Description"
|
353 |
msgstr "Beschrijving"
|
354 |
|
|
|
|
|
|
|
|
|
355 |
#: includes/views/templates/invoice-micro.php:223
|
356 |
msgid "Cost"
|
357 |
msgstr "Kosten"
|
369 |
msgid "Total"
|
370 |
msgstr "Totaal"
|
371 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
#: includes/views/templates/invoice-micro.php:398
|
373 |
#, php-format
|
374 |
msgid "VAT %s"
|
451 |
#~ msgid "Show shipping"
|
452 |
#~ msgstr "Toon verzendkosten"
|
453 |
|
|
|
|
|
|
|
454 |
#~ msgid "Color theme of the invoice."
|
455 |
#~ msgstr "Kleurthema van de factuur."
|
456 |
|
524 |
#~ msgid "Unit price"
|
525 |
#~ msgstr "Prijs per stuk"
|
526 |
|
|
|
|
|
|
|
527 |
#~ msgid ""
|
528 |
#~ "Use [prefix], [suffix] and [number] as placeholders. [number] is required."
|
529 |
#~ 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.2
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -66,6 +66,11 @@ The manual installation method involves downloading our plugin and uploading it
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
|
|
|
|
69 |
= 2.2.1 - April 25, 2015 =
|
70 |
|
71 |
- Added: Support for multiple languages like Chinese, Greek, Latin etc.
|
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.2
|
7 |
+
Stable tag: 2.2.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 2.2.2 - April 25, 2015 =
|
70 |
+
|
71 |
+
- Added: Admin notices
|
72 |
+
- Improved: Translations
|
73 |
+
|
74 |
= 2.2.1 - April 25, 2015 =
|
75 |
|
76 |
- Added: Support for multiple languages like Chinese, Greek, Latin etc.
|