Version Description
April 25, 2019 =
Fixed: Using order number as invoice number.
Fixed: Fatal error sabre ubl_invoice dependency.
Fixed: Formatted base address not showing on packing slips.
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- bootstrap.php +3 -3
- includes/abstracts/abstract-invoice.php +1 -20
- includes/admin/settings/class-general.php +0 -3
- includes/templates/invoice/simple/minimal/header.php +1 -1
- includes/templates/packing-slip/simple/minimal/header.php +4 -1
- includes/woocommerce-pdf-invoices.php +19 -0
- lang/woocommerce-pdf-invoices-cs_CZ.po +49 -50
- lang/woocommerce-pdf-invoices-de_DE.mo +0 -0
- lang/woocommerce-pdf-invoices-de_DE.po +1305 -1522
- lang/woocommerce-pdf-invoices-es_ES.po +49 -50
- lang/woocommerce-pdf-invoices-et.po +49 -50
- lang/woocommerce-pdf-invoices-fr_FR.po +49 -50
- lang/woocommerce-pdf-invoices-it_IT.po +46 -50
- lang/woocommerce-pdf-invoices-lt_LT.po +46 -50
- lang/woocommerce-pdf-invoices-nb_NO.po +49 -50
- lang/woocommerce-pdf-invoices-nl_NL.po +49 -50
- lang/woocommerce-pdf-invoices-pl_PL.po +46 -50
- lang/woocommerce-pdf-invoices-ro_RO.po +46 -50
- lang/woocommerce-pdf-invoices-ru_RU.po +46 -50
- lang/woocommerce-pdf-invoices-sk_SK.po +46 -50
- lang/woocommerce-pdf-invoices-sl_SI.po +46 -50
- lang/woocommerce-pdf-invoices-sv_SE.po +46 -50
- readme.txt +7 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_real_52.php +3 -3
- vendor/composer/autoload_static.php +3 -3
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: 3.0.
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
@@ -11,12 +11,12 @@
|
|
11 |
* Text Domain: woocommerce-pdf-invoices
|
12 |
* Domain Path: /lang
|
13 |
* WC requires at least: 3.0.0
|
14 |
-
* WC tested up to: 3.6.
|
15 |
*/
|
16 |
|
17 |
defined( 'ABSPATH' ) || exit;
|
18 |
|
19 |
-
define( 'WPI_VERSION', '3.0.
|
20 |
|
21 |
/**
|
22 |
* Load WooCommerce PDF Invoices plugin.
|
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: 3.0.2
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
11 |
* Text Domain: woocommerce-pdf-invoices
|
12 |
* Domain Path: /lang
|
13 |
* WC requires at least: 3.0.0
|
14 |
+
* WC tested up to: 3.6.2
|
15 |
*/
|
16 |
|
17 |
defined( 'ABSPATH' ) || exit;
|
18 |
|
19 |
+
define( 'WPI_VERSION', '3.0.2' );
|
20 |
|
21 |
/**
|
22 |
* Load WooCommerce PDF Invoices plugin.
|
includes/abstracts/abstract-invoice.php
CHANGED
@@ -285,7 +285,7 @@ abstract class BEWPI_Abstract_Invoice extends BEWPI_Abstract_Document {
|
|
285 |
|
286 |
if ( empty( $this->number ) ) {
|
287 |
// Use WooCommerce order numbers as invoice numbers?
|
288 |
-
if ( 'woocommerce_order_number' === WPI()->get_option( 'invoice_number_type' ) ) {
|
289 |
$this->number = $this->order->get_order_number();
|
290 |
} else {
|
291 |
$this->number = $this->get_next_invoice_number();
|
@@ -630,25 +630,6 @@ abstract class BEWPI_Abstract_Invoice extends BEWPI_Abstract_Document {
|
|
630 |
return apply_filters( 'wpi_get_invoice_total_rows', $total_rows, $this );
|
631 |
}
|
632 |
|
633 |
-
/**
|
634 |
-
* Get formatted store address.
|
635 |
-
*
|
636 |
-
* @return string
|
637 |
-
*/
|
638 |
-
public function get_formatted_base_address() {
|
639 |
-
$address = array(
|
640 |
-
'company' => WPI()->get_option( 'template', 'company_name' ),
|
641 |
-
'address_1' => WC()->countries->get_base_address(),
|
642 |
-
'address_2' => WC()->countries->get_base_address_2(),
|
643 |
-
'city' => WC()->countries->get_base_city(),
|
644 |
-
'state' => WC()->countries->get_base_state(),
|
645 |
-
'postcode' => WC()->countries->get_base_postcode(),
|
646 |
-
'country' => WC()->countries->get_base_country(),
|
647 |
-
);
|
648 |
-
|
649 |
-
return WC()->countries->get_formatted_address( $address ) . '<br>';
|
650 |
-
}
|
651 |
-
|
652 |
/**
|
653 |
* Backwards compatibility.
|
654 |
*
|
285 |
|
286 |
if ( empty( $this->number ) ) {
|
287 |
// Use WooCommerce order numbers as invoice numbers?
|
288 |
+
if ( 'woocommerce_order_number' === WPI()->get_option( 'template', 'invoice_number_type' ) ) {
|
289 |
$this->number = $this->order->get_order_number();
|
290 |
} else {
|
291 |
$this->number = $this->get_next_invoice_number();
|
630 |
return apply_filters( 'wpi_get_invoice_total_rows', $total_rows, $this );
|
631 |
}
|
632 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
633 |
/**
|
634 |
* Backwards compatibility.
|
635 |
*
|
includes/admin/settings/class-general.php
CHANGED
@@ -50,9 +50,6 @@ class BEWPI_General_Settings extends BEWPI_Abstract_Settings {
|
|
50 |
'interface' => array(
|
51 |
'title' => __( 'Interface Options', 'woocommerce-pdf-invoices' ),
|
52 |
),
|
53 |
-
'debug' => array(
|
54 |
-
'title' => __( 'Debug Options', 'woocommerce-pdf-invoices' ),
|
55 |
-
),
|
56 |
);
|
57 |
|
58 |
return $sections;
|
50 |
'interface' => array(
|
51 |
'title' => __( 'Interface Options', 'woocommerce-pdf-invoices' ),
|
52 |
),
|
|
|
|
|
|
|
53 |
);
|
54 |
|
55 |
return $sections;
|
includes/templates/invoice/simple/minimal/header.php
CHANGED
@@ -37,7 +37,7 @@ $company_vat_id = WPI()->get_option( 'template', 'company_vat_id' );
|
|
37 |
<td>
|
38 |
<?php
|
39 |
if ( BEWPI_WC_Core_Compatibility::is_wc_version_gte_3_0() ) {
|
40 |
-
echo
|
41 |
} else {
|
42 |
echo nl2br( WPI()->get_option( 'template', 'company_address' ) ) . '<br>';
|
43 |
}
|
37 |
<td>
|
38 |
<?php
|
39 |
if ( BEWPI_WC_Core_Compatibility::is_wc_version_gte_3_0() ) {
|
40 |
+
echo WPI()->get_formatted_base_address();
|
41 |
} else {
|
42 |
echo nl2br( WPI()->get_option( 'template', 'company_address' ) ) . '<br>';
|
43 |
}
|
includes/templates/packing-slip/simple/minimal/header.php
CHANGED
@@ -15,6 +15,9 @@
|
|
15 |
* @version 0.0.1
|
16 |
*/
|
17 |
|
|
|
|
|
|
|
18 |
?>
|
19 |
|
20 |
<table>
|
@@ -32,7 +35,7 @@
|
|
32 |
<td>
|
33 |
<?php
|
34 |
if ( BEWPI_WC_Core_Compatibility::is_wc_version_gte_3_0() ) {
|
35 |
-
echo
|
36 |
} else {
|
37 |
echo nl2br( WPI()->get_option( 'template', 'company_address' ) ) . '<br>';
|
38 |
}
|
15 |
* @version 0.0.1
|
16 |
*/
|
17 |
|
18 |
+
$company_phone = WPI()->get_option( 'template', 'company_phone' );
|
19 |
+
$company_email_address = WPI()->get_option( 'template', 'company_email_address' );
|
20 |
+
$company_vat_id = WPI()->get_option( 'template', 'company_vat_id' );
|
21 |
?>
|
22 |
|
23 |
<table>
|
35 |
<td>
|
36 |
<?php
|
37 |
if ( BEWPI_WC_Core_Compatibility::is_wc_version_gte_3_0() ) {
|
38 |
+
echo WPI()->get_formatted_base_address();
|
39 |
} else {
|
40 |
echo nl2br( WPI()->get_option( 'template', 'company_address' ) ) . '<br>';
|
41 |
}
|
includes/woocommerce-pdf-invoices.php
CHANGED
@@ -1051,6 +1051,25 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
1051 |
return self::PLUGIN_SLUG;
|
1052 |
}
|
1053 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
/**
|
1055 |
* Templater instance.
|
1056 |
*
|
1051 |
return self::PLUGIN_SLUG;
|
1052 |
}
|
1053 |
|
1054 |
+
/**
|
1055 |
+
* Get formatted store address.
|
1056 |
+
*
|
1057 |
+
* @return string
|
1058 |
+
*/
|
1059 |
+
public function get_formatted_base_address() {
|
1060 |
+
$address = array(
|
1061 |
+
'company' => WPI()->get_option( 'template', 'company_name' ),
|
1062 |
+
'address_1' => WC()->countries->get_base_address(),
|
1063 |
+
'address_2' => WC()->countries->get_base_address_2(),
|
1064 |
+
'city' => WC()->countries->get_base_city(),
|
1065 |
+
'state' => WC()->countries->get_base_state(),
|
1066 |
+
'postcode' => WC()->countries->get_base_postcode(),
|
1067 |
+
'country' => WC()->countries->get_base_country(),
|
1068 |
+
);
|
1069 |
+
|
1070 |
+
return WC()->countries->get_formatted_address( $address ) . '<br>';
|
1071 |
+
}
|
1072 |
+
|
1073 |
/**
|
1074 |
* Templater instance.
|
1075 |
*
|
lang/woocommerce-pdf-invoices-cs_CZ.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: cs_CZ\n"
|
@@ -85,7 +85,7 @@ msgstr ""
|
|
85 |
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
87 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
88 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
89 |
msgid "Premium"
|
90 |
msgstr "Premium"
|
91 |
|
@@ -207,7 +207,7 @@ msgstr ""
|
|
207 |
"přidáním e-mailových adres Email It In. E-mailové adresy oddělujte čárkami."
|
208 |
|
209 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
210 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
211 |
msgid "Attach to Emails"
|
212 |
msgstr ""
|
213 |
|
@@ -384,12 +384,12 @@ msgid "Global invoice successfully generated!"
|
|
384 |
msgstr "Globální faktura byla úspěšně vygenerována!"
|
385 |
|
386 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
387 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
388 |
msgid "View invoice"
|
389 |
msgstr "Prohlédnout fakturu"
|
390 |
|
391 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
392 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
393 |
msgid "View"
|
394 |
msgstr "Prohlédnout"
|
395 |
|
@@ -440,7 +440,7 @@ msgid "created on %1$s at %2$s"
|
|
440 |
msgstr ""
|
441 |
|
442 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
443 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
444 |
msgid "Delete"
|
445 |
msgstr ""
|
446 |
|
@@ -473,7 +473,7 @@ msgid "Credit Note #:"
|
|
473 |
msgstr "Nastavení záhlaví"
|
474 |
|
475 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
477 |
#, fuzzy
|
478 |
#| msgid "Order Date: %s"
|
479 |
msgid "Date:"
|
@@ -550,12 +550,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
550 |
msgstr ""
|
551 |
|
552 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
553 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
554 |
msgid "Yes"
|
555 |
msgstr "Ano"
|
556 |
|
557 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
558 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
559 |
msgid "No"
|
560 |
msgstr "Ne"
|
561 |
|
@@ -848,14 +848,14 @@ msgstr ""
|
|
848 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
849 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
850 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
851 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
852 |
#, php-format
|
853 |
msgid "Phone: %s"
|
854 |
msgstr "Telefon: %s"
|
855 |
|
856 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
857 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
858 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
859 |
#, fuzzy, php-format
|
860 |
#| msgid "Email us"
|
861 |
msgid "Email: %s"
|
@@ -863,7 +863,7 @@ msgstr "Napište nám"
|
|
863 |
|
864 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
866 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
867 |
#, fuzzy, php-format
|
868 |
#| msgid "VAT Number: %s"
|
869 |
msgid "VAT ID: %s"
|
@@ -913,7 +913,7 @@ msgid "Order #%d - %s"
|
|
913 |
msgstr "Objednávka #%d - %s"
|
914 |
|
915 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
916 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
917 |
msgid "Settings"
|
918 |
msgstr "Nastavení"
|
919 |
|
@@ -942,17 +942,17 @@ msgstr ""
|
|
942 |
msgid "Total:"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
946 |
#, php-format
|
947 |
msgid "VAT Number: %s"
|
948 |
msgstr "DIČ: %s"
|
949 |
|
950 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
951 |
#, php-format
|
952 |
msgid "Purchase Order Number: %s"
|
953 |
msgstr "Číslo objednávky: %s"
|
954 |
|
955 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
956 |
#, php-format
|
957 |
msgid "%s of %s"
|
958 |
msgstr "%s z %s"
|
@@ -970,7 +970,7 @@ msgstr "Šablona"
|
|
970 |
|
971 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
972 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
973 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
974 |
msgid "Debug"
|
975 |
msgstr ""
|
976 |
|
@@ -1051,80 +1051,76 @@ msgstr ""
|
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
-
msgid "Debug Options"
|
1056 |
-
msgstr "Možnosti debugování"
|
1057 |
-
|
1058 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1059 |
msgid "New order"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1063 |
msgid "Order on-hold"
|
1064 |
msgstr "Objednat dočasně"
|
1065 |
|
1066 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1067 |
msgid "Processing order"
|
1068 |
msgstr "Objednávka se zpracovává"
|
1069 |
|
1070 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1071 |
msgid "Completed order"
|
1072 |
msgstr "Objednávka je dokončená"
|
1073 |
|
1074 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1075 |
msgid "Customer invoice"
|
1076 |
msgstr "Zákaznická faktura"
|
1077 |
|
1078 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1079 |
msgid "Disable for free products"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1083 |
msgid ""
|
1084 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1085 |
"products."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1089 |
msgid "View PDF"
|
1090 |
msgstr "Prohlédnout PDF"
|
1091 |
|
1092 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1093 |
msgid "Download"
|
1094 |
msgstr "Stáhnout"
|
1095 |
|
1096 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1097 |
msgid "Open in new browser tab/window"
|
1098 |
msgstr "Otevřít v nové záložce nebo okně prohlížeče"
|
1099 |
|
1100 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1101 |
msgid "Enable download from my account"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1105 |
msgid ""
|
1106 |
"By default PDF is only downloadable when order has been paid, so order "
|
1107 |
"status should be Processing or Completed."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1111 |
msgid "Enable Email It In"
|
1112 |
msgstr "Povolit Email It In"
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "Email It In account"
|
1116 |
msgstr "Účet Email It In"
|
1117 |
|
1118 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1119 |
#, php-format
|
1120 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1124 |
msgid "Enable Invoice Number column"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1128 |
msgid "Display invoice numbers on Shop Order page."
|
1129 |
msgstr ""
|
1130 |
|
@@ -1308,7 +1304,7 @@ msgid "Change the name of the invoice."
|
|
1308 |
msgstr "Změnit označení faktury."
|
1309 |
|
1310 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1311 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1312 |
msgid "Invoice"
|
1313 |
msgstr "Faktura"
|
1314 |
|
@@ -1651,51 +1647,54 @@ msgstr ""
|
|
1651 |
msgid "Product"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1655 |
msgid "Invoice No."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1659 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1660 |
msgid "PDF Invoice"
|
1661 |
msgstr "PDF faktura"
|
1662 |
|
1663 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1664 |
msgid "Create"
|
1665 |
msgstr "Vytvořit"
|
1666 |
|
1667 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1668 |
#, fuzzy
|
1669 |
#| msgid "VAT Number: %s"
|
1670 |
msgid "Number:"
|
1671 |
msgstr "DIČ: %s"
|
1672 |
|
1673 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1674 |
msgid "Sent?"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1678 |
msgid "Update"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1682 |
#, fuzzy
|
1683 |
#| msgid "Are you sure to delete the invoice?"
|
1684 |
msgid "Are you sure to delete the PDF invoice?"
|
1685 |
msgstr "Opravdu chcete fakturu zrušit?"
|
1686 |
|
1687 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1688 |
#, php-format
|
1689 |
msgid ""
|
1690 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1691 |
"an accounting gap!"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1695 |
#, php-format
|
1696 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1697 |
msgstr ""
|
1698 |
|
|
|
|
|
|
|
1699 |
#~ msgid "Premium Options"
|
1700 |
#~ msgstr "Volby verze Premium"
|
1701 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
11 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: cs_CZ\n"
|
85 |
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
87 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
88 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
89 |
msgid "Premium"
|
90 |
msgstr "Premium"
|
91 |
|
207 |
"přidáním e-mailových adres Email It In. E-mailové adresy oddělujte čárkami."
|
208 |
|
209 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
210 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
211 |
msgid "Attach to Emails"
|
212 |
msgstr ""
|
213 |
|
384 |
msgstr "Globální faktura byla úspěšně vygenerována!"
|
385 |
|
386 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
387 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
388 |
msgid "View invoice"
|
389 |
msgstr "Prohlédnout fakturu"
|
390 |
|
391 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
392 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
393 |
msgid "View"
|
394 |
msgstr "Prohlédnout"
|
395 |
|
440 |
msgstr ""
|
441 |
|
442 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
443 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
444 |
msgid "Delete"
|
445 |
msgstr ""
|
446 |
|
473 |
msgstr "Nastavení záhlaví"
|
474 |
|
475 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
476 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
477 |
#, fuzzy
|
478 |
#| msgid "Order Date: %s"
|
479 |
msgid "Date:"
|
550 |
msgstr ""
|
551 |
|
552 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
553 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
554 |
msgid "Yes"
|
555 |
msgstr "Ano"
|
556 |
|
557 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
558 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
559 |
msgid "No"
|
560 |
msgstr "Ne"
|
561 |
|
848 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
849 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
850 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
851 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
852 |
#, php-format
|
853 |
msgid "Phone: %s"
|
854 |
msgstr "Telefon: %s"
|
855 |
|
856 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
857 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
858 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
859 |
#, fuzzy, php-format
|
860 |
#| msgid "Email us"
|
861 |
msgid "Email: %s"
|
863 |
|
864 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
866 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
867 |
#, fuzzy, php-format
|
868 |
#| msgid "VAT Number: %s"
|
869 |
msgid "VAT ID: %s"
|
913 |
msgstr "Objednávka #%d - %s"
|
914 |
|
915 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
916 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
917 |
msgid "Settings"
|
918 |
msgstr "Nastavení"
|
919 |
|
942 |
msgid "Total:"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
946 |
#, php-format
|
947 |
msgid "VAT Number: %s"
|
948 |
msgstr "DIČ: %s"
|
949 |
|
950 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
951 |
#, php-format
|
952 |
msgid "Purchase Order Number: %s"
|
953 |
msgstr "Číslo objednávky: %s"
|
954 |
|
955 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
956 |
#, php-format
|
957 |
msgid "%s of %s"
|
958 |
msgstr "%s z %s"
|
970 |
|
971 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
972 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
973 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
974 |
msgid "Debug"
|
975 |
msgstr ""
|
976 |
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1055 |
msgid "New order"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1059 |
msgid "Order on-hold"
|
1060 |
msgstr "Objednat dočasně"
|
1061 |
|
1062 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1063 |
msgid "Processing order"
|
1064 |
msgstr "Objednávka se zpracovává"
|
1065 |
|
1066 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1067 |
msgid "Completed order"
|
1068 |
msgstr "Objednávka je dokončená"
|
1069 |
|
1070 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1071 |
msgid "Customer invoice"
|
1072 |
msgstr "Zákaznická faktura"
|
1073 |
|
1074 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1075 |
msgid "Disable for free products"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1079 |
msgid ""
|
1080 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1081 |
"products."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1085 |
msgid "View PDF"
|
1086 |
msgstr "Prohlédnout PDF"
|
1087 |
|
1088 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1089 |
msgid "Download"
|
1090 |
msgstr "Stáhnout"
|
1091 |
|
1092 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1093 |
msgid "Open in new browser tab/window"
|
1094 |
msgstr "Otevřít v nové záložce nebo okně prohlížeče"
|
1095 |
|
1096 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1097 |
msgid "Enable download from my account"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1101 |
msgid ""
|
1102 |
"By default PDF is only downloadable when order has been paid, so order "
|
1103 |
"status should be Processing or Completed."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1107 |
msgid "Enable Email It In"
|
1108 |
msgstr "Povolit Email It In"
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1111 |
msgid "Email It In account"
|
1112 |
msgstr "Účet Email It In"
|
1113 |
|
1114 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1115 |
#, php-format
|
1116 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1120 |
msgid "Enable Invoice Number column"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1124 |
msgid "Display invoice numbers on Shop Order page."
|
1125 |
msgstr ""
|
1126 |
|
1304 |
msgstr "Změnit označení faktury."
|
1305 |
|
1306 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1307 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1308 |
msgid "Invoice"
|
1309 |
msgstr "Faktura"
|
1310 |
|
1647 |
msgid "Product"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1651 |
msgid "Invoice No."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1655 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1656 |
msgid "PDF Invoice"
|
1657 |
msgstr "PDF faktura"
|
1658 |
|
1659 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1660 |
msgid "Create"
|
1661 |
msgstr "Vytvořit"
|
1662 |
|
1663 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1664 |
#, fuzzy
|
1665 |
#| msgid "VAT Number: %s"
|
1666 |
msgid "Number:"
|
1667 |
msgstr "DIČ: %s"
|
1668 |
|
1669 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1670 |
msgid "Sent?"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1674 |
msgid "Update"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1678 |
#, fuzzy
|
1679 |
#| msgid "Are you sure to delete the invoice?"
|
1680 |
msgid "Are you sure to delete the PDF invoice?"
|
1681 |
msgstr "Opravdu chcete fakturu zrušit?"
|
1682 |
|
1683 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1684 |
#, php-format
|
1685 |
msgid ""
|
1686 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1687 |
"an accounting gap!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1691 |
#, php-format
|
1692 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#~ msgid "Debug Options"
|
1696 |
+
#~ msgstr "Možnosti debugování"
|
1697 |
+
|
1698 |
#~ msgid "Premium Options"
|
1699 |
#~ msgstr "Volby verze Premium"
|
1700 |
|
lang/woocommerce-pdf-invoices-de_DE.mo
CHANGED
Binary file
|
lang/woocommerce-pdf-invoices-de_DE.po
CHANGED
@@ -1,1832 +1,1530 @@
|
|
1 |
-
# SOME DESCRIPTIVE TITLE.
|
2 |
-
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3 |
-
# This file is distributed under the same license as the PACKAGE package.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
-
#
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
-
"Last-Translator: Kolja Spyra <
|
13 |
-
"Language-Team: Kolja Spyra
|
14 |
-
"Language:
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
18 |
"X-Generator: Poedit 2.0.4\n"
|
|
|
|
|
|
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
20 |
-
"X-Poedit-KeywordsList: __;_e
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"X-Poedit-SearchPath-0:
|
24 |
-
"X-Poedit-SearchPath-1: woocommerce-pdf-invoices-premium\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
-
#:
|
28 |
-
|
29 |
-
msgid ""
|
30 |
-
|
31 |
-
"premium support, we offer you a 30%% discount when you <a href=\"%2$s\" "
|
32 |
-
"target=\"_blank\">renew your license</a>."
|
33 |
-
msgstr ""
|
34 |
-
"Whoops, Ihre Lizenz für %1$s ist abgelaufen. Um weiterhin Updates und "
|
35 |
-
"Premium-Support zu erhalten, bieten wir Ihnen einen Rabatt von 30%%, wenn "
|
36 |
-
"Sie <a href=\"%2$s\" target=\"_blank\">Ihre Lizenz erneuern</a>."
|
37 |
|
38 |
-
#:
|
39 |
-
#:
|
40 |
-
|
41 |
-
|
42 |
-
msgstr "Lizenz"
|
43 |
|
44 |
-
#:
|
45 |
-
|
46 |
-
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
-
|
52 |
-
|
|
|
|
|
53 |
|
54 |
-
#:
|
55 |
-
|
56 |
-
|
57 |
-
msgid "License Options"
|
58 |
-
msgstr "Allgemein"
|
59 |
|
60 |
-
#:
|
61 |
-
msgid ""
|
62 |
-
|
63 |
-
"updates with the latest features and premium support."
|
64 |
-
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#:
|
71 |
-
|
72 |
-
|
73 |
-
msgid ""
|
74 |
-
"Enter your activation email from %s to receive updates and premium support."
|
75 |
-
msgstr ""
|
76 |
-
"Geben Sie Ihren Lizenzschlüssel von %s ein, um Aktualisierungen zu erhalten."
|
77 |
|
78 |
-
#:
|
79 |
-
#,
|
80 |
-
|
81 |
-
|
82 |
-
msgstr ""
|
83 |
-
"Geben Sie Ihren Lizenzschlüssel von %s ein, um Aktualisierungen zu erhalten."
|
84 |
|
85 |
-
#:
|
86 |
-
#,
|
87 |
-
|
88 |
-
|
89 |
-
msgstr "Aktivierungs-E-Mail kann nicht leer sein."
|
90 |
|
91 |
-
#:
|
92 |
-
|
93 |
-
|
|
|
94 |
|
95 |
-
#:
|
96 |
-
#:
|
97 |
-
|
98 |
-
|
99 |
-
msgstr "Premium"
|
100 |
|
101 |
-
#:
|
102 |
-
|
103 |
-
|
|
|
|
|
104 |
|
105 |
-
#:
|
106 |
-
|
107 |
-
|
|
|
|
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#:
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
|
|
|
|
116 |
|
117 |
-
#:
|
118 |
-
|
119 |
-
|
|
|
120 |
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#:
|
126 |
-
msgid ""
|
127 |
-
|
128 |
-
"applying action or let customers generate periodically from My Account page. "
|
129 |
-
"<strong>Global invoices are only supported when using the micro template!</"
|
130 |
-
"strong>"
|
131 |
-
msgstr ""
|
132 |
-
"Generieren Sie allgemeine Rechnungen auf der Bestellseite, indem Sie mehrere "
|
133 |
-
"Bestellungen auswählen und Maßnahmen anwenden oder Kunden regelmäßig von der "
|
134 |
-
"Seite Mein Konto generieren lassen. <strong>Allgemeine Rechnungen werden nur "
|
135 |
-
"bei der Verwendung der Mikrovorlage unterstützt!</strong>"
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#:
|
142 |
-
|
143 |
-
|
144 |
-
"Automatically send PDF invoice after a specific period of time. When "
|
145 |
-
"enabled, a new <a href=\"%s\">Customer invoice reminder</a> email will be "
|
146 |
-
"used to send the PDF invoice."
|
147 |
-
msgstr ""
|
148 |
-
"Senden Sie automatisch die PDF-Rechnung nach einer bestimmten Zeitspanne. "
|
149 |
-
"Wenn dies aktiviert ist, wird eine neue <a href=\"%s\" >Kundenerinnerungs</"
|
150 |
-
"a>-E-Mail verwendet, um die PDF-Rechnung zu senden."
|
151 |
|
152 |
-
#:
|
153 |
-
|
154 |
-
|
|
|
155 |
|
156 |
-
#:
|
157 |
-
msgid ""
|
158 |
-
|
159 |
-
"field will be added on the checkout page so customers can request a PDF "
|
160 |
-
"invoice."
|
161 |
-
msgstr ""
|
162 |
-
"Lassen Sie einen Kunden entscheiden, eine PDF-Rechnung zu erstellen. Wenn "
|
163 |
-
"dies aktiviert sind, wird auf der Kasse-Seite ein Kästchen hinzugefügt, "
|
164 |
-
"damit die Kunden eine PDF-Rechnung anfordern können."
|
165 |
|
166 |
-
#:
|
167 |
-
|
168 |
-
|
169 |
-
msgstr "Fügen Sie zusätzliche PDF-Rechnungen hinzu."
|
170 |
|
171 |
-
#:
|
172 |
-
|
173 |
-
|
174 |
-
"Use for example %s or custom post-/usermeta fields. The fields will be "
|
175 |
-
"displayed below the billing address."
|
176 |
-
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
|
180 |
-
|
181 |
-
msgid "Additional customer shipping fields"
|
182 |
-
msgstr "Lieferadresse des Kunden anzeigen"
|
183 |
|
184 |
-
#:
|
185 |
#, php-format
|
186 |
msgid ""
|
187 |
-
"
|
188 |
-
"
|
|
|
|
|
189 |
msgstr ""
|
|
|
|
|
|
|
|
|
190 |
|
191 |
-
#:
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
194 |
-
|
195 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:257
|
196 |
-
msgid "Add for example a PDF with your terms & conditions."
|
197 |
-
msgstr "Fügen Sie zum Beispiel ein PDF mit Ihren Geschäftsbedingungen hinzu."
|
198 |
-
|
199 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:268
|
200 |
-
msgid "Show used coupons"
|
201 |
-
msgstr "Genutzte Gutscheine anzeigen"
|
202 |
|
203 |
-
#:
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
|
207 |
-
#:
|
|
|
208 |
msgid ""
|
209 |
-
"<
|
210 |
-
"
|
211 |
-
"seperated by comma's."
|
212 |
msgstr ""
|
213 |
-
"<
|
214 |
-
"
|
215 |
-
"E-Mail-Adressen müssen durch Komma getrennt werden."
|
216 |
|
217 |
-
#:
|
218 |
-
|
|
|
|
|
|
|
219 |
msgid "Attach to Emails"
|
220 |
msgstr "An E-Mails anfügen"
|
221 |
|
222 |
-
#:
|
223 |
-
|
224 |
-
|
225 |
-
msgstr "Präfix"
|
226 |
-
|
227 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:308
|
228 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:443
|
229 |
-
msgid "Suffix"
|
230 |
-
msgstr "Suffix"
|
231 |
-
|
232 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:319
|
233 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:454
|
234 |
-
msgid "Format"
|
235 |
-
msgstr "Format"
|
236 |
|
237 |
-
#:
|
238 |
-
|
239 |
-
|
240 |
-
msgid "Available placeholders: %s."
|
241 |
-
msgstr "Verfügbare Platzhalter: %s."
|
242 |
|
243 |
-
#:
|
244 |
-
|
245 |
-
|
246 |
-
msgid "<b>Note:</b> %s is required and slashes aren't supported."
|
247 |
-
msgstr ""
|
248 |
-
"<b>Hinweis:</b> %s sind erforderlich und Schrägstriche werden nicht "
|
249 |
-
"unterstützt."
|
250 |
|
251 |
-
#:
|
252 |
-
msgid "
|
253 |
-
msgstr "
|
254 |
|
255 |
-
#:
|
256 |
-
msgid "
|
257 |
-
msgstr ""
|
258 |
-
"Kunden sollen eine Allgemeine Rechnung von ihrem Konto generieren können"
|
259 |
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#:
|
265 |
msgid ""
|
266 |
-
"
|
267 |
-
"
|
268 |
-
msgstr ""
|
269 |
-
"Sollten Ihre Kunden die Möglichkeit bekommen, eine allgemeine Rechnung nach "
|
270 |
-
"Monat oder nach Jahr zu erstellen?<br/><strong>Hinweis:</strong> Die "
|
271 |
-
"Kundengenerierung soll aktiviert werden."
|
272 |
-
|
273 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:355
|
274 |
-
msgid "Month"
|
275 |
-
msgstr "Monat"
|
276 |
-
|
277 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:356
|
278 |
-
msgid "Year"
|
279 |
-
msgstr "Jahr"
|
280 |
-
|
281 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:368
|
282 |
-
msgid "Send to your Cloud Storage"
|
283 |
-
msgstr "An Ihren Cloud-Speicher senden"
|
284 |
-
|
285 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:380
|
286 |
-
msgid "Email to customer"
|
287 |
-
msgstr "E-Mail an Kunden"
|
288 |
-
|
289 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:392
|
290 |
-
msgid "Email to supplier(s)"
|
291 |
-
msgstr "E-Mail an Lieferanten"
|
292 |
-
|
293 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:399
|
294 |
-
#: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-credit-note.php:146
|
295 |
-
#: woocommerce-pdf-invoices-premium/includes/emails/class-wc-email-invoice-reminder.php:146
|
296 |
-
msgid "Email subject"
|
297 |
-
msgstr "E-Mail Betreff"
|
298 |
-
|
299 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:404
|
300 |
-
msgid "Subject for the global invoice email."
|
301 |
-
msgstr "Betreff für die allgemeine Rechnungs-E-Mail."
|
302 |
-
|
303 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:411
|
304 |
-
msgid "Email message"
|
305 |
-
msgstr "E-Mail Nachricht"
|
306 |
-
|
307 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:416
|
308 |
-
msgid "Message for the global invoice email."
|
309 |
-
msgstr "Nachricht für die allgemeine Rechnungs-E-Mail."
|
310 |
-
|
311 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:428
|
312 |
-
msgid "Enable reminder"
|
313 |
-
msgstr "Erinnerungen Aktivieren"
|
314 |
-
|
315 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:435
|
316 |
-
msgid "Days until due date"
|
317 |
-
msgstr "Tage bis zum Fälligkeitsdatum"
|
318 |
-
|
319 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:440
|
320 |
-
msgid "Number of days from order or invoice date until due date."
|
321 |
msgstr ""
|
322 |
-
"
|
323 |
-
|
324 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:449
|
325 |
-
msgid "Days until reminder"
|
326 |
-
msgstr "Tage bis zur Erinnerung"
|
327 |
-
|
328 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:454
|
329 |
-
msgid "Number of days from order or invoice date until reminder date."
|
330 |
-
msgstr "Anzahl der Tage ab Bestellung oder Rechnungsdatum bis zur Mahnung."
|
331 |
-
|
332 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:463
|
333 |
-
msgid "Date type"
|
334 |
-
msgstr "Datumsformat"
|
335 |
-
|
336 |
-
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:468
|
337 |
-
msgid "Choose the type of date to count from."
|
338 |
-
msgstr "Wählen Sie die Art des Datums aus, von dem Sie zählen möchten."
|
339 |
|
340 |
-
#:
|
341 |
-
msgid "
|
342 |
-
msgstr "
|
343 |
|
344 |
-
#:
|
345 |
-
msgid "
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#:
|
349 |
-
msgid "
|
350 |
-
msgstr "
|
351 |
|
352 |
-
#:
|
353 |
-
msgid "
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#:
|
357 |
-
msgid "
|
358 |
-
|
|
|
|
|
|
|
|
|
359 |
|
360 |
-
#:
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
-
#:
|
369 |
#, php-format
|
370 |
-
msgid "
|
371 |
-
msgstr "
|
372 |
|
373 |
-
#:
|
374 |
-
msgid "
|
375 |
-
msgstr "
|
376 |
|
377 |
-
#:
|
378 |
-
msgid "
|
379 |
-
msgstr "
|
380 |
|
381 |
-
#:
|
382 |
-
|
383 |
-
|
|
|
|
|
|
|
|
|
|
|
384 |
|
385 |
-
#:
|
386 |
-
msgid "
|
387 |
-
msgstr "
|
388 |
|
389 |
-
#:
|
390 |
-
msgid "
|
391 |
-
msgstr "
|
392 |
|
393 |
-
#:
|
394 |
-
|
395 |
-
|
396 |
-
|
|
|
|
|
|
|
397 |
|
398 |
-
#:
|
399 |
-
|
400 |
-
|
401 |
-
msgstr "Anzeigen"
|
402 |
|
403 |
-
#:
|
404 |
-
msgid "
|
405 |
-
msgstr "
|
406 |
|
407 |
-
#:
|
408 |
-
msgid "
|
409 |
-
msgstr "
|
410 |
|
411 |
-
#:
|
412 |
-
|
413 |
-
|
414 |
-
msgid "No order selected."
|
415 |
-
msgstr "Keine Bestellung ausgewählt."
|
416 |
|
417 |
-
#:
|
418 |
-
msgid "
|
419 |
-
msgstr "
|
420 |
|
421 |
-
#:
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#:
|
426 |
-
|
427 |
-
|
428 |
-
msgid "Bulk Generate PDF Credit Notes"
|
429 |
-
msgstr "Bulk Erstellung von PDF Rechnungen"
|
430 |
|
431 |
-
#:
|
432 |
-
msgid "
|
433 |
-
msgstr "
|
434 |
|
435 |
-
#:
|
436 |
-
|
437 |
-
|
|
|
|
|
|
|
438 |
|
439 |
-
#:
|
440 |
#, php-format
|
441 |
msgid ""
|
442 |
-
"<
|
443 |
-
"
|
444 |
msgstr ""
|
445 |
-
"<
|
446 |
-
"
|
|
|
447 |
|
448 |
-
#:
|
449 |
-
|
450 |
-
|
451 |
-
msgstr "erstellt am %1$s um %2$s Uhr"
|
452 |
|
453 |
-
#:
|
454 |
-
|
455 |
-
|
456 |
-
msgstr "Löschen"
|
457 |
|
458 |
-
#:
|
459 |
-
msgid "
|
460 |
-
|
|
|
461 |
|
462 |
-
#:
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#:
|
467 |
-
|
468 |
-
|
|
|
469 |
|
470 |
-
#:
|
471 |
-
msgid "
|
472 |
-
msgstr "
|
473 |
|
474 |
-
#:
|
475 |
-
msgid "
|
|
|
|
|
476 |
msgstr ""
|
|
|
|
|
|
|
477 |
|
478 |
-
#:
|
479 |
-
|
480 |
-
|
481 |
-
msgid "Credit Note #:"
|
482 |
-
msgstr "Gutschrifthinweis %1$s"
|
483 |
-
|
484 |
-
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
485 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:709
|
486 |
-
msgid "Date:"
|
487 |
-
msgstr "Datum:"
|
488 |
-
|
489 |
-
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:597
|
490 |
-
#: woocommerce-pdf-invoices/includes/class-invoice.php:99
|
491 |
-
msgid "Invoice #:"
|
492 |
-
msgstr "Rechnung:"
|
493 |
|
494 |
-
#:
|
495 |
-
|
496 |
-
|
497 |
-
msgstr "Rechnungsdatum:"
|
498 |
|
499 |
-
#:
|
500 |
-
msgid "
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#:
|
504 |
-
|
505 |
-
|
506 |
-
|
|
|
507 |
|
508 |
-
#:
|
509 |
-
|
510 |
-
|
511 |
-
msgstr "Zahlungsmethode:"
|
512 |
|
513 |
-
#:
|
514 |
-
|
515 |
-
|
516 |
-
"%1$s requires %2$s to be activated. Install and activate it and you should "
|
517 |
-
"be good to go! :)"
|
518 |
-
msgstr ""
|
519 |
-
"%1$s erfordert die Aktivierung von %2$s. Installieren und aktivieren Sie "
|
520 |
-
"%2$s und es sollte funktionieren! :)"
|
521 |
|
522 |
-
#:
|
523 |
#, php-format
|
524 |
msgid ""
|
525 |
-
"%1$s
|
526 |
-
"
|
|
|
527 |
msgstr ""
|
528 |
-
"%1$s
|
529 |
-
"
|
|
|
530 |
|
531 |
-
#:
|
532 |
-
msgid "
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#:
|
536 |
-
msgid "
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#:
|
540 |
-
|
541 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
|
543 |
-
#:
|
544 |
-
msgid ""
|
545 |
-
|
546 |
-
"using the micro template."
|
547 |
-
msgstr ""
|
548 |
-
"Die Rechnung konnte nicht generiert werden. Allgemeine Rechnungen werden nur "
|
549 |
-
"bei Verwendung der Mikrovorlage unterstützt."
|
550 |
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
-
msgstr ""
|
554 |
-
"Wählen Sie mehr als eine Bestellung aus, um eine allgemeine Rechnung zu "
|
555 |
-
"erstellen."
|
556 |
|
557 |
-
#:
|
558 |
-
|
559 |
-
|
560 |
-
msgstr "Ja"
|
561 |
|
562 |
-
#:
|
563 |
-
|
564 |
-
|
565 |
-
msgstr "Nein"
|
566 |
|
567 |
-
#:
|
568 |
-
msgid "
|
569 |
-
msgstr "
|
570 |
|
571 |
-
#:
|
572 |
-
msgid "
|
573 |
-
msgstr "
|
574 |
|
575 |
-
#:
|
576 |
-
|
577 |
-
|
|
|
578 |
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
582 |
-
msgid "Bulk Generate UBL"
|
583 |
-
msgstr "Bulk Erstellung von PDF Rechnungen"
|
584 |
-
|
585 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice-ubl.php:397
|
586 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:205
|
587 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:215
|
588 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:258
|
589 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:283
|
590 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:471
|
591 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:481
|
592 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:807
|
593 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:173
|
594 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:538
|
595 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:208
|
596 |
-
msgid "Discount"
|
597 |
-
msgstr "Rabatt"
|
598 |
|
599 |
-
#:
|
600 |
-
msgid ""
|
601 |
-
"Instead consider creating a Cancelled PDF invoice by changing the order "
|
602 |
-
"status to Cancelled."
|
603 |
msgstr ""
|
604 |
-
"
|
605 |
-
"Erwägung ziehen, indem Sie den Bestellstatus auf Storniert ändern."
|
606 |
|
607 |
-
#:
|
608 |
-
msgid "
|
609 |
-
msgstr "
|
610 |
|
611 |
-
#:
|
612 |
msgid ""
|
613 |
-
"
|
614 |
-
"
|
615 |
-
"ignored. When using a custom template, make sure to update it! Micro "
|
616 |
-
"template is not supported."
|
617 |
msgstr ""
|
618 |
-
"
|
619 |
-
"
|
620 |
-
"Option aktiviert ist, werden die Standardeinstellungen für den "
|
621 |
-
"Tabelleninhalt ignoriert. Wenn Sie eine benutzerdefinierte Vorlage "
|
622 |
-
"verwenden, stellen Sie sicher, dass Sie diese aktualisieren! Micro-Template "
|
623 |
-
"wird nicht unterstützt."
|
624 |
-
|
625 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:152
|
626 |
-
msgid "Enable Advanced Table Content"
|
627 |
-
msgstr "Erweiterte Tabelleninhalte aktivieren"
|
628 |
-
|
629 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:164
|
630 |
-
msgid "Show SKU as meta data"
|
631 |
-
msgstr "Artikelnummer als Metadaten anzeigen"
|
632 |
-
|
633 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:171
|
634 |
-
msgid "Display tax totals"
|
635 |
-
msgstr "Gesamtsumme der Steuern anzeigen"
|
636 |
-
|
637 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:179
|
638 |
-
msgid "Itemized"
|
639 |
-
msgstr "Aufgeschlüsselt"
|
640 |
-
|
641 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:180
|
642 |
-
msgid "As a single total"
|
643 |
-
msgstr "Zusammengezogen"
|
644 |
-
|
645 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:186
|
646 |
-
msgid "Line item columns"
|
647 |
-
msgstr "Auftragsspalten"
|
648 |
-
|
649 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:195
|
650 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:457
|
651 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:48
|
652 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:412
|
653 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:53
|
654 |
-
msgid "Description"
|
655 |
-
msgstr "Beschreibung"
|
656 |
|
657 |
-
#:
|
658 |
-
|
659 |
-
|
660 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:476
|
661 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:57
|
662 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:60
|
663 |
-
msgid "Cost"
|
664 |
-
msgstr "Preis"
|
665 |
|
666 |
-
#:
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
-
|
670 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:230
|
671 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:240
|
672 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:303
|
673 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:308
|
674 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:494
|
675 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:499
|
676 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:1068
|
677 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:77
|
678 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:235
|
679 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:414
|
680 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:71
|
681 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:276
|
682 |
-
msgid "Total"
|
683 |
-
msgstr "Gesamt"
|
684 |
|
685 |
-
#:
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
msgstr "
|
|
|
|
|
|
|
691 |
|
692 |
-
#:
|
693 |
-
msgid "
|
694 |
-
msgstr "
|
695 |
-
|
696 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:263
|
697 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:288
|
698 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:839
|
699 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:182
|
700 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:200
|
701 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:550
|
702 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:216
|
703 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:232
|
704 |
-
msgid "Shipping"
|
705 |
-
msgstr "Versand"
|
706 |
|
707 |
-
#:
|
708 |
-
|
709 |
-
|
710 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:243
|
711 |
-
msgid "Fee"
|
712 |
-
msgstr "Zahlungsgebühr"
|
713 |
|
714 |
-
#:
|
715 |
-
|
716 |
-
|
717 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:191
|
718 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:502
|
719 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:224
|
720 |
-
msgid "Subtotal"
|
721 |
-
msgstr "Zwischensumme"
|
722 |
|
723 |
-
#:
|
724 |
-
msgid "
|
725 |
-
msgstr ""
|
726 |
|
727 |
-
#:
|
728 |
-
|
729 |
-
|
730 |
-
msgid "VAT %s"
|
731 |
-
msgstr "USt %s"
|
732 |
-
|
733 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:461
|
734 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:59
|
735 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:413
|
736 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:62
|
737 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:79
|
738 |
-
msgid "Qty"
|
739 |
-
msgstr "Anz"
|
740 |
|
741 |
-
#:
|
742 |
-
msgid "
|
743 |
-
msgstr "
|
744 |
|
745 |
-
#:
|
746 |
-
|
747 |
-
|
748 |
-
msgstr "Gutschein(e): %s"
|
749 |
|
750 |
-
#:
|
751 |
-
msgid "
|
752 |
-
msgstr "
|
753 |
|
754 |
-
#:
|
755 |
msgid ""
|
756 |
-
"
|
757 |
-
"
|
758 |
msgstr ""
|
759 |
-
"
|
760 |
-
"
|
|
|
761 |
|
762 |
-
#:
|
763 |
-
msgid "
|
764 |
-
msgstr "
|
765 |
|
766 |
-
#:
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
|
770 |
-
#:
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
msgid "
|
776 |
-
msgstr "
|
777 |
|
778 |
-
#:
|
779 |
-
|
780 |
-
msgid "
|
781 |
-
msgstr "
|
782 |
|
783 |
-
#:
|
784 |
-
|
785 |
-
msgid "
|
786 |
-
msgstr "
|
|
|
|
|
787 |
|
788 |
-
#:
|
789 |
-
|
790 |
-
|
791 |
-
msgstr "Format für E-Mail-Versand auswählen."
|
792 |
|
793 |
-
#:
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
|
797 |
-
#:
|
798 |
msgid ""
|
799 |
-
"
|
800 |
-
"
|
801 |
msgstr ""
|
802 |
-
"
|
803 |
-
"
|
804 |
-
"bezahlt werden kann."
|
805 |
|
806 |
-
#:
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
msgid "Invoice reminder for order {order_number}"
|
812 |
-
msgstr "Zahlungserinnerung für Bestellung {order_number}"
|
813 |
|
814 |
-
#:
|
815 |
-
|
816 |
-
|
|
|
817 |
|
818 |
-
#:
|
819 |
-
|
820 |
-
|
821 |
-
msgstr "Rechnungsadresse:"
|
822 |
|
823 |
-
#:
|
824 |
-
|
825 |
-
|
826 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php:59
|
827 |
-
msgid "Ship to:"
|
828 |
-
msgstr "Lieferadresse:"
|
829 |
|
830 |
-
#:
|
831 |
-
#:
|
832 |
-
|
833 |
-
|
834 |
-
msgid "Note from customer: %s"
|
835 |
-
msgstr "Hinweis vom Kunden: %s"
|
836 |
|
837 |
-
#:
|
838 |
-
#:
|
839 |
-
#:
|
840 |
-
|
841 |
-
|
842 |
-
msgstr "Hinweis an den Kunden: %s"
|
843 |
|
844 |
-
#:
|
845 |
-
|
846 |
-
|
847 |
-
msgstr "
|
|
|
|
|
848 |
|
849 |
-
#:
|
850 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/footer.php:15
|
851 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/footer.php:12
|
852 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/footer.php:26
|
853 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/footer.php:23
|
854 |
#, php-format
|
855 |
-
msgid "
|
856 |
-
|
|
|
|
|
|
|
|
|
857 |
|
858 |
-
#:
|
859 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
860 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
861 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
862 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:41
|
863 |
#, php-format
|
864 |
-
msgid "
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
msgstr "E-Mail Betreff"
|
874 |
-
|
875 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
876 |
-
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
877 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:49
|
878 |
-
#, fuzzy, php-format
|
879 |
-
#| msgid "VAT %s"
|
880 |
-
msgid "VAT ID: %s"
|
881 |
-
msgstr "USt %s"
|
882 |
-
|
883 |
-
#: woocommerce-pdf-invoices-premium/includes/templates/emails/customer-credit-note.php:25
|
884 |
-
msgid "Order:"
|
885 |
-
msgstr "Bestellung:"
|
886 |
|
887 |
-
#:
|
888 |
#, php-format
|
889 |
-
msgid "
|
890 |
-
|
|
|
|
|
|
|
|
|
|
|
891 |
|
892 |
-
#:
|
893 |
-
|
894 |
-
|
895 |
-
msgstr "Bestelldatum: %s"
|
896 |
|
897 |
-
#:
|
898 |
-
|
899 |
-
|
900 |
-
msgstr "Rechnungsadresse"
|
901 |
|
902 |
-
#:
|
903 |
-
msgid "
|
904 |
-
|
|
|
|
|
|
|
905 |
|
906 |
-
#:
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
|
913 |
-
#:
|
914 |
-
msgid "
|
915 |
-
|
|
|
|
|
|
|
|
|
916 |
|
917 |
-
#:
|
918 |
-
|
919 |
-
|
920 |
-
|
|
|
|
|
|
|
921 |
|
922 |
-
#:
|
923 |
-
|
924 |
-
|
925 |
-
|
|
|
|
|
|
|
926 |
|
927 |
-
#:
|
928 |
-
|
929 |
-
|
930 |
-
msgstr "
|
|
|
|
|
931 |
|
932 |
-
#:
|
933 |
-
msgid "
|
934 |
-
msgstr "
|
935 |
|
936 |
-
#:
|
937 |
-
msgid "
|
938 |
-
|
|
|
|
|
939 |
|
940 |
-
#:
|
941 |
-
msgid "
|
942 |
-
msgstr "
|
943 |
|
944 |
-
#:
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#:
|
949 |
-
msgid "
|
950 |
-
msgstr "
|
|
|
|
|
951 |
|
952 |
-
#:
|
953 |
-
|
954 |
-
|
955 |
-
msgstr "Steuernummer: %s"
|
956 |
|
957 |
-
#:
|
958 |
-
|
959 |
-
|
960 |
-
msgstr "Bestellnummer: %s"
|
961 |
|
962 |
-
#:
|
963 |
#, php-format
|
964 |
-
msgid "
|
965 |
-
msgstr "
|
966 |
-
|
967 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:141
|
968 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:24
|
969 |
-
msgid "General"
|
970 |
-
msgstr "Allgemein"
|
971 |
-
|
972 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:145
|
973 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:24
|
974 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:100
|
975 |
-
msgid "Template"
|
976 |
-
msgstr "Vorlage"
|
977 |
|
978 |
-
#:
|
979 |
-
|
980 |
-
|
981 |
-
msgid "Debug"
|
982 |
-
msgstr "Fehlersuche"
|
983 |
|
984 |
-
#:
|
985 |
-
msgid "
|
986 |
-
msgstr "
|
987 |
|
988 |
-
#:
|
989 |
-
#, php-format
|
990 |
msgid ""
|
991 |
-
"
|
992 |
-
"
|
993 |
msgstr ""
|
994 |
-
"
|
995 |
-
"
|
996 |
|
997 |
-
#:
|
998 |
-
|
999 |
-
|
1000 |
-
msgstr "Version %s"
|
1001 |
|
1002 |
-
#:
|
1003 |
-
msgid "
|
1004 |
-
msgstr "
|
1005 |
|
1006 |
-
#:
|
1007 |
-
msgid "
|
1008 |
-
msgstr "
|
|
|
|
|
1009 |
|
1010 |
-
#:
|
1011 |
-
|
1012 |
-
|
1013 |
-
msgstr "Allgemein"
|
1014 |
|
1015 |
-
#:
|
1016 |
-
msgid "
|
|
|
|
|
1017 |
msgstr ""
|
|
|
|
|
|
|
1018 |
|
1019 |
-
#:
|
1020 |
-
|
1021 |
-
|
|
|
1022 |
|
1023 |
-
#:
|
1024 |
-
|
1025 |
-
|
|
|
1026 |
|
1027 |
-
#:
|
1028 |
-
msgid "
|
1029 |
-
msgstr "
|
1030 |
|
1031 |
-
#:
|
1032 |
#, php-format
|
1033 |
msgid ""
|
1034 |
-
"
|
1035 |
-
"
|
1036 |
-
"
|
1037 |
-
"more email types? Take a look at %2$s."
|
1038 |
msgstr ""
|
1039 |
-
"
|
1040 |
-
"
|
1041 |
-
"
|
1042 |
-
"
|
1043 |
-
|
1044 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:44
|
1045 |
-
msgid "Download Options"
|
1046 |
-
msgstr "Download-Optionen"
|
1047 |
-
|
1048 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:47
|
1049 |
-
msgid "Cloud Storage Options"
|
1050 |
-
msgstr "Cloud-Speicheroptionen"
|
1051 |
|
1052 |
-
#:
|
1053 |
-
#, php-format
|
1054 |
msgid ""
|
1055 |
-
"
|
1056 |
-
"Dropbox, OneDrive, Google Drive or Egnyte and enter your account below."
|
1057 |
msgstr ""
|
1058 |
-
"
|
1059 |
-
"
|
1060 |
|
1061 |
-
#:
|
1062 |
-
msgid "
|
1063 |
-
msgstr "
|
1064 |
|
1065 |
-
#:
|
1066 |
-
msgid "
|
1067 |
-
msgstr "
|
1068 |
|
1069 |
-
#:
|
1070 |
-
msgid "
|
1071 |
-
msgstr "
|
1072 |
|
1073 |
-
#:
|
1074 |
-
msgid "
|
1075 |
-
msgstr "
|
1076 |
|
1077 |
-
#:
|
1078 |
-
msgid "
|
1079 |
-
msgstr "
|
1080 |
|
1081 |
-
#:
|
1082 |
-
msgid "
|
1083 |
-
msgstr "
|
1084 |
|
1085 |
-
#:
|
1086 |
-
msgid "
|
1087 |
-
msgstr "
|
1088 |
|
1089 |
-
#:
|
1090 |
-
msgid "
|
1091 |
-
msgstr "
|
1092 |
|
1093 |
-
#:
|
1094 |
-
msgid ""
|
1095 |
-
|
1096 |
-
"products."
|
1097 |
-
msgstr ""
|
1098 |
-
"Überspringe die automatische PDF-Rechnungserstellung für Bestellungen, die "
|
1099 |
-
"nur kostenlose Produkte enthalten."
|
1100 |
|
1101 |
-
#:
|
1102 |
-
msgid "
|
1103 |
-
msgstr "
|
1104 |
|
1105 |
-
#:
|
1106 |
-
msgid "
|
1107 |
-
msgstr "
|
1108 |
|
1109 |
-
#:
|
1110 |
-
msgid "
|
1111 |
-
msgstr "
|
1112 |
|
1113 |
-
#:
|
1114 |
-
msgid "
|
1115 |
-
msgstr "
|
1116 |
|
1117 |
-
#:
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
"
|
1123 |
-
"der Bestellstatus entweder \"In Bearbeitung\" oder \"Fertiggestellt\" ist."
|
1124 |
|
1125 |
-
#:
|
1126 |
-
|
1127 |
-
|
|
|
|
|
1128 |
|
1129 |
-
#:
|
1130 |
-
|
1131 |
-
|
|
|
|
|
1132 |
|
1133 |
-
#:
|
|
|
1134 |
#, php-format
|
1135 |
-
msgid "
|
1136 |
-
msgstr ""
|
1137 |
-
"Holen Sie sich Ihr Benutzerkonto von Ihrem %1$s <a href=\"%2$s\">Account</a>."
|
1138 |
|
1139 |
-
#:
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
-
#:
|
1144 |
-
msgid "
|
1145 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1146 |
|
1147 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1148 |
#, php-format
|
1149 |
-
msgid ""
|
1150 |
-
"
|
1151 |
-
"brief description."
|
1152 |
-
msgstr ""
|
1153 |
-
"Möchten Sie die Vorlage anpassen? Der <a href=\"%s\">FAQ</a>-Bereich gibt "
|
1154 |
-
"Ihnen eine kurze Beschreibung, wie dies Funktioniert."
|
1155 |
|
1156 |
-
#:
|
1157 |
-
|
1158 |
-
|
|
|
1159 |
|
1160 |
-
#:
|
1161 |
-
|
1162 |
-
|
|
|
|
|
1163 |
|
1164 |
-
#:
|
1165 |
-
|
1166 |
-
|
1167 |
-
"
|
1168 |
-
msgstr ""
|
1169 |
-
"Lieferscheine sind nur verfügbar, wenn Sie die <strong>minimal</strong>-"
|
1170 |
-
"Vorlage verwenden."
|
1171 |
|
1172 |
-
#:
|
1173 |
-
|
1174 |
-
|
|
|
|
|
1175 |
|
1176 |
-
#:
|
1177 |
-
|
1178 |
-
|
|
|
|
|
1179 |
|
1180 |
-
#:
|
1181 |
-
msgid "
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#:
|
1185 |
-
|
1186 |
-
|
|
|
1187 |
|
1188 |
-
#:
|
1189 |
-
msgid "
|
1190 |
-
msgstr "
|
1191 |
|
1192 |
-
#: woocommerce-pdf-invoices
|
1193 |
-
msgid "
|
1194 |
-
msgstr "
|
1195 |
|
1196 |
-
#: woocommerce-pdf-invoices
|
1197 |
-
msgid "
|
1198 |
-
msgstr "
|
1199 |
|
1200 |
-
#: woocommerce-pdf-invoices
|
1201 |
-
msgid "
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#: woocommerce-pdf-invoices
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1210 |
|
1211 |
-
#: woocommerce-pdf-invoices
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
#, php-format
|
1213 |
msgid ""
|
1214 |
-
"
|
1215 |
-
"
|
1216 |
msgstr ""
|
1217 |
-
"
|
1218 |
-
"
|
1219 |
-
"Vorlage."
|
1220 |
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
|
|
|
|
1224 |
|
1225 |
-
#: woocommerce-pdf-invoices
|
1226 |
-
msgid "
|
1227 |
-
msgstr "
|
1228 |
|
1229 |
-
|
1230 |
-
|
1231 |
-
"
|
1232 |
-
|
|
|
|
|
|
|
|
|
1233 |
|
1234 |
-
|
1235 |
-
|
1236 |
-
msgstr "Datumsformat"
|
1237 |
|
1238 |
-
|
1239 |
-
|
1240 |
-
msgid "<a href=\"%s\">Format</a> of invoice date and order date."
|
1241 |
-
msgstr "<a href=\"%s\">Format</a> von Rechnungsdatum und Bestelldatum."
|
1242 |
|
1243 |
-
|
1244 |
-
|
1245 |
-
msgstr "Preise inklusive Steuern anzeigen"
|
1246 |
|
1247 |
-
|
1248 |
-
|
1249 |
-
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
1250 |
-
"still be excluding tax, so disable it within the visible columns section."
|
1251 |
-
msgstr ""
|
1252 |
-
"Einzelpostensummen wird inklusive Steuern sein. <br/> <b>Hinweis:</b> "
|
1253 |
-
"Zwischensumme wird noch ohne Steuern sein, deaktivieren sie die Spalten im "
|
1254 |
-
"sichtbaren Bereich."
|
1255 |
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
|
|
|
|
|
|
|
|
1259 |
|
1260 |
-
|
1261 |
-
|
1262 |
-
msgstr "Aktivieren, um Zwischensumme einschließlich Versand anzuzeigen."
|
1263 |
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
|
|
|
|
1267 |
|
1268 |
-
|
1269 |
-
|
1270 |
-
msgstr ""
|
1271 |
-
"
|
1272 |
-
"Bestellung bezahlt wurde."
|
1273 |
|
1274 |
-
|
1275 |
-
|
1276 |
-
msgstr "Lieferscheine deaktivieren"
|
1277 |
|
1278 |
-
|
1279 |
-
|
1280 |
-
msgstr "Firmenlogo"
|
1281 |
|
1282 |
-
|
1283 |
-
|
1284 |
-
msgid ""
|
1285 |
-
"Use the <a href=\"%1$s\">Media Library</a> to <a href=\"%2$s\">upload</a> or "
|
1286 |
-
"choose a .jpg, .jpeg, .gif or .png file and copy and paste the <a href=\"%3$s"
|
1287 |
-
"\" target=\"_blank\">File URL</a>."
|
1288 |
-
msgstr ""
|
1289 |
-
"Benutzen Sie die <a href=\"%1$s\">Mediathek</a> zu <a href=\"%2$s\">upload</"
|
1290 |
-
"a> oder wählen Sie eine .jpg, .jpeg, .gif oder .png Datei und kopieren Sie "
|
1291 |
-
"die <a href=\"%3$s\" target=\"_blank\">Datei-URL</a>."
|
1292 |
|
1293 |
-
|
1294 |
-
|
1295 |
-
msgstr "Firmenname"
|
1296 |
|
1297 |
-
|
1298 |
-
|
1299 |
-
msgstr "Firmenanschrift"
|
1300 |
|
1301 |
-
|
1302 |
-
|
1303 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:303
|
1304 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:342
|
1305 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:354
|
1306 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:365
|
1307 |
-
#, php-format
|
1308 |
-
msgid "Allowed HTML tags: %s."
|
1309 |
-
msgstr "Erlaubte HTML-Tags: %s."
|
1310 |
|
1311 |
-
|
1312 |
-
|
1313 |
-
msgstr "Firmendetails"
|
1314 |
|
1315 |
-
|
1316 |
-
|
1317 |
-
#| msgid "Company name"
|
1318 |
-
msgid "Company phone"
|
1319 |
-
msgstr "Firmenname"
|
1320 |
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1326 |
|
1327 |
-
|
1328 |
-
|
1329 |
-
#| msgid "Company name"
|
1330 |
-
msgid "Company VAT ID"
|
1331 |
-
msgstr "Firmenname"
|
1332 |
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
|
|
|
|
|
|
|
|
|
|
1336 |
|
1337 |
-
|
1338 |
-
|
1339 |
-
msgstr "Ändern Sie die Bezeichnung der Rechnung."
|
1340 |
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
|
|
|
|
|
|
|
|
1345 |
|
1346 |
-
|
1347 |
-
|
1348 |
-
msgstr "“Danke für Ihre Bestellung”-Text"
|
1349 |
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
|
|
|
|
1354 |
|
1355 |
-
|
1356 |
-
|
1357 |
-
msgstr "Lieferadresse des Kunden anzeigen"
|
1358 |
|
1359 |
-
|
1360 |
-
|
1361 |
-
"
|
1362 |
-
"
|
1363 |
-
|
1364 |
-
"
|
1365 |
-
"virtuelle Produkte enthält."
|
1366 |
|
1367 |
-
|
1368 |
-
|
1369 |
-
msgstr "Kundennotizen anzeigen"
|
1370 |
|
1371 |
-
|
1372 |
-
|
1373 |
-
msgstr "AGB‚ Richtlinien etc."
|
1374 |
|
1375 |
-
|
1376 |
-
|
1377 |
-
msgid ""
|
1378 |
-
"Visible below customer notes and above footer. Want to attach additional "
|
1379 |
-
"pages to the invoice? Take a look at <a href=\"%1$s\">%2$s</a> plugin."
|
1380 |
-
msgstr ""
|
1381 |
-
"Sichtbar unter den Kundennotizen und über der Fußzeile. Möchten Sie "
|
1382 |
-
"zusätzliche Seiten zur Rechnung anhängen? Schauen Sie sich das <a href=\"%1$s"
|
1383 |
-
"\">%2$s </a> Plugin an."
|
1384 |
|
1385 |
-
|
1386 |
-
|
1387 |
-
msgstr "Linke Fußzeilen Spalte."
|
1388 |
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
|
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
-
|
1394 |
-
|
1395 |
-
msgstr "Art"
|
1396 |
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
|
1401 |
-
|
1402 |
-
|
1403 |
-
msgstr "Aufeinanderfolgende Nummerierung"
|
1404 |
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
|
|
|
|
|
|
|
|
|
|
1408 |
|
1409 |
-
|
1410 |
-
|
1411 |
-
msgstr "Weiter"
|
1412 |
|
1413 |
-
|
1414 |
-
|
1415 |
-
msgstr "Die nächste Rechnungsnummer beim Zurücksetzen des Zählers."
|
1416 |
|
1417 |
-
|
1418 |
-
|
1419 |
-
"<b>Note:</b> Only available for Sequential numbering. All PDF invoices with "
|
1420 |
-
"invoice number greater then next invoice number will be deleted!"
|
1421 |
-
msgstr ""
|
1422 |
-
"<b>Hinweis:</b> Nur für die Sequentialnummerierung. Alle PDF-Rechnungen mit "
|
1423 |
-
"der Rechnungsnummer, die größer ist, als die nächste Rechnungsnummer werden "
|
1424 |
-
"gelöscht!"
|
1425 |
|
1426 |
-
|
1427 |
-
|
1428 |
-
msgstr "Ziffern"
|
1429 |
|
1430 |
-
|
1431 |
-
|
1432 |
-
msgstr "Jährlich zurücksetzen"
|
1433 |
|
1434 |
-
|
1435 |
-
|
1436 |
-
msgstr "Rechnungszählung am Neujahrstag automatisch zurücksetzen."
|
1437 |
|
1438 |
-
|
1439 |
-
|
1440 |
-
"<b>Note</b>: You will have to generate all invoices again when changing "
|
1441 |
-
"option."
|
1442 |
-
msgstr ""
|
1443 |
-
"<b>Hinweis</b>: Sie müssen alle Rechnungen beim Wechsel der Einstellung "
|
1444 |
-
"erneut generieren."
|
1445 |
|
1446 |
-
|
1447 |
-
|
1448 |
-
msgstr "Steuer (Artikel)"
|
1449 |
|
1450 |
-
|
1451 |
-
|
1452 |
-
msgstr "Steuer (Gesamt)"
|
1453 |
|
1454 |
-
|
1455 |
-
|
1456 |
-
"Company logo not found. Upload the image to the Media Library and try again."
|
1457 |
-
msgstr ""
|
1458 |
-
"Logo nicht gefunden. Laden Sie das Bild in die Mediathek hoch und versuchen "
|
1459 |
-
"Sie es erneut."
|
1460 |
|
1461 |
-
|
1462 |
-
|
1463 |
-
msgid ""
|
1464 |
-
"The settings of WooCommerce PDF Invoices are available <a href=\"%1$s\">on "
|
1465 |
-
"this page</a>."
|
1466 |
-
msgstr ""
|
1467 |
-
"Die Einstellungen für WooCommerce PDF-Rechnungen sind auf <a href=\"%1$s"
|
1468 |
-
"\">dieser Seite verfügbar</a>."
|
1469 |
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
"Before we deactivate WooCommerce PDF Invoices, would you care to <a href="
|
1474 |
-
"\"%1$s\" target=\"_blank\">let us know why</a> so we can improve it for you? "
|
1475 |
-
"<a href=\"%2$s\">No, deactivate now</a>."
|
1476 |
-
msgstr ""
|
1477 |
-
"Bevor wir WooCommerce PDF-Rechnungen deaktivieren, würden wir Sie gerne um "
|
1478 |
-
"ein <a href=\"%1$s\" target=\"_blank\" >Feedback</a> bitten, damit wir die "
|
1479 |
-
"Erweiterung für Sie verbessern können. <a href=\"%2$s\">Ohne Feedback "
|
1480 |
-
"deaktivieren.</a>."
|
1481 |
-
|
1482 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-rate-notice.php:26
|
1483 |
-
#, fuzzy, php-format
|
1484 |
-
#| msgid ""
|
1485 |
-
#| "Hi%1$s! You're using <b>WooCommerce PDF Invoices</b> for some time now "
|
1486 |
-
#| "and we would appreciate your <a href=\"%2$s\" target=\"_blank\">★★★★★</a> "
|
1487 |
-
#| "rating. It will support future development big-time."
|
1488 |
-
msgid ""
|
1489 |
-
"Hi%1$s! You're using %2$s for some time now and we would appreciate your "
|
1490 |
-
"%3$s rating. It will support future development big-time."
|
1491 |
-
msgstr ""
|
1492 |
-
"Hi %1$s! Sie verwenden <b>WooCommerce PDF-Rechnungen</b> schon seit einiger "
|
1493 |
-
"Zeit und, wir würden uns über Ihre <a href=\"%2$s\" target=\"_blank\">★★★★★</"
|
1494 |
-
"a>-Bewertung sehr freuen. Sie wird die zukünftige Entwicklung unterstützen."
|
1495 |
|
1496 |
-
|
1497 |
-
|
1498 |
-
msgstr ""
|
1499 |
|
1500 |
-
|
1501 |
-
|
1502 |
-
msgstr "WooCommerce PDF Rechnungen Premium"
|
1503 |
|
1504 |
-
|
1505 |
-
|
1506 |
-
"This plugin offers a premium version which comes with the following features:"
|
1507 |
-
msgstr ""
|
1508 |
-
"Diese Erweiterung bietet eine Premium-Version, die Ihnen die folgenden "
|
1509 |
-
"Funktionen bietet:"
|
1510 |
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1517 |
|
1518 |
-
|
1519 |
-
|
1520 |
-
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1521 |
-
"order."
|
1522 |
-
msgstr ""
|
1523 |
-
"Senden Sie Gutschriften und stornierte PDF-Rechnungen bei der Rückerstattung "
|
1524 |
-
"oder Stornierung von Bestellungen."
|
1525 |
|
1526 |
-
|
1527 |
-
|
1528 |
-
"Fully customize the table content by modifying line item columns and total "
|
1529 |
-
"rows."
|
1530 |
-
msgstr ""
|
1531 |
-
"Passen Sie den Tabelleninhalt vollständig an, indem Sie die Spalten von "
|
1532 |
-
"Einzelposten und Summenzeilen modifizieren."
|
1533 |
|
1534 |
-
|
1535 |
-
|
1536 |
-
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1537 |
-
"period of time."
|
1538 |
-
msgstr ""
|
1539 |
-
"Senden Sie automatisch PDF-Rechnungen als Erinnerung, die innerhalb eines "
|
1540 |
-
"bestimmten Zeitraums konfigurierbar ist."
|
1541 |
|
1542 |
-
|
1543 |
-
|
1544 |
-
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1545 |
-
msgstr ""
|
1546 |
-
"Lassen Sie die Käufer entscheiden, ob sie eine PDF-Rechnung an der Kasse "
|
1547 |
-
"erhalten möchten."
|
1548 |
|
1549 |
-
|
1550 |
-
|
1551 |
-
msgstr "Ändern Sie die Schriftart der PDF-Rechnungen."
|
1552 |
|
1553 |
-
|
1554 |
-
|
1555 |
-
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1556 |
-
msgstr ""
|
1557 |
-
"Generieren Sie PDF-Rechnungen in mehreren Sprachen (WPML und Polylang "
|
1558 |
-
"kompatibel)."
|
1559 |
|
1560 |
-
|
1561 |
-
|
1562 |
-
msgstr "Bulk generiert PDF-Rechnungen."
|
1563 |
|
1564 |
-
|
1565 |
-
|
1566 |
-
msgstr "Bulk Export und/oder Download der PDF Rechnungen."
|
1567 |
|
1568 |
-
|
1569 |
-
|
1570 |
-
msgstr ""
|
1571 |
-
"Verrechne regelmäßig durch das Erzeugen und Senden von allgemeinen "
|
1572 |
-
"Rechnungen."
|
1573 |
|
1574 |
-
|
1575 |
-
|
1576 |
-
msgstr "Fügen Sie zusätzliche PDFs zur PDF-Rechnungen hinzu."
|
1577 |
|
1578 |
-
|
1579 |
-
|
1580 |
-
msgstr "Senden Sie PDF-Rechnungen an mehrere Empfänger."
|
1581 |
|
1582 |
-
|
1583 |
-
|
1584 |
-
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1585 |
-
msgstr "Anhängen an die <a href=\"%s\">WooCommerce Abonnement</a> E-Mails."
|
1586 |
|
1587 |
-
|
1588 |
-
|
1589 |
-
msgstr "Weitere Informationen"
|
1590 |
|
1591 |
-
|
1592 |
-
|
1593 |
-
msgstr "Bleibe auf dem Laufenden"
|
1594 |
|
1595 |
-
|
1596 |
-
|
1597 |
-
"
|
1598 |
-
|
1599 |
-
|
1600 |
-
"
|
1601 |
-
"unseren Newsletter abbonieren."
|
1602 |
|
1603 |
-
|
1604 |
-
|
1605 |
-
msgstr "Deine E-Mail-Adresse"
|
1606 |
|
1607 |
-
|
1608 |
-
|
1609 |
-
msgstr "Registrierung"
|
1610 |
|
1611 |
-
|
1612 |
-
|
1613 |
-
msgstr ""
|
1614 |
-
"Einwilligung kann jederzeit widerrufen werden, keine Weitergabe der Daten, "
|
1615 |
-
"kein Spam"
|
1616 |
|
1617 |
-
|
1618 |
-
|
1619 |
-
msgstr "Über"
|
1620 |
|
1621 |
-
|
1622 |
-
|
1623 |
-
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1624 |
-
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1625 |
-
msgstr ""
|
1626 |
-
"Diese Erweiterung ist ein Quell-offenes Projekt und zielt darauf ab die "
|
1627 |
-
"Rechnungs-Lücke in <a href=\"http://www.woothemes.com/woocommerce"
|
1628 |
-
"\">WooCommerce</a> zu füllen."
|
1629 |
|
1630 |
-
|
1631 |
-
|
1632 |
-
msgid "Version: %s"
|
1633 |
-
msgstr "Version: %s"
|
1634 |
|
1635 |
-
#:
|
1636 |
-
|
1637 |
-
msgid "Author: %s"
|
1638 |
-
msgstr "Autor: %s"
|
1639 |
|
1640 |
-
#:
|
1641 |
-
|
1642 |
-
msgid ""
|
1643 |
-
"We will never ask for donations, but to guarantee future development, we do "
|
1644 |
-
"need your support. Please show us your appreciation by leaving a <a href="
|
1645 |
-
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1646 |
-
msgstr ""
|
1647 |
-
"Wir werden nie um Spenden bitten, aber um die zukünftige Entwicklung zu "
|
1648 |
-
"gewährleisten, brauchen wir Ihre Unterstützung. Bitte zeigen Sie uns Ihre "
|
1649 |
-
"Wertschätzung, indem Sie eine <a href=\"%1$s\" >★★★★★</a>-Bewertung "
|
1650 |
-
"hinterlassen und für <ein href=\"%2$s\">funktioniert</a> stimmen."
|
1651 |
|
1652 |
-
|
1653 |
-
|
1654 |
-
"
|
1655 |
-
msgstr ""
|
1656 |
-
"
|
1657 |
-
"
|
1658 |
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
|
|
|
|
|
|
1662 |
|
1663 |
-
|
1664 |
-
|
1665 |
-
msgstr "Häufig gestellte Fragen (FAQ)"
|
1666 |
|
1667 |
-
|
1668 |
-
|
1669 |
-
msgstr "Support Forum"
|
1670 |
|
1671 |
-
|
1672 |
-
|
1673 |
-
msgstr "Fordern Sie eine neue Funktion an"
|
1674 |
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
|
|
|
|
|
|
1678 |
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
msgstr "Versandart: %s"
|
1684 |
|
1685 |
-
|
1686 |
-
|
1687 |
-
msgstr "Lieferschein ansehen"
|
1688 |
|
1689 |
-
|
1690 |
-
|
1691 |
-
msgstr "WooCommerce"
|
1692 |
|
1693 |
-
|
1694 |
-
|
1695 |
-
#, php-format
|
1696 |
-
msgid "Order Number: %s"
|
1697 |
-
msgstr "Bestellnummer: %s"
|
1698 |
|
1699 |
-
|
1700 |
-
|
1701 |
-
#, php-format
|
1702 |
-
msgid "Order Date: %s"
|
1703 |
-
msgstr "Bestelldatum: %s"
|
1704 |
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
|
|
|
|
|
|
1708 |
|
1709 |
-
|
1710 |
-
|
1711 |
-
msgstr "Rückerstattet"
|
1712 |
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1717 |
|
1718 |
-
|
1719 |
-
|
1720 |
-
msgstr "Lieferschein"
|
1721 |
|
1722 |
-
|
1723 |
-
|
1724 |
-
msgid "Shipping Method: %s"
|
1725 |
-
msgstr "Versandart: %s"
|
1726 |
|
1727 |
-
|
1728 |
-
|
1729 |
-
msgstr "Produkt"
|
1730 |
|
1731 |
-
|
1732 |
-
|
1733 |
-
msgstr "Rechnungsnr."
|
1734 |
|
1735 |
-
|
1736 |
-
|
1737 |
-
msgid "PDF Invoice"
|
1738 |
-
msgstr "Rechnung"
|
1739 |
|
1740 |
-
|
1741 |
-
|
1742 |
-
msgstr "Erstellen"
|
1743 |
|
1744 |
-
|
1745 |
-
|
1746 |
-
msgstr "Nummer:"
|
1747 |
|
1748 |
-
|
1749 |
-
|
1750 |
-
msgstr "Senden?"
|
1751 |
|
1752 |
-
|
1753 |
-
|
1754 |
-
msgstr "Aktualisieren"
|
1755 |
|
1756 |
-
|
1757 |
-
|
1758 |
-
msgstr "Sind Sie sicher, dass Sie die PDF-Rechnung löschen möchten?"
|
1759 |
|
1760 |
-
|
1761 |
-
|
1762 |
-
msgid ""
|
1763 |
-
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1764 |
-
"an accounting gap!"
|
1765 |
-
msgstr ""
|
1766 |
-
"Sie erhalten keine PDF-Rechnung mit der Rechnungsnummer %d und schaffen so "
|
1767 |
-
"eine Buchhaltungslücke!"
|
1768 |
|
1769 |
-
|
1770 |
-
|
1771 |
-
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1772 |
-
msgstr ""
|
1773 |
-
"Betrachten Sie stattdessen die Verwendung von abgerechneten PDF-Rechnungen "
|
1774 |
-
"mit %s."
|
1775 |
|
1776 |
-
#~ msgid "
|
1777 |
-
#~ msgstr "
|
1778 |
|
1779 |
-
#~ msgid "
|
1780 |
-
#~ msgstr "
|
1781 |
|
1782 |
#~ msgid ""
|
1783 |
-
#~ "
|
1784 |
-
#~ "
|
1785 |
#~ msgstr ""
|
1786 |
-
#~ "
|
1787 |
-
#~ "
|
1788 |
|
1789 |
-
#~ msgid "
|
1790 |
-
#~ msgstr "
|
1791 |
|
1792 |
-
#~ msgid "
|
1793 |
-
#~ msgstr "
|
1794 |
|
1795 |
-
#~ msgid "
|
1796 |
-
#~ msgstr "
|
1797 |
|
1798 |
-
#~ msgid "
|
1799 |
-
#~ msgstr "
|
1800 |
|
1801 |
-
#~ msgid "
|
1802 |
-
#~ msgstr "
|
1803 |
|
1804 |
-
#~ msgid "
|
1805 |
-
#~ msgstr "
|
1806 |
|
1807 |
-
#~ msgid "
|
1808 |
-
#~ msgstr "
|
1809 |
|
1810 |
-
#~ msgid "
|
1811 |
-
#~
|
|
|
|
|
|
|
|
|
|
|
1812 |
|
1813 |
-
#~ msgid "Invoice
|
1814 |
-
#~ msgstr "
|
1815 |
|
1816 |
-
#~ msgid "
|
1817 |
-
#~ msgstr "Bestellung
|
1818 |
|
1819 |
-
#~ msgid "
|
1820 |
-
#~ msgstr "
|
1821 |
|
1822 |
-
#~ msgid "
|
1823 |
-
#~ msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1824 |
|
1825 |
-
#~ msgid "
|
1826 |
-
#~ msgstr "
|
1827 |
|
1828 |
-
#~ msgid "
|
1829 |
-
#~ msgstr "
|
|
|
|
|
|
|
1830 |
|
1831 |
#~ msgid "http://wcpdfinvoices.com"
|
1832 |
#~ msgstr "http://wcpdfinvoices.com"
|
@@ -1846,21 +1544,6 @@ msgstr ""
|
|
1846 |
#~ msgid "https://wordpress.org/plugins/woocommerce-pdf-invoices"
|
1847 |
#~ msgstr "https://wordpress.org/plugins/woocommerce-pdf-invoices"
|
1848 |
|
1849 |
-
#~ msgid "WooCommerce PDF Invoices"
|
1850 |
-
#~ msgstr "WooCommerce PDF Rechnungen"
|
1851 |
-
|
1852 |
-
#~ msgid "Inactive"
|
1853 |
-
#~ msgstr "Inaktiv"
|
1854 |
-
|
1855 |
-
#~ msgid "Active"
|
1856 |
-
#~ msgstr "Aktiv"
|
1857 |
-
|
1858 |
-
#~ msgid "Cancelled"
|
1859 |
-
#~ msgstr "Storniert"
|
1860 |
-
|
1861 |
-
#~ msgid "SKU:"
|
1862 |
-
#~ msgstr "Artikelnummer:"
|
1863 |
-
|
1864 |
#~ msgid "Something went wrong."
|
1865 |
#~ msgstr "Leider ist ein Fehler aufgetreten."
|
1866 |
|
@@ -2086,14 +1769,81 @@ msgstr ""
|
|
2086 |
#~ msgid "Start all over on the first of January."
|
2087 |
#~ msgstr "Am ersten Januar alles neu starten."
|
2088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2089 |
#, fuzzy
|
2090 |
#~| msgid "Send customer invoice automatically to your supplier(s)."
|
2091 |
#~ msgid "Send customer invoices directly to suppliers and others."
|
2092 |
-
#~ msgstr "
|
2093 |
|
2094 |
#, fuzzy
|
|
|
2095 |
#~ msgid "Visible Columns"
|
2096 |
-
#~ msgstr "
|
2097 |
|
2098 |
#, fuzzy
|
2099 |
#~| msgid "Invoice to"
|
@@ -2106,27 +1856,36 @@ msgstr ""
|
|
2106 |
#~ msgstr "Rechnung:"
|
2107 |
|
2108 |
#, fuzzy
|
|
|
2109 |
#~ msgid "Completed Renewal Order"
|
2110 |
#~ msgstr "Bestellung fertiggestellt"
|
2111 |
|
2112 |
#, fuzzy
|
|
|
2113 |
#~ msgid "Customer Renewal Invoice"
|
2114 |
#~ msgstr "Kundenrechnung"
|
2115 |
|
2116 |
#, fuzzy
|
|
|
|
|
|
|
|
|
|
|
2117 |
#~ msgid ""
|
2118 |
#~ "Generate global invoices on Orders page by selecting multiple orders and "
|
2119 |
#~ "applying action or let customers generate periodically from My Account "
|
2120 |
#~ "page."
|
2121 |
#~ msgstr ""
|
2122 |
-
#~ "
|
2123 |
-
#~ "Bestellungen
|
2124 |
-
#~ "der Seite Mein Konto generieren
|
2125 |
-
#~ "werden nur bei der Verwendung der
|
|
|
2126 |
|
2127 |
#, fuzzy
|
|
|
2128 |
#~ msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
2129 |
-
#~ msgstr "
|
2130 |
|
2131 |
#, fuzzy
|
2132 |
#~| msgid "Version: %s"
|
@@ -2139,18 +1898,20 @@ msgstr ""
|
|
2139 |
#~ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
|
2140 |
#~ "\">wcpdfinvoices.com</a> to receive updates."
|
2141 |
#~ msgstr ""
|
2142 |
-
#~ "
|
2143 |
-
#~ "erhalten."
|
2144 |
|
2145 |
#, fuzzy
|
|
|
2146 |
#~ msgid ""
|
2147 |
#~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
|
2148 |
#~ "generate a global invoice from there account</div>"
|
2149 |
-
#~ msgstr "
|
|
|
2150 |
|
2151 |
#, fuzzy
|
|
|
2152 |
#~ msgid "These are the invoice number options."
|
2153 |
-
#~ msgstr "Optionen
|
2154 |
|
2155 |
#, fuzzy
|
2156 |
#~| msgid "Prefix"
|
@@ -2168,31 +1929,38 @@ msgstr ""
|
|
2168 |
#~ msgstr "Rechnung: %s"
|
2169 |
|
2170 |
#, fuzzy
|
|
|
2171 |
#~ msgid "Displayed in big colored bar directly after invoice total."
|
2172 |
-
#~ msgstr "
|
|
|
2173 |
|
2174 |
#, fuzzy
|
|
|
|
|
|
|
2175 |
#~ msgid ""
|
2176 |
#~ "Displayed below customer notes and above footer. Want to attach "
|
2177 |
#~ "additional pages to the invoice? Take a look at the <a href=\"%s"
|
2178 |
#~ "\">Premium</a> plugin."
|
2179 |
#~ msgstr ""
|
2180 |
-
#~ "Sichtbar unter den Kundennotizen und über
|
2181 |
-
#~ "
|
2182 |
-
#~ "
|
2183 |
|
2184 |
#, fuzzy
|
|
|
2185 |
#~ msgid "Attachment Options"
|
2186 |
#~ msgstr "Einstellungen zur Benutzeroberfläche"
|
2187 |
|
2188 |
#, fuzzy
|
|
|
2189 |
#~ msgid "Attach a PDF to the invoice."
|
2190 |
-
#~ msgstr "
|
2191 |
|
2192 |
#, fuzzy
|
2193 |
#~| msgid "Remove"
|
2194 |
#~ msgid "Remove logo"
|
2195 |
-
#~ msgstr "
|
2196 |
|
2197 |
#, fuzzy
|
2198 |
#~| msgid "Attach to Emails"
|
@@ -2200,6 +1968,7 @@ msgstr ""
|
|
2200 |
#~ msgstr "An E-Mails anfügen"
|
2201 |
|
2202 |
#, fuzzy
|
|
|
2203 |
#~ msgid "Processing Renewal Order"
|
2204 |
#~ msgstr "Bestellung in Bearbeitung"
|
2205 |
|
@@ -2219,22 +1988,25 @@ msgstr ""
|
|
2219 |
#~ msgstr "An E-Mails anfügen"
|
2220 |
|
2221 |
#, fuzzy
|
|
|
2222 |
#~ msgid "Enable download from account"
|
2223 |
-
#~ msgstr "
|
2224 |
|
2225 |
#, fuzzy
|
|
|
2226 |
#~ msgid "Get your account from your Email It In %suser account%s."
|
2227 |
-
#~ msgstr ""
|
2228 |
-
#~ "Holen Sie sich Ihr Konto von Ihrem%1$s <ein href=\"%2$s\">user Konto </a>."
|
2229 |
|
2230 |
#, fuzzy
|
|
|
|
|
|
|
2231 |
#~ msgid ""
|
2232 |
#~ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
2233 |
#~ "Egnyte and enter your account below."
|
2234 |
#~ msgstr ""
|
2235 |
-
#~ "
|
2236 |
-
#~ "
|
2237 |
-
#~ "Konto unten einzugeben."
|
2238 |
|
2239 |
#, fuzzy
|
2240 |
#~| msgid "<a href=\"%s\">Format</a> of invoice date and order date."
|
@@ -2242,16 +2014,18 @@ msgstr ""
|
|
2242 |
#~ msgstr "<a href=\"%s\">Format</a> von Rechnungsdatum und Bestelldatum."
|
2243 |
|
2244 |
#, fuzzy
|
|
|
2245 |
#~ msgid ""
|
2246 |
#~ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
2247 |
#~ "slashes aren't supported."
|
2248 |
#~ msgstr ""
|
2249 |
-
#~ "<b>
|
2250 |
#~ "unterstützt."
|
2251 |
|
2252 |
#, fuzzy
|
|
|
2253 |
#~ msgid "The header will be visible on every page. "
|
2254 |
-
#~ msgstr "
|
2255 |
|
2256 |
#, fuzzy
|
2257 |
#~| msgid "Invalid request"
|
@@ -2259,12 +2033,15 @@ msgstr ""
|
|
2259 |
#~ msgstr "Ungültige Anfrage"
|
2260 |
|
2261 |
#, fuzzy
|
|
|
|
|
|
|
2262 |
#~ msgid ""
|
2263 |
#~ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
2264 |
#~ "%s★★★★★%s rating. A huge thank you in advance!"
|
2265 |
#~ msgstr ""
|
2266 |
-
#~ "
|
2267 |
-
#~ "
|
2268 |
|
2269 |
#, fuzzy
|
2270 |
#~| msgid "View invoice"
|
@@ -2277,13 +2054,18 @@ msgstr ""
|
|
2277 |
#~ msgstr "Rechnung generieren"
|
2278 |
|
2279 |
#, fuzzy
|
|
|
|
|
2280 |
#~ msgid ""
|
2281 |
#~ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin "
|
2282 |
#~ "emails."
|
2283 |
-
#~ msgstr ""
|
2284 |
-
#~ "Anhängen an die <a href=\"%s\">WooCommerce Abonnement</a> E - Mails."
|
2285 |
|
2286 |
#, fuzzy
|
|
|
|
|
|
|
|
|
2287 |
#~ msgid ""
|
2288 |
#~ "We will never ask for donations, but to garantee future development, we "
|
2289 |
#~ "do need your support. Please show us your appreciation by leaving a <a "
|
@@ -2292,11 +2074,12 @@ msgstr ""
|
|
2292 |
#~ "\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
2293 |
#~ msgstr ""
|
2294 |
#~ "Wir werden nie um Spenden bitten, aber um die zukünftige Entwicklung zu "
|
2295 |
-
#~ "gewährleisten, brauchen wir
|
2296 |
-
#~ "
|
2297 |
-
#~ "
|
2298 |
|
2299 |
#, fuzzy
|
|
|
2300 |
#~ msgid "The footer will be visible on every page. "
|
2301 |
#~ msgstr "Die Fußzeile wird auf jeder Seite sichtbar sein."
|
2302 |
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
+
"Last-Translator: Kolja Spyra <mail@kolja-spyra.de>\n"
|
8 |
+
"Language-Team: Kolja Spyra <mail@kolja-spyra.de>\n"
|
9 |
+
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Generator: Poedit 2.0.4\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
+
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
17 |
+
"X-Poedit-WPHeader: bootstrap.php\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
20 |
+
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
21 |
+
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
+
#: includes/abstracts/abstract-document.php:150
|
26 |
+
#: includes/templates/invoice/simple/minimal/body.php:36
|
27 |
+
msgid "Paid"
|
28 |
+
msgstr "Bezahlt"
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
+
#: includes/abstracts/abstract-invoice.php:412
|
31 |
+
#: includes/templates/invoice/simple/micro/body.php:53
|
32 |
+
msgid "Description"
|
33 |
+
msgstr "Beschreibung"
|
|
|
34 |
|
35 |
+
#: includes/abstracts/abstract-invoice.php:413
|
36 |
+
#: includes/templates/invoice/simple/micro/body.php:62
|
37 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:79
|
38 |
+
msgid "Qty"
|
39 |
+
msgstr "Anz"
|
40 |
|
41 |
+
#: includes/abstracts/abstract-invoice.php:414
|
42 |
+
#: includes/templates/invoice/simple/micro/body.php:71
|
43 |
+
#: includes/templates/invoice/simple/micro/body.php:276
|
44 |
+
msgid "Total"
|
45 |
+
msgstr "Gesamt"
|
46 |
|
47 |
+
#: includes/abstracts/abstract-invoice.php:504
|
48 |
+
msgid "Subtotal:"
|
49 |
+
msgstr "Zwischensumme:"
|
|
|
|
|
50 |
|
51 |
+
#: includes/abstracts/abstract-invoice.php:519
|
52 |
+
msgid "Discount:"
|
53 |
+
msgstr "Rabatt:"
|
|
|
|
|
54 |
|
55 |
+
#: includes/abstracts/abstract-invoice.php:534
|
56 |
+
msgid "Shipping:"
|
57 |
+
msgstr "Lieferung:"
|
58 |
|
59 |
+
#: includes/abstracts/abstract-invoice.php:607
|
60 |
+
msgid "Total:"
|
61 |
+
msgstr "Gesamt:"
|
|
|
|
|
|
|
|
|
62 |
|
63 |
+
#: includes/abstracts/abstract-invoice.php:676
|
64 |
+
#, php-format
|
65 |
+
msgid "VAT Number: %s"
|
66 |
+
msgstr "Steuernummer: %s"
|
|
|
|
|
67 |
|
68 |
+
#: includes/abstracts/abstract-invoice.php:694
|
69 |
+
#, php-format
|
70 |
+
msgid "Purchase Order Number: %s"
|
71 |
+
msgstr "Bestellnummer: %s"
|
|
|
72 |
|
73 |
+
#: includes/abstracts/abstract-invoice.php:898
|
74 |
+
#, php-format
|
75 |
+
msgid "%s of %s"
|
76 |
+
msgstr "%s von %s"
|
77 |
|
78 |
+
#: includes/abstracts/abstract-settings.php:141
|
79 |
+
#: includes/admin/settings/class-general.php:24
|
80 |
+
msgid "General"
|
81 |
+
msgstr "Allgemein"
|
|
|
82 |
|
83 |
+
#: includes/abstracts/abstract-settings.php:145
|
84 |
+
#: includes/admin/settings/class-template.php:24
|
85 |
+
#: includes/admin/settings/class-template.php:100
|
86 |
+
msgid "Template"
|
87 |
+
msgstr "Vorlage"
|
88 |
|
89 |
+
#: includes/abstracts/abstract-settings.php:152
|
90 |
+
#: includes/admin/settings/class-debug.php:24
|
91 |
+
#: includes/woocommerce-pdf-invoices.php:767
|
92 |
+
msgid "Debug"
|
93 |
+
msgstr "Fehlersuche"
|
94 |
|
95 |
+
#: includes/abstracts/abstract-settings.php:178
|
96 |
+
msgid "Invoices"
|
97 |
+
msgstr "Rechnungen"
|
98 |
|
99 |
+
#: includes/abstracts/abstract-settings.php:259
|
100 |
+
#, php-format
|
101 |
+
msgid ""
|
102 |
+
"If you like <strong>WooCommerce PDF Invoices</strong> please leave us a <a "
|
103 |
+
"href=\"%s\">★★★★★</a> rating. A huge thank you in advance!"
|
104 |
+
msgstr ""
|
105 |
+
"Über eine <a href=\"%s\">★★★★★</a> Bewertung für <strong>WooCommerce PDF-"
|
106 |
+
"Rechnungen</strong> würden wir uns freuen. Vielen Dank im Voraus!"
|
107 |
|
108 |
+
#: includes/abstracts/abstract-settings.php:268
|
109 |
+
#, php-format
|
110 |
+
msgid "Version %s"
|
111 |
+
msgstr "Version %s"
|
112 |
|
113 |
+
#: includes/abstracts/abstract-settings.php:381
|
114 |
+
msgid "Choose…"
|
115 |
+
msgstr "Auswählen…"
|
116 |
|
117 |
+
#: includes/abstracts/abstract-settings.php:382
|
118 |
+
msgid "Column"
|
119 |
+
msgstr "Spalte"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
|
121 |
+
#: includes/abstracts/abstract-settings.php:391
|
122 |
+
msgid "Select all"
|
123 |
+
msgstr "Alle auswählen"
|
124 |
|
125 |
+
#: includes/abstracts/abstract-settings.php:392
|
126 |
+
msgid "Select none"
|
127 |
+
msgstr "Nichts auswählen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
+
#: includes/admin/settings/class-debug.php:40
|
130 |
+
#: includes/admin/settings/class-template.php:42
|
131 |
+
msgid "General Options"
|
132 |
+
msgstr "Allgemein"
|
133 |
|
134 |
+
#: includes/admin/settings/class-debug.php:44
|
135 |
+
msgid "Plugin Configuration"
|
136 |
+
msgstr "Erweiterungskonfiguration"
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
+
#: includes/admin/settings/class-debug.php:68
|
139 |
+
msgid "Enable mPDF debugging"
|
140 |
+
msgstr "Fehlersuche für mPDF aktivieren"
|
|
|
141 |
|
142 |
+
#: includes/admin/settings/class-debug.php:69
|
143 |
+
msgid "Enable if you aren't able to create an invoice."
|
144 |
+
msgstr "Nur aktivieren, wenn keine PDFs automatisch erstellt werden."
|
|
|
|
|
|
|
145 |
|
146 |
+
#: includes/admin/settings/class-general.php:40
|
147 |
+
msgid "Email Options"
|
148 |
+
msgstr "E-Mails"
|
|
|
|
|
149 |
|
150 |
+
#: includes/admin/settings/class-general.php:41
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
+
"The PDF invoice will be generated when WooCommerce sends the corresponding "
|
154 |
+
"email. The email should be <a href=\"%1$s\">enabled</a> in order to "
|
155 |
+
"automatically generate the PDF invoice. Want to attach PDF documents to many "
|
156 |
+
"more email types? Take a look at %2$s."
|
157 |
msgstr ""
|
158 |
+
"Eine PDF-Rechnung wird generiert, wenn WooCommerce die entsprechende E-Mail "
|
159 |
+
"versendet. Die E-Mail muss <a href=\"%1$s\">aktiviert</a> sein, um die PDF-"
|
160 |
+
"Rechnung automatisch zu generieren. Um PDF-Dokumente an weitere E-Mail-Typen "
|
161 |
+
"anhängen wird %2$s benötigt."
|
162 |
|
163 |
+
#: includes/admin/settings/class-general.php:44
|
164 |
+
msgid "Download Options"
|
165 |
+
msgstr "Download-Optionen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
+
#: includes/admin/settings/class-general.php:47
|
168 |
+
msgid "Cloud Storage Options"
|
169 |
+
msgstr "Cloud-Speicheroptionen"
|
170 |
|
171 |
+
#: includes/admin/settings/class-general.php:48
|
172 |
+
#, php-format
|
173 |
msgid ""
|
174 |
+
"Sign-up at <a href=\"%1$s\">Email It In</a> to send invoices to your "
|
175 |
+
"Dropbox, OneDrive, Google Drive or Egnyte and enter your account below."
|
|
|
176 |
msgstr ""
|
177 |
+
"Bei <a href=\"%1$s\">Email It In</a> an, um Rechnungen an Dropbox, OneDrive, "
|
178 |
+
"Google Drive oder Egnyte zu schicken."
|
|
|
179 |
|
180 |
+
#: includes/admin/settings/class-general.php:51
|
181 |
+
msgid "Interface Options"
|
182 |
+
msgstr "Einstellungen zur Benutzeroberfläche"
|
183 |
+
|
184 |
+
#: includes/admin/settings/class-general.php:68
|
185 |
msgid "Attach to Emails"
|
186 |
msgstr "An E-Mails anfügen"
|
187 |
|
188 |
+
#: includes/admin/settings/class-general.php:76
|
189 |
+
msgid "New order"
|
190 |
+
msgstr "Neue Bestellung"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
#: includes/admin/settings/class-general.php:81
|
193 |
+
msgid "Order on-hold"
|
194 |
+
msgstr "Bestellung wartend"
|
|
|
|
|
195 |
|
196 |
+
#: includes/admin/settings/class-general.php:86
|
197 |
+
msgid "Processing order"
|
198 |
+
msgstr "Bestellung in Bearbeitung"
|
|
|
|
|
|
|
|
|
199 |
|
200 |
+
#: includes/admin/settings/class-general.php:91
|
201 |
+
msgid "Completed order"
|
202 |
+
msgstr "Bestellung fertiggestellt"
|
203 |
|
204 |
+
#: includes/admin/settings/class-general.php:96
|
205 |
+
msgid "Customer invoice"
|
206 |
+
msgstr "Kundenrechnung"
|
|
|
207 |
|
208 |
+
#: includes/admin/settings/class-general.php:110
|
209 |
+
msgid "Disable for free products"
|
210 |
+
msgstr "Für kostenlose Produkte deaktivieren"
|
211 |
|
212 |
+
#: includes/admin/settings/class-general.php:112
|
213 |
msgid ""
|
214 |
+
"Skip automatic PDF invoice generation for orders containing only free "
|
215 |
+
"products."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
msgstr ""
|
217 |
+
"Überspringt die automatische PDF-Rechnungserstellung für Bestellungen, die "
|
218 |
+
"nur kostenlose Produkte enthalten."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
|
220 |
+
#: includes/admin/settings/class-general.php:120
|
221 |
+
msgid "View PDF"
|
222 |
+
msgstr "PDF anzeigen"
|
223 |
|
224 |
+
#: includes/admin/settings/class-general.php:127
|
225 |
+
msgid "Download"
|
226 |
+
msgstr "Download"
|
227 |
|
228 |
+
#: includes/admin/settings/class-general.php:128
|
229 |
+
msgid "Open in new browser tab/window"
|
230 |
+
msgstr "In einem neuen Browser Tab / Fenster öffnen"
|
231 |
|
232 |
+
#: includes/admin/settings/class-general.php:140
|
233 |
+
msgid "Enable download from my account"
|
234 |
+
msgstr "Herunterladen über „Mein Konto“-Seite aktivieren"
|
235 |
|
236 |
+
#: includes/admin/settings/class-general.php:142
|
237 |
+
msgid ""
|
238 |
+
"By default PDF is only downloadable when order has been paid, so order "
|
239 |
+
"status should be Processing or Completed."
|
240 |
+
msgstr ""
|
241 |
+
"Standardmäßig ist die PDF-Rechung nach dem Bezahlen herunterladbar, sodass "
|
242 |
+
"der Bestellstatus entweder \"In Bearbeitung\" oder \"Fertiggestellt\" ist."
|
243 |
|
244 |
+
#: includes/admin/settings/class-general.php:155
|
245 |
+
msgid "Enable Email It In"
|
246 |
+
msgstr "Email It In aktivieren"
|
247 |
|
248 |
+
#: includes/admin/settings/class-general.php:162
|
249 |
+
msgid "Email It In account"
|
250 |
+
msgstr "E-Mail It In Benutzerkonto"
|
251 |
|
252 |
+
#: includes/admin/settings/class-general.php:167
|
253 |
#, php-format
|
254 |
+
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
255 |
+
msgstr "Neues <a href=\"%2$s\">%1$s</a> Benutzerkonto erstellen."
|
256 |
|
257 |
+
#: includes/admin/settings/class-general.php:178
|
258 |
+
msgid "Enable Invoice Number column"
|
259 |
+
msgstr "Die Spalte Rechnungsnummer aktivieren"
|
260 |
|
261 |
+
#: includes/admin/settings/class-general.php:179
|
262 |
+
msgid "Display invoice numbers on Shop Order page."
|
263 |
+
msgstr "Rechnungsnummer auf der Bestellseite anzeigen."
|
264 |
|
265 |
+
#: includes/admin/settings/class-template.php:43
|
266 |
+
#, php-format
|
267 |
+
msgid ""
|
268 |
+
"Want to customize the template? The <a href=\"%s\">FAQ</a> will give you a "
|
269 |
+
"brief description."
|
270 |
+
msgstr ""
|
271 |
+
"Zum individualisieren der Vorlage gibt es im <a href=\"%s\">FAQ-Bereich</a> "
|
272 |
+
"eine kurze Beschreibung, wie dies funktioniert."
|
273 |
|
274 |
+
#: includes/admin/settings/class-template.php:46
|
275 |
+
msgid "Invoice Number Options"
|
276 |
+
msgstr "Rechnungsnummer Optionen"
|
277 |
|
278 |
+
#: includes/admin/settings/class-template.php:49
|
279 |
+
msgid "Packing Slips Options"
|
280 |
+
msgstr "Lieferschein Optionen"
|
281 |
|
282 |
+
#: includes/admin/settings/class-template.php:50
|
283 |
+
msgid ""
|
284 |
+
"Packing slips are <strong>only available</strong> when using minimal "
|
285 |
+
"template."
|
286 |
+
msgstr ""
|
287 |
+
"Lieferscheine sind nur verfügbar, wenn die <strong>minimal</strong>-Vorlage "
|
288 |
+
"verwendet wird."
|
289 |
|
290 |
+
#: includes/admin/settings/class-template.php:53
|
291 |
+
msgid "Header Options"
|
292 |
+
msgstr "Kopfzeilen Optionen"
|
|
|
293 |
|
294 |
+
#: includes/admin/settings/class-template.php:54
|
295 |
+
msgid "The header will be visible on every page."
|
296 |
+
msgstr "Die Kopfzeile wird auf jeder Seite sichtbar sein."
|
297 |
|
298 |
+
#: includes/admin/settings/class-template.php:57
|
299 |
+
msgid "Body Options"
|
300 |
+
msgstr "Nachrichtenkörper Optionen"
|
301 |
|
302 |
+
#: includes/admin/settings/class-template.php:58
|
303 |
+
msgid "Configuration options for the body of the template. ."
|
304 |
+
msgstr "Konfigurationsoptionen für den Nachrichtenkörper der Vorlage."
|
|
|
|
|
305 |
|
306 |
+
#: includes/admin/settings/class-template.php:61
|
307 |
+
msgid "Footer Options"
|
308 |
+
msgstr "Fußzeilen Optionen"
|
309 |
|
310 |
+
#: includes/admin/settings/class-template.php:62
|
311 |
+
msgid "The footer will be visible on every page."
|
312 |
+
msgstr "Die Fußzeile wird auf jeder Seite sichtbar sein."
|
313 |
|
314 |
+
#: includes/admin/settings/class-template.php:65
|
315 |
+
msgid "Table Content"
|
316 |
+
msgstr "Tabellen Inhalte"
|
|
|
|
|
317 |
|
318 |
+
#: includes/admin/settings/class-template.php:66
|
319 |
+
msgid "Enable or disable the columns."
|
320 |
+
msgstr "Aktivieren oder deaktivieren dieser Spalten."
|
321 |
|
322 |
+
#: includes/admin/settings/class-template.php:105
|
323 |
+
#, php-format
|
324 |
+
msgid "Create a custom template by copying it from %1$s to %2$s."
|
325 |
+
msgstr ""
|
326 |
+
"Zum erstellen einer individualisierten Vorlage, die Dateien von %1$s nach "
|
327 |
+
"%2$s kopieren."
|
328 |
|
329 |
+
#: includes/admin/settings/class-template.php:107
|
330 |
#, php-format
|
331 |
msgid ""
|
332 |
+
"<strong>Note:</strong> The %1$s template will probably no longer be "
|
333 |
+
"supported in future versions, consider using the %2$s template."
|
334 |
msgstr ""
|
335 |
+
"<strong>Hinweis:</strong> Die %1$s-Vorlage wird in zukünftigen Versionen "
|
336 |
+
"wahrscheinlich nicht mehr unterstützt, wir empfehlen die Verwendung der %2$s-"
|
337 |
+
"Vorlage."
|
338 |
|
339 |
+
#: includes/admin/settings/class-template.php:115
|
340 |
+
msgid "Color theme"
|
341 |
+
msgstr "Farbthema"
|
|
|
342 |
|
343 |
+
#: includes/admin/settings/class-template.php:131
|
344 |
+
msgid "Display theme text in black color"
|
345 |
+
msgstr "Theme-Text in Schwarz anzeigen"
|
|
|
346 |
|
347 |
+
#: includes/admin/settings/class-template.php:133
|
348 |
+
msgid ""
|
349 |
+
"Enable if you've set the color theme to white or some other light color."
|
350 |
+
msgstr "Aktivieren, sofern sie die Farbe hell oder weiß gewählt haben."
|
351 |
|
352 |
+
#: includes/admin/settings/class-template.php:141
|
353 |
+
msgid "Date format"
|
354 |
+
msgstr "Datumsformat"
|
355 |
|
356 |
+
#: includes/admin/settings/class-template.php:146
|
357 |
+
#, php-format
|
358 |
+
msgid "<a href=\"%s\">Format</a> of invoice date and order date."
|
359 |
+
msgstr "<a href=\"%s\">Format</a> von Rechnungsdatum und Bestelldatum."
|
360 |
|
361 |
+
#: includes/admin/settings/class-template.php:158
|
362 |
+
msgid "Display prices including tax"
|
363 |
+
msgstr "Preise inklusive Steuern anzeigen"
|
364 |
|
365 |
+
#: includes/admin/settings/class-template.php:160
|
366 |
+
msgid ""
|
367 |
+
"Line item totals will be including tax. <br/><b>Note</b>: Subtotal will "
|
368 |
+
"still be excluding tax, so disable it within the visible columns section."
|
369 |
msgstr ""
|
370 |
+
"Einzelpostensummen wird inklusive Steuern sein. <br/> <b>Hinweis:</b> "
|
371 |
+
"Zwischensumme wird noch ohne Steuern sein, deaktivieren sie die Spalten im "
|
372 |
+
"sichtbaren Bereich."
|
373 |
|
374 |
+
#: includes/admin/settings/class-template.php:173
|
375 |
+
msgid "Shipping taxable"
|
376 |
+
msgstr "Versand besteuerbar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
+
#: includes/admin/settings/class-template.php:175
|
379 |
+
msgid "Enable to display subtotal including shipping."
|
380 |
+
msgstr "Aktivieren, um Zwischensumme einschließlich Versand anzuzeigen."
|
|
|
381 |
|
382 |
+
#: includes/admin/settings/class-template.php:188
|
383 |
+
msgid "Mark invoice as paid"
|
384 |
+
msgstr "Rechnung als bezahlt markieren"
|
385 |
|
386 |
+
#: includes/admin/settings/class-template.php:190
|
387 |
+
msgid "Invoice will be watermarked when order has been paid."
|
388 |
+
msgstr ""
|
389 |
+
"Die Rechnung wird mit einem Wasserzeichen versehen werden, wenn die "
|
390 |
+
"Bestellung bezahlt wurde."
|
391 |
|
392 |
+
#: includes/admin/settings/class-template.php:203
|
393 |
+
msgid "Disable Packing Slips"
|
394 |
+
msgstr "Lieferscheine deaktivieren"
|
|
|
395 |
|
396 |
+
#: includes/admin/settings/class-template.php:210
|
397 |
+
msgid "Company logo"
|
398 |
+
msgstr "Firmenlogo"
|
|
|
|
|
|
|
|
|
|
|
399 |
|
400 |
+
#: includes/admin/settings/class-template.php:215
|
401 |
#, php-format
|
402 |
msgid ""
|
403 |
+
"Use the <a href=\"%1$s\">Media Library</a> to <a href=\"%2$s\">upload</a> or "
|
404 |
+
"choose a .jpg, .jpeg, .gif or .png file and copy and paste the <a href=\"%3$s"
|
405 |
+
"\" target=\"_blank\">File URL</a>."
|
406 |
msgstr ""
|
407 |
+
"Die <a href=\"%1$s\">Mediathek</a> zum <a href=\"%2$s\">hochladen</a> "
|
408 |
+
"verwenden oder die <a href=\"%3$s\" target=\"_blank\">Datei-URL</a> einer ."
|
409 |
+
"jpg, .jpeg, .gif oder .png Datei kopieren."
|
410 |
|
411 |
+
#: includes/admin/settings/class-template.php:221
|
412 |
+
msgid "Company name"
|
413 |
+
msgstr "Firmenname"
|
414 |
|
415 |
+
#: includes/admin/settings/class-template.php:232
|
416 |
+
msgid "Company address"
|
417 |
+
msgstr "Firmenanschrift"
|
418 |
|
419 |
+
#: includes/admin/settings/class-template.php:237
|
420 |
+
#: includes/admin/settings/class-template.php:248
|
421 |
+
#: includes/admin/settings/class-template.php:303
|
422 |
+
#: includes/admin/settings/class-template.php:342
|
423 |
+
#: includes/admin/settings/class-template.php:354
|
424 |
+
#: includes/admin/settings/class-template.php:365
|
425 |
+
#, php-format
|
426 |
+
msgid "Allowed HTML tags: %s."
|
427 |
+
msgstr "Erlaubte HTML-Tags: %s."
|
428 |
|
429 |
+
#: includes/admin/settings/class-template.php:243
|
430 |
+
msgid "Company details"
|
431 |
+
msgstr "Firmendetails"
|
|
|
|
|
|
|
|
|
432 |
|
433 |
+
#: includes/admin/settings/class-template.php:254
|
434 |
+
msgid "Company phone"
|
435 |
+
msgstr "Telefonnummer des Unternehmens"
|
|
|
|
|
436 |
|
437 |
+
#: includes/admin/settings/class-template.php:265
|
438 |
+
msgid "Company email address"
|
439 |
+
msgstr "E-Mail-Adresse des Unternehmens"
|
|
|
440 |
|
441 |
+
#: includes/admin/settings/class-template.php:276
|
442 |
+
msgid "Company VAT ID"
|
443 |
+
msgstr "USt-IdNr. des Unternehmens"
|
|
|
444 |
|
445 |
+
#: includes/admin/settings/class-template.php:287
|
446 |
+
msgid "Title"
|
447 |
+
msgstr "Titel"
|
448 |
|
449 |
+
#: includes/admin/settings/class-template.php:292
|
450 |
+
msgid "Change the name of the invoice."
|
451 |
+
msgstr "Bezeichnung der Rechnung."
|
452 |
|
453 |
+
#: includes/admin/settings/class-template.php:293
|
454 |
+
#: includes/woocommerce-pdf-invoices.php:848
|
455 |
+
msgid "Invoice"
|
456 |
+
msgstr "Rechnung"
|
457 |
|
458 |
+
#: includes/admin/settings/class-template.php:298
|
459 |
+
msgid "Thank you text"
|
460 |
+
msgstr "“Danke für die Bestellung”-Text"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
|
462 |
+
#: includes/admin/settings/class-template.php:304
|
463 |
+
msgid "Visible in big colored bar directly after invoice total."
|
|
|
|
|
464 |
msgstr ""
|
465 |
+
"Sichtbar in einem großem farbigen Balken, direkt nach der Rechnungssumme."
|
|
|
466 |
|
467 |
+
#: includes/admin/settings/class-template.php:315
|
468 |
+
msgid "Show customers shipping address"
|
469 |
+
msgstr "Lieferadresse des Kunden anzeigen"
|
470 |
|
471 |
+
#: includes/admin/settings/class-template.php:317
|
472 |
msgid ""
|
473 |
+
"Customers shipping address won't be visible when order has only virtual "
|
474 |
+
"products."
|
|
|
|
|
475 |
msgstr ""
|
476 |
+
"Lieferadressen werden nur sichtbar sein, wenn die Bestellung keine "
|
477 |
+
"virtuellen Produkte enthält."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
|
479 |
+
#: includes/admin/settings/class-template.php:330
|
480 |
+
msgid "Show customer notes"
|
481 |
+
msgstr "Kundennotizen anzeigen"
|
|
|
|
|
|
|
|
|
|
|
482 |
|
483 |
+
#: includes/admin/settings/class-template.php:337
|
484 |
+
msgid "Terms & conditions, policies etc."
|
485 |
+
msgstr "AGB‚ Richtlinien etc."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
|
487 |
+
#: includes/admin/settings/class-template.php:343
|
488 |
+
#, php-format
|
489 |
+
msgid ""
|
490 |
+
"Visible below customer notes and above footer. Want to attach additional "
|
491 |
+
"pages to the invoice? Take a look at <a href=\"%1$s\">%2$s</a> plugin."
|
492 |
+
msgstr ""
|
493 |
+
"Sichtbar unter den Kundennotizen und über der Fußzeile. Um zusätzliche "
|
494 |
+
"Seiten zur Rechnung anzuhängen wird die <a href=\"%1$s\">%2$s </a> "
|
495 |
+
"Erweiterung benötigt."
|
496 |
|
497 |
+
#: includes/admin/settings/class-template.php:349
|
498 |
+
msgid "Left footer column."
|
499 |
+
msgstr "Linke Fußzeilen Spalte."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
+
#: includes/admin/settings/class-template.php:360
|
502 |
+
msgid "Right footer column."
|
503 |
+
msgstr "Rechte Fußzeilen Spalte."
|
|
|
|
|
|
|
504 |
|
505 |
+
#: includes/admin/settings/class-template.php:371
|
506 |
+
msgid "Type"
|
507 |
+
msgstr "Art"
|
|
|
|
|
|
|
|
|
|
|
508 |
|
509 |
+
#: includes/admin/settings/class-template.php:378
|
510 |
+
msgid "WooCommerce order number"
|
511 |
+
msgstr "WooCommerce Bestellnummer"
|
512 |
|
513 |
+
#: includes/admin/settings/class-template.php:379
|
514 |
+
msgid "Sequential number"
|
515 |
+
msgstr "Aufeinanderfolgende Nummerierung"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
|
517 |
+
#: includes/admin/settings/class-template.php:391
|
518 |
+
msgid "Reset invoice counter"
|
519 |
+
msgstr "Rechnungs-Zähler zurücksetzen"
|
520 |
|
521 |
+
#: includes/admin/settings/class-template.php:399
|
522 |
+
msgid "Next"
|
523 |
+
msgstr "Weiter"
|
|
|
524 |
|
525 |
+
#: includes/admin/settings/class-template.php:404
|
526 |
+
msgid "Next invoice number when resetting counter."
|
527 |
+
msgstr "Die nächste Rechnungsnummer beim Zurücksetzen des Zählers."
|
528 |
|
529 |
+
#: includes/admin/settings/class-template.php:406
|
530 |
msgid ""
|
531 |
+
"<b>Note:</b> Only available for Sequential numbering. All PDF invoices with "
|
532 |
+
"invoice number greater then next invoice number will be deleted!"
|
533 |
msgstr ""
|
534 |
+
"<b>Hinweis:</b> Nur für die Sequentialnummerierung. Alle PDF-Rechnungen mit "
|
535 |
+
"der Rechnungsnummer, die größer ist, als die nächste Rechnungsnummer werden "
|
536 |
+
"gelöscht!"
|
537 |
|
538 |
+
#: includes/admin/settings/class-template.php:416
|
539 |
+
msgid "Digits"
|
540 |
+
msgstr "Ziffern"
|
541 |
|
542 |
+
#: includes/admin/settings/class-template.php:432
|
543 |
+
msgid "Prefix"
|
544 |
+
msgstr "Präfix"
|
545 |
|
546 |
+
#: includes/admin/settings/class-template.php:443
|
547 |
+
msgid "Suffix"
|
548 |
+
msgstr "Suffix"
|
549 |
+
|
550 |
+
#: includes/admin/settings/class-template.php:454
|
551 |
+
msgid "Format"
|
552 |
+
msgstr "Format"
|
553 |
|
554 |
+
#: includes/admin/settings/class-template.php:459
|
555 |
+
#, php-format
|
556 |
+
msgid "Available placeholders: %s."
|
557 |
+
msgstr "Verfügbare Platzhalter: %s."
|
558 |
|
559 |
+
#: includes/admin/settings/class-template.php:461
|
560 |
+
#, php-format
|
561 |
+
msgid "<b>Note:</b> %s is required and slashes aren't supported."
|
562 |
+
msgstr ""
|
563 |
+
"<b>Hinweis:</b> %s sind erforderlich und Schrägstriche werden nicht "
|
564 |
+
"unterstützt."
|
565 |
|
566 |
+
#: includes/admin/settings/class-template.php:473
|
567 |
+
msgid "Reset yearly"
|
568 |
+
msgstr "Jährlich zurücksetzen"
|
|
|
569 |
|
570 |
+
#: includes/admin/settings/class-template.php:475
|
571 |
+
msgid "Automatically reset invoice numbers on new year's day."
|
572 |
+
msgstr "Rechnungszählung am Neujahrstag automatisch zurücksetzen."
|
573 |
|
574 |
+
#: includes/admin/settings/class-template.php:477
|
575 |
msgid ""
|
576 |
+
"<b>Note</b>: You will have to generate all invoices again when changing "
|
577 |
+
"option."
|
578 |
msgstr ""
|
579 |
+
"<b>Hinweis</b>: Alle Rechnungen müssen beim Wechsel dieser Einstellung "
|
580 |
+
"erneut generiert werden."
|
|
|
581 |
|
582 |
+
#: includes/admin/settings/class-template.php:490
|
583 |
+
#: includes/templates/invoice/simple/micro/body.php:57
|
584 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:71
|
585 |
+
msgid "SKU"
|
586 |
+
msgstr "Artikelnummer"
|
|
|
|
|
587 |
|
588 |
+
#: includes/admin/settings/class-template.php:502
|
589 |
+
#: includes/templates/invoice/simple/micro/body.php:224
|
590 |
+
msgid "Subtotal"
|
591 |
+
msgstr "Zwischensumme"
|
592 |
|
593 |
+
#: includes/admin/settings/class-template.php:514
|
594 |
+
msgid "Tax (item)"
|
595 |
+
msgstr "Mehrwertsteuer (der Bestellposition)"
|
|
|
596 |
|
597 |
+
#: includes/admin/settings/class-template.php:526
|
598 |
+
msgid "Tax (total)"
|
599 |
+
msgstr "Steuer (Gesamt)"
|
|
|
|
|
|
|
600 |
|
601 |
+
#: includes/admin/settings/class-template.php:538
|
602 |
+
#: includes/templates/invoice/simple/micro/body.php:208
|
603 |
+
msgid "Discount"
|
604 |
+
msgstr "Rabatt"
|
|
|
|
|
605 |
|
606 |
+
#: includes/admin/settings/class-template.php:550
|
607 |
+
#: includes/templates/invoice/simple/micro/body.php:216
|
608 |
+
#: includes/templates/invoice/simple/micro/body.php:232
|
609 |
+
msgid "Shipping"
|
610 |
+
msgstr "Versand"
|
|
|
611 |
|
612 |
+
#: includes/admin/settings/class-template.php:597
|
613 |
+
msgid ""
|
614 |
+
"Company logo not found. Upload the image to the Media Library and try again."
|
615 |
+
msgstr ""
|
616 |
+
"Logo nicht gefunden. Am besten das Bild in die Mediathek hochladen und es "
|
617 |
+
"erneut versuchen."
|
618 |
|
619 |
+
#: includes/admin/views/html-activation-notice.php:17
|
|
|
|
|
|
|
|
|
620 |
#, php-format
|
621 |
+
msgid ""
|
622 |
+
"The settings of WooCommerce PDF Invoices are available <a href=\"%1$s\">on "
|
623 |
+
"this page</a>."
|
624 |
+
msgstr ""
|
625 |
+
"Die Einstellungen für WooCommerce PDF-Rechnungen sind auf <a href=\"%1$s"
|
626 |
+
"\">dieser Seite verfügbar</a>."
|
627 |
|
628 |
+
#: includes/admin/views/html-deactivation-notice.php:19
|
|
|
|
|
|
|
|
|
629 |
#, php-format
|
630 |
+
msgid ""
|
631 |
+
"Before we deactivate WooCommerce PDF Invoices, would you care to <a href="
|
632 |
+
"\"%1$s\" target=\"_blank\">let us know why</a> so we can improve it for you? "
|
633 |
+
"<a href=\"%2$s\">No, deactivate now</a>."
|
634 |
+
msgstr ""
|
635 |
+
"Bevor wir WooCommerce PDF-Rechnungen deaktivieren, würden wir gerne um ein "
|
636 |
+
"<a href=\"%1$s\" target=\"_blank\" >Feedback</a> bitten, damit wir die "
|
637 |
+
"Erweiterung verbessern können. <a href=\"%2$s\">Ohne Feedback deaktivieren.</"
|
638 |
+
"a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
|
640 |
+
#: includes/admin/views/html-rate-notice.php:26
|
641 |
#, php-format
|
642 |
+
msgid ""
|
643 |
+
"Hi%1$s! You're using %2$s for some time now and we would appreciate your "
|
644 |
+
"%3$s rating. It will support future development big-time."
|
645 |
+
msgstr ""
|
646 |
+
"Hi %1$s! %2$s wird schon eine Weile verwendet und scheint zu gefallen. Wir "
|
647 |
+
"würden uns über eine %3$s-Bewertung sehr freuen. Dies wird die zukünftige "
|
648 |
+
"Entwicklung unterstützen."
|
649 |
|
650 |
+
#: includes/admin/views/html-rate-notice.php:33
|
651 |
+
msgid "Dismiss this notice."
|
652 |
+
msgstr "Diesen Hinweis ausblenden."
|
|
|
653 |
|
654 |
+
#: includes/admin/views/html-sidebar.php:2
|
655 |
+
msgid "WooCommerce PDF Invoices Premium"
|
656 |
+
msgstr "WooCommerce PDF Rechnungen Premium"
|
|
|
657 |
|
658 |
+
#: includes/admin/views/html-sidebar.php:4
|
659 |
+
msgid ""
|
660 |
+
"This plugin offers a premium version which comes with the following features:"
|
661 |
+
msgstr ""
|
662 |
+
"Diese Erweiterung bietet eine Premium-Version, die Ihnen die folgenden "
|
663 |
+
"Funktionen bietet:"
|
664 |
|
665 |
+
#: includes/admin/views/html-sidebar.php:5
|
666 |
+
msgid ""
|
667 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
668 |
+
msgstr ""
|
669 |
+
"Hängt PDF-Rechnungen an viele weitere E-Mail-Typen an, einschließlich "
|
670 |
+
"Erweiterungen von Drittanbietern."
|
671 |
|
672 |
+
#: includes/admin/views/html-sidebar.php:6
|
673 |
+
msgid ""
|
674 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
675 |
+
"order."
|
676 |
+
msgstr ""
|
677 |
+
"Gutschriften und stornierte PDF-Rechnungen bei der Rückerstattung oder "
|
678 |
+
"Stornierung von Bestellungen senden."
|
679 |
|
680 |
+
#: includes/admin/views/html-sidebar.php:7
|
681 |
+
msgid ""
|
682 |
+
"Fully customize the table content by modifying line item columns and total "
|
683 |
+
"rows."
|
684 |
+
msgstr ""
|
685 |
+
"Tabelleninhalt vollständig anpassen, indem die Spalten von Einzelposten und "
|
686 |
+
"Summenzeilen modifiziert werden."
|
687 |
|
688 |
+
#: includes/admin/views/html-sidebar.php:8
|
689 |
+
msgid ""
|
690 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
691 |
+
"period of time."
|
692 |
+
msgstr ""
|
693 |
+
"Sendet automatisch PDF-Rechnungen als Erinnerung, die innerhalb eines "
|
694 |
+
"bestimmten Zeitraums konfigurierbar ist."
|
695 |
|
696 |
+
#: includes/admin/views/html-sidebar.php:9
|
697 |
+
msgid ""
|
698 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
699 |
+
msgstr ""
|
700 |
+
"Die Käufer entscheiden lassen, ob sie eine PDF-Rechnung an der Kasse "
|
701 |
+
"erhalten möchten."
|
702 |
|
703 |
+
#: includes/admin/views/html-sidebar.php:10
|
704 |
+
msgid "Change the font of the PDF invoices."
|
705 |
+
msgstr "Ändert die Schriftart der PDF-Rechnungen."
|
706 |
|
707 |
+
#: includes/admin/views/html-sidebar.php:12
|
708 |
+
msgid ""
|
709 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
710 |
+
msgstr ""
|
711 |
+
"Generiert PDF-Rechnungen in mehreren Sprachen (WPML und Polylang kompatibel)."
|
712 |
|
713 |
+
#: includes/admin/views/html-sidebar.php:13
|
714 |
+
msgid "Bulk generate PDF invoices."
|
715 |
+
msgstr "Bulk generiert PDF-Rechnungen."
|
716 |
|
717 |
+
#: includes/admin/views/html-sidebar.php:14
|
718 |
+
msgid "Bulk export and/or download PDF invoices."
|
719 |
+
msgstr "Bulk Export und/oder Download der PDF Rechnungen."
|
720 |
|
721 |
+
#: includes/admin/views/html-sidebar.php:15
|
722 |
+
msgid "Bill periodically by generating and sending global invoices."
|
723 |
+
msgstr ""
|
724 |
+
"Regelmäßigs verrechnen durch das Erzeugen und Senden von zusammengefassten "
|
725 |
+
"Rechnungen."
|
726 |
|
727 |
+
#: includes/admin/views/html-sidebar.php:16
|
728 |
+
msgid "Add additional PDF's to PDF invoices."
|
729 |
+
msgstr "Zusätzliche PDFs zur PDF-Rechnungen hinzufügen."
|
|
|
730 |
|
731 |
+
#: includes/admin/views/html-sidebar.php:17
|
732 |
+
msgid "Send PDF invoices to multiple recipients."
|
733 |
+
msgstr "PDF-Rechnungen an mehrere Empfänger senden."
|
|
|
734 |
|
735 |
+
#: includes/admin/views/html-sidebar.php:18
|
736 |
#, php-format
|
737 |
+
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
738 |
+
msgstr "Anhängen an die <a href=\"%s\">WooCommerce Abonnement</a> E-Mails."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
|
740 |
+
#: includes/admin/views/html-sidebar.php:20
|
741 |
+
msgid "Learn more"
|
742 |
+
msgstr "Weitere Informationen"
|
|
|
|
|
743 |
|
744 |
+
#: includes/admin/views/html-sidebar.php:23
|
745 |
+
msgid "Stay up-to-date"
|
746 |
+
msgstr "Bleibe auf dem Laufenden"
|
747 |
|
748 |
+
#: includes/admin/views/html-sidebar.php:27
|
|
|
749 |
msgid ""
|
750 |
+
"We're constantly developing new features, stay up-to-date by subscribing to "
|
751 |
+
"our newsletter."
|
752 |
msgstr ""
|
753 |
+
"Wir entwickeln ständig neue Funktionen. Mit unseren Newsletter auf dem "
|
754 |
+
"Laufenden bleiben."
|
755 |
|
756 |
+
#: includes/admin/views/html-sidebar.php:33
|
757 |
+
msgid "Your email address"
|
758 |
+
msgstr "Deine E-Mail-Adresse"
|
|
|
759 |
|
760 |
+
#: includes/admin/views/html-sidebar.php:39
|
761 |
+
msgid "Signup"
|
762 |
+
msgstr "Registrierung"
|
763 |
|
764 |
+
#: includes/admin/views/html-sidebar.php:42
|
765 |
+
msgid "No spam, ever. Unsubscribe at any time"
|
766 |
+
msgstr ""
|
767 |
+
"Einwilligung kann jederzeit widerrufen werden, keine Weitergabe der Daten, "
|
768 |
+
"kein Spam"
|
769 |
|
770 |
+
#: includes/admin/views/html-sidebar.php:51
|
771 |
+
msgid "About"
|
772 |
+
msgstr "Über"
|
|
|
773 |
|
774 |
+
#: includes/admin/views/html-sidebar.php:53
|
775 |
+
msgid ""
|
776 |
+
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
777 |
+
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
778 |
msgstr ""
|
779 |
+
"Diese Erweiterung ist ein Quell-offenes Projekt und zielt darauf ab die "
|
780 |
+
"Rechnungs-Lücke in <a href=\"http://www.woothemes.com/woocommerce"
|
781 |
+
"\">WooCommerce</a> zu füllen."
|
782 |
|
783 |
+
#: includes/admin/views/html-sidebar.php:56
|
784 |
+
#, php-format
|
785 |
+
msgid "Version: %s"
|
786 |
+
msgstr "Version: %s"
|
787 |
|
788 |
+
#: includes/admin/views/html-sidebar.php:58
|
789 |
+
#, php-format
|
790 |
+
msgid "Author: %s"
|
791 |
+
msgstr "Autor: %s"
|
792 |
|
793 |
+
#: includes/admin/views/html-sidebar.php:62
|
794 |
+
msgid "Support"
|
795 |
+
msgstr "Unterstützung"
|
796 |
|
797 |
+
#: includes/admin/views/html-sidebar.php:64
|
798 |
#, php-format
|
799 |
msgid ""
|
800 |
+
"We will never ask for donations, but to guarantee future development, we do "
|
801 |
+
"need your support. Please show us your appreciation by leaving a <a href="
|
802 |
+
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
|
|
803 |
msgstr ""
|
804 |
+
"Wir werden nie um Spenden bitten, aber um die zukünftige Entwicklung zu "
|
805 |
+
"gewährleisten, brauchen wir Unterstützung. Wir bitte, eine <a href=\"%1$s\" "
|
806 |
+
">★★★★★</a>-Bewertung zu hinterlassen und für <ein href=\"%2$s"
|
807 |
+
"\">funktioniert</a> stimmen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
|
809 |
+
#: includes/admin/views/html-sidebar.php:88
|
|
|
810 |
msgid ""
|
811 |
+
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
|
|
812 |
msgstr ""
|
813 |
+
"Die kostenlose WordPress-Erweiterung für WooCommerce testen: PDF-Rechnungen "
|
814 |
+
"Erstellen!"
|
815 |
|
816 |
+
#: includes/admin/views/html-sidebar.php:93
|
817 |
+
msgid "Need Help?"
|
818 |
+
msgstr "Hilfe benötigt?"
|
819 |
|
820 |
+
#: includes/admin/views/html-sidebar.php:95
|
821 |
+
msgid "Frequently Asked Questions"
|
822 |
+
msgstr "Häufig gestellte Fragen (FAQ)"
|
823 |
|
824 |
+
#: includes/admin/views/html-sidebar.php:96
|
825 |
+
msgid "Support forum"
|
826 |
+
msgstr "Support Forum"
|
827 |
|
828 |
+
#: includes/admin/views/html-sidebar.php:97
|
829 |
+
msgid "Request a feature"
|
830 |
+
msgstr "Eine neue Funktion anfordern"
|
831 |
|
832 |
+
#: includes/class-invoice.php:99
|
833 |
+
msgid "Invoice #:"
|
834 |
+
msgstr "Rechnung:"
|
835 |
|
836 |
+
#: includes/class-invoice.php:103
|
837 |
+
msgid "Invoice Date:"
|
838 |
+
msgstr "Rechnungsdatum:"
|
839 |
|
840 |
+
#: includes/class-invoice.php:107
|
841 |
+
msgid "Order Date:"
|
842 |
+
msgstr "Bestelldatum:"
|
843 |
|
844 |
+
#: includes/class-invoice.php:111
|
845 |
+
msgid "Order Number:"
|
846 |
+
msgstr "Bestellnummer:"
|
847 |
|
848 |
+
#: includes/class-invoice.php:115
|
849 |
+
msgid "Payment Method:"
|
850 |
+
msgstr "Zahlungsmethode:"
|
|
|
|
|
|
|
|
|
851 |
|
852 |
+
#: includes/class-invoice.php:119
|
853 |
+
msgid "Shipping Method:"
|
854 |
+
msgstr "Versandart:"
|
855 |
|
856 |
+
#: includes/class-packing-slip.php:68
|
857 |
+
msgid "View packing slip"
|
858 |
+
msgstr "Lieferschein ansehen"
|
859 |
|
860 |
+
#: includes/compatibility/class-wc-core-compatibility.php:245
|
861 |
+
msgid "WooCommerce"
|
862 |
+
msgstr "WooCommerce"
|
863 |
|
864 |
+
#: includes/templates/invoice/simple/micro/body.php:11
|
865 |
+
msgid "Invoice to"
|
866 |
+
msgstr "Rechnungsadresse"
|
867 |
|
868 |
+
#: includes/templates/invoice/simple/micro/body.php:16
|
869 |
+
#: includes/templates/invoice/simple/minimal/header.php:46
|
870 |
+
#: includes/templates/packing-slip/simple/minimal/header.php:44
|
871 |
+
#, php-format
|
872 |
+
msgid "Phone: %s"
|
873 |
+
msgstr "Telefon: %s"
|
|
|
874 |
|
875 |
+
#: includes/templates/invoice/simple/micro/body.php:23
|
876 |
+
#: includes/templates/invoice/simple/minimal/body.php:75
|
877 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:59
|
878 |
+
msgid "Ship to:"
|
879 |
+
msgstr "Lieferadresse:"
|
880 |
|
881 |
+
#: includes/templates/invoice/simple/micro/body.php:37
|
882 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:38
|
883 |
+
#, php-format
|
884 |
+
msgid "Order Number: %s"
|
885 |
+
msgstr "Bestellnummer: %s"
|
886 |
|
887 |
+
#: includes/templates/invoice/simple/micro/body.php:38
|
888 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:36
|
889 |
#, php-format
|
890 |
+
msgid "Order Date: %s"
|
891 |
+
msgstr "Bestelldatum: %s"
|
|
|
892 |
|
893 |
+
#: includes/templates/invoice/simple/micro/body.php:60
|
894 |
+
msgid "Cost"
|
895 |
+
msgstr "Preis"
|
896 |
|
897 |
+
#: includes/templates/invoice/simple/micro/body.php:243
|
898 |
+
msgid "Fee"
|
899 |
+
msgstr "Zahlungsgebühr"
|
900 |
+
|
901 |
+
#: includes/templates/invoice/simple/micro/body.php:269
|
902 |
+
msgid "VAT 0%"
|
903 |
+
msgstr "USt 0%"
|
904 |
|
905 |
+
#: includes/templates/invoice/simple/micro/body.php:285
|
906 |
+
msgid "Refunded"
|
907 |
+
msgstr "Rückerstattet"
|
908 |
+
|
909 |
+
#: includes/templates/invoice/simple/micro/body.php:301
|
910 |
+
#: includes/templates/invoice/simple/micro/body.php:306
|
911 |
+
msgid "Customer note"
|
912 |
+
msgstr "Anmerkung des Kunden"
|
913 |
+
|
914 |
+
#: includes/templates/invoice/simple/micro/body.php:315
|
915 |
+
#: includes/templates/invoice/simple/minimal/body.php:167
|
916 |
+
msgid "Zero rated for VAT as customer has supplied EU VAT number"
|
917 |
+
msgstr "Keine Umsatzsteuer verrechnet, da eine EU UID-Nummer angegeben wurde"
|
918 |
+
|
919 |
+
#: includes/templates/invoice/simple/micro/footer.php:12
|
920 |
+
#: includes/templates/invoice/simple/minimal/footer.php:26
|
921 |
+
#: includes/templates/packing-slip/simple/minimal/footer.php:23
|
922 |
#, php-format
|
923 |
+
msgid "%1$s of %2$s"
|
924 |
+
msgstr "Seite %1$s von %2$s"
|
|
|
|
|
|
|
|
|
925 |
|
926 |
+
#: includes/templates/invoice/simple/minimal/body.php:65
|
927 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:50
|
928 |
+
msgid "Bill to:"
|
929 |
+
msgstr "Rechnungsadresse:"
|
930 |
|
931 |
+
#: includes/templates/invoice/simple/minimal/body.php:150
|
932 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:125
|
933 |
+
#, php-format
|
934 |
+
msgid "Note from customer: %s"
|
935 |
+
msgstr "Hinweis vom Kunden: %s"
|
936 |
|
937 |
+
#: includes/templates/invoice/simple/minimal/body.php:155
|
938 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:130
|
939 |
+
#, php-format
|
940 |
+
msgid "Note to customer: %s"
|
941 |
+
msgstr "Hinweis an den Kunden: %s"
|
|
|
|
|
942 |
|
943 |
+
#: includes/templates/invoice/simple/minimal/header.php:50
|
944 |
+
#: includes/templates/packing-slip/simple/minimal/header.php:48
|
945 |
+
#, php-format
|
946 |
+
msgid "Email: %s"
|
947 |
+
msgstr "E-Mail: %s"
|
948 |
|
949 |
+
#: includes/templates/invoice/simple/minimal/header.php:54
|
950 |
+
#: includes/templates/packing-slip/simple/minimal/header.php:52
|
951 |
+
#, php-format
|
952 |
+
msgid "VAT ID: %s"
|
953 |
+
msgstr "USt-IdNr.: %s"
|
954 |
|
955 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:30
|
956 |
+
msgid "Packing Slip"
|
957 |
+
msgstr "Lieferschein"
|
958 |
|
959 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:43
|
960 |
+
#, php-format
|
961 |
+
msgid "Shipping Method: %s"
|
962 |
+
msgstr "Versandart: %s"
|
963 |
|
964 |
+
#: includes/templates/packing-slip/simple/minimal/body.php:75
|
965 |
+
msgid "Product"
|
966 |
+
msgstr "Produkt"
|
967 |
|
968 |
+
#: includes/woocommerce-pdf-invoices.php:398
|
969 |
+
msgid "Settings"
|
970 |
+
msgstr "Einstellungen"
|
971 |
|
972 |
+
#: includes/woocommerce-pdf-invoices.php:416
|
973 |
+
msgid "Premium"
|
974 |
+
msgstr "Premium"
|
975 |
|
976 |
+
#: includes/woocommerce-pdf-invoices.php:616
|
977 |
+
msgid "Invoice No."
|
978 |
+
msgstr "Rechnungsnr."
|
979 |
|
980 |
+
#: includes/woocommerce-pdf-invoices.php:653
|
981 |
+
msgid "View invoice"
|
982 |
+
msgstr "Rechnung anzeigen"
|
983 |
+
|
984 |
+
#: includes/woocommerce-pdf-invoices.php:668
|
985 |
+
#: includes/woocommerce-pdf-invoices.php:690
|
986 |
+
msgid "PDF Invoice"
|
987 |
+
msgstr "Rechnung"
|
988 |
+
|
989 |
+
#: includes/woocommerce-pdf-invoices.php:705
|
990 |
+
msgid "Create"
|
991 |
+
msgstr "Erstellen"
|
992 |
+
|
993 |
+
#: includes/woocommerce-pdf-invoices.php:711
|
994 |
+
msgid "Date:"
|
995 |
+
msgstr "Datum:"
|
996 |
+
|
997 |
+
#: includes/woocommerce-pdf-invoices.php:715
|
998 |
+
msgid "Number:"
|
999 |
+
msgstr "Nummer:"
|
1000 |
+
|
1001 |
+
#: includes/woocommerce-pdf-invoices.php:724
|
1002 |
+
msgid "Sent?"
|
1003 |
+
msgstr "Senden?"
|
1004 |
+
|
1005 |
+
#: includes/woocommerce-pdf-invoices.php:725
|
1006 |
+
msgid "Yes"
|
1007 |
+
msgstr "Ja"
|
1008 |
|
1009 |
+
#: includes/woocommerce-pdf-invoices.php:725
|
1010 |
+
msgid "No"
|
1011 |
+
msgstr "Nein"
|
1012 |
+
|
1013 |
+
#: includes/woocommerce-pdf-invoices.php:735
|
1014 |
+
msgid "View"
|
1015 |
+
msgstr "Anzeigen"
|
1016 |
+
|
1017 |
+
#: includes/woocommerce-pdf-invoices.php:742
|
1018 |
+
msgid "Update"
|
1019 |
+
msgstr "Aktualisieren"
|
1020 |
+
|
1021 |
+
#: includes/woocommerce-pdf-invoices.php:747
|
1022 |
+
msgid "Are you sure to delete the PDF invoice?"
|
1023 |
+
msgstr "Sicher, dass die PDF-Rechnung gelöscht werden soll?"
|
1024 |
+
|
1025 |
+
#. translators: $d: invoice number
|
1026 |
+
#: includes/woocommerce-pdf-invoices.php:751
|
1027 |
#, php-format
|
1028 |
msgid ""
|
1029 |
+
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1030 |
+
"an accounting gap!"
|
1031 |
msgstr ""
|
1032 |
+
"Es wir keine keine PDF-Rechnung mit der Rechnungsnummer %d geben und es "
|
1033 |
+
"entsteht so eine Buchhaltungslücke!"
|
|
|
1034 |
|
1035 |
+
#. translators: %s: plugin name.
|
1036 |
+
#: includes/woocommerce-pdf-invoices.php:754
|
1037 |
+
#, php-format
|
1038 |
+
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1039 |
+
msgstr "Stattdessen die von abgerechneten PDF-Rechnungen mit %s verwenden."
|
1040 |
|
1041 |
+
#: includes/woocommerce-pdf-invoices.php:759
|
1042 |
+
msgid "Delete"
|
1043 |
+
msgstr "Löschen"
|
1044 |
|
1045 |
+
#~ msgid ""
|
1046 |
+
#~ "Whoops, your license for %1$s has expired. To keep receiving updates and "
|
1047 |
+
#~ "premium support, we offer you a 30%% discount when you <a href=\"%2$s\" "
|
1048 |
+
#~ "target=\"_blank\">renew your license</a>."
|
1049 |
+
#~ msgstr ""
|
1050 |
+
#~ "Ups, die Lizenz für %1$s ist abgelaufen. Um weiterhin Aktualisierungen "
|
1051 |
+
#~ "und Premium-Support zu erhalten, bieten wir einen Rabatt von 30%%, wenn "
|
1052 |
+
#~ "man <a href=\"%2$s\" target=\"_blank\">die Lizenz erneuert</a>."
|
1053 |
|
1054 |
+
#~ msgid "License"
|
1055 |
+
#~ msgstr "Lizenzschlüssel"
|
|
|
1056 |
|
1057 |
+
#~ msgid "Activate License"
|
1058 |
+
#~ msgstr "Lizenz aktivieren"
|
|
|
|
|
1059 |
|
1060 |
+
#~ msgid "Deactivate License"
|
1061 |
+
#~ msgstr "Lizenz deaktivieren"
|
|
|
1062 |
|
1063 |
+
#~ msgid "License Options"
|
1064 |
+
#~ msgstr "Lizenzoptionen"
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
|
1066 |
+
#~ msgid ""
|
1067 |
+
#~ "An active license will give you the ability to always receive the latest "
|
1068 |
+
#~ "updates with the latest features and premium support."
|
1069 |
+
#~ msgstr ""
|
1070 |
+
#~ "Eine aktive Lizenz stellt die Möglichkeit bereit, immer die neuesten "
|
1071 |
+
#~ "Aktualisierungen mit den neuesten Funktionen und Premium-Support zu "
|
1072 |
+
#~ "erhalten."
|
1073 |
|
1074 |
+
#~ msgid "Activation email"
|
1075 |
+
#~ msgstr "Aktivierungs-E-Mail"
|
|
|
1076 |
|
1077 |
+
#~ msgid ""
|
1078 |
+
#~ "Enter your activation email from %s to receive updates and premium "
|
1079 |
+
#~ "support."
|
1080 |
+
#~ msgstr ""
|
1081 |
+
#~ "Hier den Lizenzschlüssel von %s eingeben, um Aktualisierungen zu erhalten."
|
1082 |
|
1083 |
+
#~ msgid ""
|
1084 |
+
#~ "Enter your license key from %s to receive updates and premium support."
|
1085 |
+
#~ msgstr ""
|
1086 |
+
#~ "Hier den Lizenzschlüssel von %s eingeben, um Aktualisierungen zu erhalten."
|
|
|
1087 |
|
1088 |
+
#~ msgid "License key cannot be empty."
|
1089 |
+
#~ msgstr "Lizenzschlüssel darf nicht leer sein."
|
|
|
1090 |
|
1091 |
+
#~ msgid "Activation email cannot be empty."
|
1092 |
+
#~ msgstr "Aktivierungs-E-Mail kann nicht leer sein."
|
|
|
1093 |
|
1094 |
+
#~ msgid "Template Options"
|
1095 |
+
#~ msgstr "Vorlagen Optionen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
|
1097 |
+
#~ msgid "Supplier Options"
|
1098 |
+
#~ msgstr "Lieferanten Optionen"
|
|
|
1099 |
|
1100 |
+
#~ msgid "Send customer invoice automatically to your supplier(s)."
|
1101 |
+
#~ msgstr "Sendet die Kundenrechnung automatisch an den Lieferanten."
|
|
|
1102 |
|
1103 |
+
#~ msgid "Credit Note Options"
|
1104 |
+
#~ msgstr "Gutschrifthinweis Optionen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1105 |
|
1106 |
+
#~ msgid "Credit Note Number Options"
|
1107 |
+
#~ msgstr "Gutschriftnummern Optionen"
|
|
|
1108 |
|
1109 |
+
#~ msgid "Global Invoice Options"
|
1110 |
+
#~ msgstr "Allgemeine Rechnungsoptionen"
|
|
|
|
|
|
|
1111 |
|
1112 |
+
#~ msgid ""
|
1113 |
+
#~ "Generate global invoices on Orders page by selecting multiple orders and "
|
1114 |
+
#~ "applying action or let customers generate periodically from My Account "
|
1115 |
+
#~ "page. <strong>Global invoices are only supported when using the micro "
|
1116 |
+
#~ "template!</strong>"
|
1117 |
+
#~ msgstr ""
|
1118 |
+
#~ "Generiert zusammengefasste Rechnungen auf der Bestellseite, in dem "
|
1119 |
+
#~ "mehrere Bestellungen auswählt und verarbeitet werden oder lässt Kunden "
|
1120 |
+
#~ "regelmäßig von der Seite \"Mein Konto\" Rechnungen generieren. "
|
1121 |
+
#~ "<strong>Allgemeine Rechnungen werden nur bei der Verwendung der "
|
1122 |
+
#~ "Mikrovorlage unterstützt!</strong>"
|
1123 |
|
1124 |
+
#~ msgid "Reminder Options"
|
1125 |
+
#~ msgstr "Erinnerungsoptionen"
|
|
|
|
|
|
|
1126 |
|
1127 |
+
#~ msgid ""
|
1128 |
+
#~ "Automatically send PDF invoice after a specific period of time. When "
|
1129 |
+
#~ "enabled, a new <a href=\"%s\">Customer invoice reminder</a> email will be "
|
1130 |
+
#~ "used to send the PDF invoice."
|
1131 |
+
#~ msgstr ""
|
1132 |
+
#~ "Sendet automatisch die PDF-Rechnung nach einer bestimmten Zeitspanne. "
|
1133 |
+
#~ "Wenn dies aktiviert ist, wird eine neue <a href=\"%s\">Kundenerinnerungs-"
|
1134 |
+
#~ "E-Mail </a>verwendet, um die PDF-Rechnung zu senden."
|
1135 |
|
1136 |
+
#~ msgid "Request Invoice Options"
|
1137 |
+
#~ msgstr "Rechnungsoptionen abfragen"
|
|
|
1138 |
|
1139 |
+
#~ msgid ""
|
1140 |
+
#~ "Let a customer decide to generate a PDF invoice. When enabled, a checkbox "
|
1141 |
+
#~ "field will be added on the checkout page so customers can request a PDF "
|
1142 |
+
#~ "invoice."
|
1143 |
+
#~ msgstr ""
|
1144 |
+
#~ "Lässt einen Kunden entscheiden, ob eine PDF-Rechnung benötigt wird. Wenn "
|
1145 |
+
#~ "dies aktiviert ist, wird auf der Kasse-Seite ein Kästchen hinzugefügt, "
|
1146 |
+
#~ "damit die Kunden eine PDF-Rechnung anfordern können."
|
1147 |
|
1148 |
+
#~ msgid "Additional customer billing fields"
|
1149 |
+
#~ msgstr "Zusätzliche Kunden-Rechungsfelder"
|
|
|
1150 |
|
1151 |
+
#~ msgid ""
|
1152 |
+
#~ "Use for example %s or custom post-/usermeta fields. The fields will be "
|
1153 |
+
#~ "displayed below the billing address."
|
1154 |
+
#~ msgstr ""
|
1155 |
+
#~ "Zum Beispiel %s oder benutzerdefinierte Post-/usermeta-Felder. Die Felder "
|
1156 |
+
#~ "werden unterhalb der Rechnungsadresse angezeigt."
|
1157 |
|
1158 |
+
#~ msgid "Additional customer shipping fields"
|
1159 |
+
#~ msgstr "Zusätzliche Kunden-Versandfelder"
|
|
|
1160 |
|
1161 |
+
#~ msgid ""
|
1162 |
+
#~ "Use for example %s or custom post-/usermeta fields. The fields will be "
|
1163 |
+
#~ "displayed below the shipping address."
|
1164 |
+
#~ msgstr ""
|
1165 |
+
#~ "Zum Beispiel %s oder benutzerdefinierte Post-/usermeta-Felder. Die Felder "
|
1166 |
+
#~ "werden unter der Lieferadresse angezeigt."
|
|
|
1167 |
|
1168 |
+
#~ msgid "PDF attachment"
|
1169 |
+
#~ msgstr "PDF-Anhang"
|
|
|
1170 |
|
1171 |
+
#~ msgid "Add for example a PDF with your terms & conditions."
|
1172 |
+
#~ msgstr "Fügt zum Beispiel ein PDF mit den Geschäftsbedingungen hinzu."
|
|
|
1173 |
|
1174 |
+
#~ msgid "Show used coupons"
|
1175 |
+
#~ msgstr "Genutzte Gutscheine anzeigen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1176 |
|
1177 |
+
#~ msgid "Suppliers"
|
1178 |
+
#~ msgstr "Lieferanten"
|
|
|
1179 |
|
1180 |
+
#~ msgid ""
|
1181 |
+
#~ "<b>Hint</b>: Send customer invoices to suppliers' Cloud Storages by "
|
1182 |
+
#~ "simply adding their Email It In email addresses. Email addresses need to "
|
1183 |
+
#~ "be seperated by comma's."
|
1184 |
+
#~ msgstr ""
|
1185 |
+
#~ "<b>Hinweis</b>: Kundenrechnungen an die Cloud-Speicher der Lieferanten "
|
1186 |
+
#~ "senden, in dem man einfach dessen \"Email It In\"-E-Mail-Adressen "
|
1187 |
+
#~ "hinzufügt. E-Mail-Adressen müssen durch Kommas getrennt werden."
|
1188 |
|
1189 |
+
#~ msgid "Enable customer generation"
|
1190 |
+
#~ msgstr "Erstellung durch Kunden aktivieren"
|
|
|
1191 |
|
1192 |
+
#~ msgid "Let customers generate a global invoice from their account"
|
1193 |
+
#~ msgstr ""
|
1194 |
+
#~ "Kunden sollen eine Allgemeine Rechnung in ihrem Konto generieren können"
|
1195 |
|
1196 |
+
#~ msgid "Customer generation period"
|
1197 |
+
#~ msgstr "Zeitspanne zur Erstellung durch den Kunden"
|
|
|
1198 |
|
1199 |
+
#~ msgid ""
|
1200 |
+
#~ "Should your customers have the ability to generate a global invoice by "
|
1201 |
+
#~ "month or by year?<br/><strong>Note:</strong> Customer generation should "
|
1202 |
+
#~ "be enabled."
|
1203 |
+
#~ msgstr ""
|
1204 |
+
#~ "Sollen Kunden die Möglichkeit bekommen, eine zusammengefasste Rechnung "
|
1205 |
+
#~ "nach Monat oder nach Jahr zu erstellen?<br/><strong>Hinweis:</strong> Die "
|
1206 |
+
#~ "Kundengenerierung sollte aktiviert werden."
|
1207 |
|
1208 |
+
#~ msgid "Month"
|
1209 |
+
#~ msgstr "Monat"
|
|
|
1210 |
|
1211 |
+
#~ msgid "Year"
|
1212 |
+
#~ msgstr "Jahr"
|
|
|
1213 |
|
1214 |
+
#~ msgid "Send to your Cloud Storage"
|
1215 |
+
#~ msgstr "An Cloud-Speicher senden"
|
|
|
|
|
|
|
|
|
|
|
|
|
1216 |
|
1217 |
+
#~ msgid "Email to customer"
|
1218 |
+
#~ msgstr "E-Mail an den Kunden"
|
|
|
1219 |
|
1220 |
+
#~ msgid "Email to supplier(s)"
|
1221 |
+
#~ msgstr "E-Mail an den Lieferanten"
|
|
|
1222 |
|
1223 |
+
#~ msgid "Email subject"
|
1224 |
+
#~ msgstr "E-Mail Betreff"
|
|
|
1225 |
|
1226 |
+
#~ msgid "Subject for the global invoice email."
|
1227 |
+
#~ msgstr "Betreff für die zusammengefasste Rechnungs-E-Mail."
|
|
|
|
|
|
|
|
|
|
|
1228 |
|
1229 |
+
#~ msgid "Email message"
|
1230 |
+
#~ msgstr "E-Mail Nachricht"
|
|
|
1231 |
|
1232 |
+
#~ msgid "Message for the global invoice email."
|
1233 |
+
#~ msgstr "Nachricht für die zusammengefasste Rechnungs-E-Mail."
|
|
|
1234 |
|
1235 |
+
#~ msgid "Enable reminder"
|
1236 |
+
#~ msgstr "Erinnerungen Aktivieren"
|
|
|
|
|
|
|
|
|
1237 |
|
1238 |
+
#~ msgid "Days until due date"
|
1239 |
+
#~ msgstr "Tage bis zum Fälligkeitsdatum"
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
|
1241 |
+
#~ msgid "Number of days from order or invoice date until due date."
|
1242 |
+
#~ msgstr ""
|
1243 |
+
#~ "Anzahl der Tage vom Bestell- oder Rechnungsdatum bis zum Fälligkeitsdatum."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1244 |
|
1245 |
+
#~ msgid "Days until reminder"
|
1246 |
+
#~ msgstr "Tage bis zur Erinnerung"
|
|
|
1247 |
|
1248 |
+
#~ msgid "Number of days from order or invoice date until reminder date."
|
1249 |
+
#~ msgstr "Anzahl der Tage ab Bestellung oder Rechnungsdatum bis zur Mahnung."
|
|
|
1250 |
|
1251 |
+
#~ msgid "Date type"
|
1252 |
+
#~ msgstr "Datumsformat"
|
|
|
|
|
|
|
|
|
1253 |
|
1254 |
+
#~ msgid "Choose the type of date to count from."
|
1255 |
+
#~ msgstr "Die Art des Datums, ab dem gezählt werden soll."
|
1256 |
+
|
1257 |
+
#~ msgid "Order date"
|
1258 |
+
#~ msgstr "Bestelldatum"
|
1259 |
+
|
1260 |
+
#~ msgid "Invoice date"
|
1261 |
+
#~ msgstr "Rechnungsdatum"
|
1262 |
+
|
1263 |
+
#~ msgid "Enable Request Invoice."
|
1264 |
+
#~ msgstr "Ermöglicht das anfordern von Rechnungen."
|
1265 |
+
|
1266 |
+
#~ msgid "File to large."
|
1267 |
+
#~ msgstr "Die Datei ist zu groß."
|
1268 |
+
|
1269 |
+
#~ msgid "Only PDF files are allowed."
|
1270 |
+
#~ msgstr "Es sind nur PDF-Dateien erlaubt."
|
1271 |
+
|
1272 |
+
#~ msgid "Remove"
|
1273 |
+
#~ msgstr "Löschen"
|
1274 |
+
|
1275 |
+
#~ msgid "Choose"
|
1276 |
+
#~ msgstr "Auswählen"
|
1277 |
|
1278 |
+
#~ msgid "PDF Credit Note %1$s"
|
1279 |
+
#~ msgstr "PDF Gutschrifthinweis %1$s"
|
|
|
|
|
|
|
|
|
|
|
1280 |
|
1281 |
+
#~ msgid "Generate Global Invoice"
|
1282 |
+
#~ msgstr "Allgemeine Rechnung generieren"
|
|
|
|
|
|
|
|
|
|
|
1283 |
|
1284 |
+
#~ msgid "Select a month"
|
1285 |
+
#~ msgstr "Einen Monat wählen"
|
|
|
|
|
|
|
|
|
|
|
1286 |
|
1287 |
+
#~ msgid "Select a year"
|
1288 |
+
#~ msgstr "Ein Jahr wählen"
|
|
|
|
|
|
|
|
|
1289 |
|
1290 |
+
#~ msgid "Generate invoice"
|
1291 |
+
#~ msgstr "Rechnung generieren"
|
|
|
1292 |
|
1293 |
+
#~ msgid "Global invoice successfully generated!"
|
1294 |
+
#~ msgstr "Zusammenfassende Rechnung erfolgreich generiert!"
|
|
|
|
|
|
|
|
|
1295 |
|
1296 |
+
#~ msgid "Bulk Export PDF Invoices"
|
1297 |
+
#~ msgstr "Bulk Export PDF Rechnungen"
|
|
|
1298 |
|
1299 |
+
#~ msgid "Bulk Export PDF Packing Slips"
|
1300 |
+
#~ msgstr "Bulk Export PDF Lieferscheine"
|
|
|
1301 |
|
1302 |
+
#~ msgid "No order selected."
|
1303 |
+
#~ msgstr "Keine Bestellung ausgewählt."
|
|
|
|
|
|
|
1304 |
|
1305 |
+
#~ msgid "Bulk Generate PDF Invoices"
|
1306 |
+
#~ msgstr "Bulk Erstellung von PDF Rechnungen"
|
|
|
1307 |
|
1308 |
+
#~ msgid "Bulk Generate PDF Packing Slips"
|
1309 |
+
#~ msgstr "Bulk Erstellung von PDF Lieferscheinen"
|
|
|
1310 |
|
1311 |
+
#~ msgid "Bulk Generate PDF Credit Notes"
|
1312 |
+
#~ msgstr "Massen Erstellung von PDF Gutschrifthinweisen"
|
|
|
|
|
1313 |
|
1314 |
+
#~ msgid "Bulk Print PDF Packing Slips"
|
1315 |
+
#~ msgstr "Bulk Druck von PDF Lieferscheinen"
|
|
|
1316 |
|
1317 |
+
#~ msgid "PDF Credit Notes"
|
1318 |
+
#~ msgstr "PDF Kreditinė"
|
|
|
1319 |
|
1320 |
+
#~ msgid ""
|
1321 |
+
#~ "<a href=\"%1$s\" class=\"%2$s\" target=\"%3$s\">PDF Credit Note (%4$s)</"
|
1322 |
+
#~ "a> for Refund #%5$s."
|
1323 |
+
#~ msgstr ""
|
1324 |
+
#~ "<a href=\"%1$s\" class=\"%2$s\" target=\"%3$s\">PDF Gutschrift (%4$s)</a> "
|
1325 |
+
#~ "für Rückerstattung #%5$s."
|
|
|
1326 |
|
1327 |
+
#~ msgid "created on %1$s at %2$s"
|
1328 |
+
#~ msgstr "erstellt am %1$s um %2$s Uhr"
|
|
|
1329 |
|
1330 |
+
#~ msgid "There are no credit notes yet."
|
1331 |
+
#~ msgstr "Es gibt noch keine Anmerkungen."
|
|
|
1332 |
|
1333 |
+
#~ msgid "Create PDF Credit Notes for selected refund(s)"
|
1334 |
+
#~ msgstr "Erstellen von PDF-Gutschriften für ausgewählte Rückerstattungen"
|
|
|
|
|
|
|
1335 |
|
1336 |
+
#~ msgid "Credit note"
|
1337 |
+
#~ msgstr "Gutschrift: %s"
|
|
|
1338 |
|
1339 |
+
#~ msgid "Email credit note to customer"
|
1340 |
+
#~ msgstr "E-Mail Gutschrift an den Kunden"
|
|
|
|
|
|
|
|
|
|
|
|
|
1341 |
|
1342 |
+
#~ msgid "Partially Refunded Order"
|
1343 |
+
#~ msgstr "Teilweise erstattet Rechung"
|
|
|
|
|
1344 |
|
1345 |
+
#~ msgid "Credit Note #:"
|
1346 |
+
#~ msgstr "Gutschrifthinweis: %s:"
|
|
|
|
|
1347 |
|
1348 |
+
#~ msgid "Order #:"
|
1349 |
+
#~ msgstr "Bestellung:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1350 |
|
1351 |
+
#~ msgid ""
|
1352 |
+
#~ "%1$s requires %2$s to be activated. Install and activate it and you "
|
1353 |
+
#~ "should be good to go! :)"
|
1354 |
+
#~ msgstr ""
|
1355 |
+
#~ "%1$s erfordert die Aktivierung von %2$s. %2$s installieren und aktivieren "
|
1356 |
+
#~ "und alles sollte funktionieren! :)"
|
1357 |
|
1358 |
+
#~ msgid ""
|
1359 |
+
#~ "%1$s requires at least %2$s. Update it and get the best out of both "
|
1360 |
+
#~ "plugins. :)"
|
1361 |
+
#~ msgstr ""
|
1362 |
+
#~ "%1$s erfordert mindestens %2$s. Auf die neuste Version aktualisieren um "
|
1363 |
+
#~ "das Beste aus beiden Erweiterungen herauszuholen. :)"
|
1364 |
|
1365 |
+
#~ msgid "Invalid request"
|
1366 |
+
#~ msgstr "Ungültige Anfrage"
|
|
|
1367 |
|
1368 |
+
#~ msgid "No orders found."
|
1369 |
+
#~ msgstr "Keine Bestellungen gefunden."
|
|
|
1370 |
|
1371 |
+
#~ msgid "Generate global invoice"
|
1372 |
+
#~ msgstr "Allgemeine Rechnung generieren"
|
|
|
1373 |
|
1374 |
+
#~ msgid ""
|
1375 |
+
#~ "Could not generate the invoice. Global invoices are only supported when "
|
1376 |
+
#~ "using the micro template."
|
1377 |
+
#~ msgstr ""
|
1378 |
+
#~ "Die Rechnung konnte nicht generiert werden. Allgemeine Rechnungen werden "
|
1379 |
+
#~ "nur bei Verwendung der Mikrovorlage unterstützt."
|
1380 |
|
1381 |
+
#~ msgid "Select more then one order to generate a global invoice."
|
1382 |
+
#~ msgstr ""
|
1383 |
+
#~ "Mehr als eine Bestellung auswählen, um eine zusammengefasste Rechnung zu "
|
1384 |
+
#~ "erstellen."
|
|
|
1385 |
|
1386 |
+
#~ msgid "Reminder on:"
|
1387 |
+
#~ msgstr "Erinnerung an:"
|
|
|
1388 |
|
1389 |
+
#~ msgid "Reminder sent?"
|
1390 |
+
#~ msgstr "Mahnung geschickt?"
|
|
|
1391 |
|
1392 |
+
#~ msgid "Due Date:"
|
1393 |
+
#~ msgstr "Fälligkeitsdatum:"
|
|
|
|
|
|
|
1394 |
|
1395 |
+
#~ msgid "Bulk Generate UBL"
|
1396 |
+
#~ msgstr "Massenerstellung UBL"
|
|
|
|
|
|
|
1397 |
|
1398 |
+
#~ msgid ""
|
1399 |
+
#~ "Instead consider creating a Cancelled PDF invoice by changing the order "
|
1400 |
+
#~ "status to Cancelled."
|
1401 |
+
#~ msgstr ""
|
1402 |
+
#~ "Stattdessen sollte die Erstellung einer stornierten PDF-Rechnung in "
|
1403 |
+
#~ "Erwägung gezogen werden, indem man den Bestellstatus auf Storniert ändern."
|
1404 |
|
1405 |
+
#~ msgid "Advanced Table Content"
|
1406 |
+
#~ msgstr "Erweiterte Tabelleninhalte"
|
|
|
1407 |
|
1408 |
+
#~ msgid ""
|
1409 |
+
#~ "Enable Advanced Table Content settings to fully customize line item "
|
1410 |
+
#~ "columns and total rows. When enabled the standard Table Content settings "
|
1411 |
+
#~ "will be ignored. When using a custom template, make sure to update it! "
|
1412 |
+
#~ "Micro template is not supported."
|
1413 |
+
#~ msgstr ""
|
1414 |
+
#~ "Die erweiterten Einstellungen für den Tabelleninhalt, um die Spalten von "
|
1415 |
+
#~ "Einzelposten und Summenzeilen vollständig anzupassen. Wenn diese Option "
|
1416 |
+
#~ "aktiviert ist, werden die Standardeinstellungen für den Tabelleninhalt "
|
1417 |
+
#~ "ignoriert. Wenn eine benutzerdefinierte Vorlage verwendet wird, muss sich "
|
1418 |
+
#~ "gestellt werden, dass diese aktualisieret wurde! Die Mikrovorlage wird "
|
1419 |
+
#~ "nicht unterstützt."
|
1420 |
|
1421 |
+
#~ msgid "Enable Advanced Table Content"
|
1422 |
+
#~ msgstr "Erweiterte Tabelleninhalte aktivieren"
|
|
|
1423 |
|
1424 |
+
#~ msgid "Show SKU as meta data"
|
1425 |
+
#~ msgstr "Artikelnummer als Metadaten anzeigen"
|
|
|
|
|
1426 |
|
1427 |
+
#~ msgid "Display tax totals"
|
1428 |
+
#~ msgstr "Gesamtsumme der Steuern anzeigen"
|
|
|
1429 |
|
1430 |
+
#~ msgid "Itemized"
|
1431 |
+
#~ msgstr "Aufgeschlüsselt"
|
|
|
1432 |
|
1433 |
+
#~ msgid "As a single total"
|
1434 |
+
#~ msgstr "Zusammengezogen"
|
|
|
|
|
1435 |
|
1436 |
+
#~ msgid "Line item columns"
|
1437 |
+
#~ msgstr "Belegpositionen Spalten"
|
|
|
1438 |
|
1439 |
+
#~ msgid "Quantity"
|
1440 |
+
#~ msgstr "Menge"
|
|
|
1441 |
|
1442 |
+
#~ msgid "Total Discount"
|
1443 |
+
#~ msgstr "Gesamtrabatt"
|
|
|
1444 |
|
1445 |
+
#~ msgid "Total rows"
|
1446 |
+
#~ msgstr "Alle Zeilen"
|
|
|
1447 |
|
1448 |
+
#~ msgid "Show tax labels"
|
1449 |
+
#~ msgstr "Steuerkennzeichnung anzeigen"
|
|
|
1450 |
|
1451 |
+
#~ msgid "VAT %s"
|
1452 |
+
#~ msgstr "USt %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
1453 |
|
1454 |
+
#~ msgid "Request invoice"
|
1455 |
+
#~ msgstr "Rechnung anfordern"
|
|
|
|
|
|
|
|
|
1456 |
|
1457 |
+
#~ msgid "Coupon(s): %s"
|
1458 |
+
#~ msgstr "Gutschein(e): %s"
|
1459 |
|
1460 |
+
#~ msgid "Customer credit note"
|
1461 |
+
#~ msgstr "Kundenhinweis"
|
1462 |
|
1463 |
#~ msgid ""
|
1464 |
+
#~ "Customer credit note emails can be sent to customers containing their PDF "
|
1465 |
+
#~ "Credit Note."
|
1466 |
#~ msgstr ""
|
1467 |
+
#~ "Kundengutschriften-E-Mails können an Kunden versendet werden, die eine "
|
1468 |
+
#~ "PDF-Gutschrift enthalten."
|
1469 |
|
1470 |
+
#~ msgid "Credit note for order {order_number} from {order_date}"
|
1471 |
+
#~ msgstr "Rechnungskorrektur zur Bestellung {order_number} vom {order_date}"
|
1472 |
|
1473 |
+
#~ msgid "Credit note for order {order_number}"
|
1474 |
+
#~ msgstr "Rechnungskorrektur zur Bestellung {order_number}"
|
1475 |
|
1476 |
+
#~ msgid "Defaults to %s"
|
1477 |
+
#~ msgstr "Standard auf %s"
|
1478 |
|
1479 |
+
#~ msgid "Email heading"
|
1480 |
+
#~ msgstr "E-Mail Kopfzeile"
|
1481 |
|
1482 |
+
#~ msgid "Email type"
|
1483 |
+
#~ msgstr "E-Mail-Typ"
|
1484 |
|
1485 |
+
#~ msgid "Choose which format of email to send."
|
1486 |
+
#~ msgstr "Format für E-Mail-Versand auswählen."
|
1487 |
|
1488 |
+
#~ msgid "Customer invoice reminder"
|
1489 |
+
#~ msgstr "Kunden Zahlungserinnerung"
|
1490 |
|
1491 |
+
#~ msgid ""
|
1492 |
+
#~ "Customer invoice reminder emails can be sent to customers containing "
|
1493 |
+
#~ "their order information and payment links."
|
1494 |
+
#~ msgstr ""
|
1495 |
+
#~ "E-Mails mit Zahlungserinnerungen können an den Kunden gesendet werden und "
|
1496 |
+
#~ "beinhalten Informationen zur Bestellung und Links, wie die Bestellung "
|
1497 |
+
#~ "bezahlt werden kann."
|
1498 |
|
1499 |
+
#~ msgid "Invoice reminder for order {order_number} from {order_date}"
|
1500 |
+
#~ msgstr "Zahlungserinnerung für Bestellung {order_number} vom {order_date}"
|
1501 |
|
1502 |
+
#~ msgid "Invoice reminder for order {order_number}"
|
1503 |
+
#~ msgstr "Zahlungserinnerung für Bestellung {order_number}"
|
1504 |
|
1505 |
+
#~ msgid "Credit Note"
|
1506 |
+
#~ msgstr "Gutschrift"
|
1507 |
|
1508 |
+
#~ msgid "Order:"
|
1509 |
+
#~ msgstr "Reihenfolge:"
|
1510 |
+
|
1511 |
+
#~ msgid "Order number: %s"
|
1512 |
+
#~ msgstr "Bestellnummer: %s"
|
1513 |
+
|
1514 |
+
#~ msgid "Order date: %s"
|
1515 |
+
#~ msgstr "Bestelldatum: %s"
|
1516 |
+
|
1517 |
+
#~ msgid "Global Invoice"
|
1518 |
+
#~ msgstr "Generelle Rechnungsoptionen"
|
1519 |
|
1520 |
+
#~ msgid "VAT"
|
1521 |
+
#~ msgstr "MwSt"
|
1522 |
|
1523 |
+
#~ msgid "Order #%d - %s"
|
1524 |
+
#~ msgstr "Bestellung %d - %s"
|
1525 |
+
|
1526 |
+
#~ msgid "Debug Options"
|
1527 |
+
#~ msgstr "Fehlersuche Optionen"
|
1528 |
|
1529 |
#~ msgid "http://wcpdfinvoices.com"
|
1530 |
#~ msgstr "http://wcpdfinvoices.com"
|
1544 |
#~ msgid "https://wordpress.org/plugins/woocommerce-pdf-invoices"
|
1545 |
#~ msgstr "https://wordpress.org/plugins/woocommerce-pdf-invoices"
|
1546 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1547 |
#~ msgid "Something went wrong."
|
1548 |
#~ msgstr "Leider ist ein Fehler aufgetreten."
|
1549 |
|
1769 |
#~ msgid "Start all over on the first of January."
|
1770 |
#~ msgstr "Am ersten Januar alles neu starten."
|
1771 |
|
1772 |
+
#~ msgid "Premium Options"
|
1773 |
+
#~ msgstr "Premium Optionen"
|
1774 |
+
|
1775 |
+
#~ msgid "Enter your activation email from %s."
|
1776 |
+
#~ msgstr "Die Aktivierungs-E-Mailadrese von %s."
|
1777 |
+
|
1778 |
+
#~ msgid ""
|
1779 |
+
#~ "Something went wrong with the activation of your license. Contact the "
|
1780 |
+
#~ "author for support."
|
1781 |
+
#~ msgstr ""
|
1782 |
+
#~ "Bei der Aktivierung der Lizenz ist etwas schief gelaufen. Für "
|
1783 |
+
#~ "Unterstützung den Autoren kontaktieren."
|
1784 |
+
|
1785 |
+
#~ msgid "Subtotal %s"
|
1786 |
+
#~ msgstr "Zwischensumme %s"
|
1787 |
+
|
1788 |
+
#~ msgid "Discount %s"
|
1789 |
+
#~ msgstr "Rabatt %s"
|
1790 |
+
|
1791 |
+
#~ msgid "Shipping %s"
|
1792 |
+
#~ msgstr "Versand %s"
|
1793 |
+
|
1794 |
+
#~ msgid "%1$s %2$s"
|
1795 |
+
#~ msgstr "%1$s %2$s"
|
1796 |
+
|
1797 |
+
#~ msgid "Total %s"
|
1798 |
+
#~ msgstr "Summe: %s"
|
1799 |
+
|
1800 |
+
#~ msgid "Price"
|
1801 |
+
#~ msgstr "Preis"
|
1802 |
+
|
1803 |
+
#~ msgid "Date: %s"
|
1804 |
+
#~ msgstr "Datum: %s"
|
1805 |
+
|
1806 |
+
#~ msgid "Invoice #: %s"
|
1807 |
+
#~ msgstr "Rechnung: %s"
|
1808 |
+
|
1809 |
+
#~ msgid "Invoice Date: %s"
|
1810 |
+
#~ msgstr "Rechnungsdatum: %s"
|
1811 |
+
|
1812 |
+
#~ msgid "Order #: %s"
|
1813 |
+
#~ msgstr "Bestellung: %s"
|
1814 |
+
|
1815 |
+
#~ msgid "Payment Method: %s"
|
1816 |
+
#~ msgstr "Zahlungsart: %s"
|
1817 |
+
|
1818 |
+
#~ msgid "Ship to"
|
1819 |
+
#~ msgstr "Liefern an"
|
1820 |
+
|
1821 |
+
#, fuzzy
|
1822 |
+
#~| msgid "WooCommerce PDF Invoices Premium"
|
1823 |
+
#~ msgid "WooCommerce PDF Invoices"
|
1824 |
+
#~ msgstr "WooCommerce PDF Rechnungen Premium"
|
1825 |
+
|
1826 |
+
#~ msgid "Inactive"
|
1827 |
+
#~ msgstr "Inaktiv"
|
1828 |
+
|
1829 |
+
#~ msgid "Active"
|
1830 |
+
#~ msgstr "Aktiviert"
|
1831 |
+
|
1832 |
+
#~ msgid "Cancelled"
|
1833 |
+
#~ msgstr "Storniert/Abgebrochen"
|
1834 |
+
|
1835 |
+
#~ msgid "SKU:"
|
1836 |
+
#~ msgstr "Artikelnummer:"
|
1837 |
+
|
1838 |
#, fuzzy
|
1839 |
#~| msgid "Send customer invoice automatically to your supplier(s)."
|
1840 |
#~ msgid "Send customer invoices directly to suppliers and others."
|
1841 |
+
#~ msgstr "Sendet die Kundenrechnung automatisch an den Lieferanten."
|
1842 |
|
1843 |
#, fuzzy
|
1844 |
+
#~| msgid "Line item columns"
|
1845 |
#~ msgid "Visible Columns"
|
1846 |
+
#~ msgstr "Belegpositionen Spalten"
|
1847 |
|
1848 |
#, fuzzy
|
1849 |
#~| msgid "Invoice to"
|
1856 |
#~ msgstr "Rechnung:"
|
1857 |
|
1858 |
#, fuzzy
|
1859 |
+
#~| msgid "Completed order"
|
1860 |
#~ msgid "Completed Renewal Order"
|
1861 |
#~ msgstr "Bestellung fertiggestellt"
|
1862 |
|
1863 |
#, fuzzy
|
1864 |
+
#~| msgid "Customer invoice"
|
1865 |
#~ msgid "Customer Renewal Invoice"
|
1866 |
#~ msgstr "Kundenrechnung"
|
1867 |
|
1868 |
#, fuzzy
|
1869 |
+
#~| msgid ""
|
1870 |
+
#~| "Generate global invoices on Orders page by selecting multiple orders and "
|
1871 |
+
#~| "applying action or let customers generate periodically from My Account "
|
1872 |
+
#~| "page. <strong>Global invoices are only supported when using the micro "
|
1873 |
+
#~| "template!</strong>"
|
1874 |
#~ msgid ""
|
1875 |
#~ "Generate global invoices on Orders page by selecting multiple orders and "
|
1876 |
#~ "applying action or let customers generate periodically from My Account "
|
1877 |
#~ "page."
|
1878 |
#~ msgstr ""
|
1879 |
+
#~ "Generiert zusammengefasste Rechnungen auf der Bestellseite, in dem "
|
1880 |
+
#~ "mehrere Bestellungen auswählt und verarbeitet werden oder lässt Kunden "
|
1881 |
+
#~ "regelmäßig von der Seite \"Mein Konto\" Rechnungen generieren. "
|
1882 |
+
#~ "<strong>Allgemeine Rechnungen werden nur bei der Verwendung der "
|
1883 |
+
#~ "Mikrovorlage unterstützt!</strong>"
|
1884 |
|
1885 |
#, fuzzy
|
1886 |
+
#~| msgid "Enable if you aren't able to create an invoice."
|
1887 |
#~ msgid "Enable mPDF debugging if you aren't able to create an invoice."
|
1888 |
+
#~ msgstr "Nur aktivieren, wenn keine PDFs automatisch erstellt werden."
|
1889 |
|
1890 |
#, fuzzy
|
1891 |
#~| msgid "Version: %s"
|
1898 |
#~ "Enter your license key from <a href=\"http://wcpdfinvoices.com"
|
1899 |
#~ "\">wcpdfinvoices.com</a> to receive updates."
|
1900 |
#~ msgstr ""
|
1901 |
+
#~ "Hier den Lizenzschlüssel von %s eingeben, um Aktualisierungen zu erhalten."
|
|
|
1902 |
|
1903 |
#, fuzzy
|
1904 |
+
#~| msgid "Let customers generate a global invoice from their account"
|
1905 |
#~ msgid ""
|
1906 |
#~ "Enable customer generation<br/><div class=\"bewpi-notes\">Let customers "
|
1907 |
#~ "generate a global invoice from there account</div>"
|
1908 |
+
#~ msgstr ""
|
1909 |
+
#~ "Kunden sollen eine Allgemeine Rechnung in ihrem Konto generieren können"
|
1910 |
|
1911 |
#, fuzzy
|
1912 |
+
#~| msgid "Invoice Number Options"
|
1913 |
#~ msgid "These are the invoice number options."
|
1914 |
+
#~ msgstr "Rechnungsnummer Optionen"
|
1915 |
|
1916 |
#, fuzzy
|
1917 |
#~| msgid "Prefix"
|
1929 |
#~ msgstr "Rechnung: %s"
|
1930 |
|
1931 |
#, fuzzy
|
1932 |
+
#~| msgid "Visible in big colored bar directly after invoice total."
|
1933 |
#~ msgid "Displayed in big colored bar directly after invoice total."
|
1934 |
+
#~ msgstr ""
|
1935 |
+
#~ "Sichtbar in einem großem farbigen Balken, direkt nach der Rechnungssumme."
|
1936 |
|
1937 |
#, fuzzy
|
1938 |
+
#~| msgid ""
|
1939 |
+
#~| "Visible below customer notes and above footer. Want to attach additional "
|
1940 |
+
#~| "pages to the invoice? Take a look at <a href=\"%1$s\">%2$s</a> plugin."
|
1941 |
#~ msgid ""
|
1942 |
#~ "Displayed below customer notes and above footer. Want to attach "
|
1943 |
#~ "additional pages to the invoice? Take a look at the <a href=\"%s"
|
1944 |
#~ "\">Premium</a> plugin."
|
1945 |
#~ msgstr ""
|
1946 |
+
#~ "Sichtbar unter den Kundennotizen und über der Fußzeile. Um zusätzliche "
|
1947 |
+
#~ "Seiten zur Rechnung anzuhängen wird die <a href=\"%1$s\">%2$s </a> "
|
1948 |
+
#~ "Erweiterung benötigt."
|
1949 |
|
1950 |
#, fuzzy
|
1951 |
+
#~| msgid "Interface Options"
|
1952 |
#~ msgid "Attachment Options"
|
1953 |
#~ msgstr "Einstellungen zur Benutzeroberfläche"
|
1954 |
|
1955 |
#, fuzzy
|
1956 |
+
#~| msgid "Change the name of the invoice."
|
1957 |
#~ msgid "Attach a PDF to the invoice."
|
1958 |
+
#~ msgstr "Bezeichnung der Rechnung."
|
1959 |
|
1960 |
#, fuzzy
|
1961 |
#~| msgid "Remove"
|
1962 |
#~ msgid "Remove logo"
|
1963 |
+
#~ msgstr "Löschen"
|
1964 |
|
1965 |
#, fuzzy
|
1966 |
#~| msgid "Attach to Emails"
|
1968 |
#~ msgstr "An E-Mails anfügen"
|
1969 |
|
1970 |
#, fuzzy
|
1971 |
+
#~| msgid "Processing order"
|
1972 |
#~ msgid "Processing Renewal Order"
|
1973 |
#~ msgstr "Bestellung in Bearbeitung"
|
1974 |
|
1988 |
#~ msgstr "An E-Mails anfügen"
|
1989 |
|
1990 |
#, fuzzy
|
1991 |
+
#~| msgid "Enable download from my account"
|
1992 |
#~ msgid "Enable download from account"
|
1993 |
+
#~ msgstr "Herunterladen über „Mein Konto“-Seite aktivieren"
|
1994 |
|
1995 |
#, fuzzy
|
1996 |
+
#~| msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1997 |
#~ msgid "Get your account from your Email It In %suser account%s."
|
1998 |
+
#~ msgstr "Neues <a href=\"%2$s\">%1$s</a> Benutzerkonto erstellen."
|
|
|
1999 |
|
2000 |
#, fuzzy
|
2001 |
+
#~| msgid ""
|
2002 |
+
#~| "Sign-up at <a href=\"%1$s\">Email It In</a> to send invoices to your "
|
2003 |
+
#~| "Dropbox, OneDrive, Google Drive or Egnyte and enter your account below."
|
2004 |
#~ msgid ""
|
2005 |
#~ "Signup at %s to send invoices to your Dropbox, OneDrive, Google Drive or "
|
2006 |
#~ "Egnyte and enter your account below."
|
2007 |
#~ msgstr ""
|
2008 |
+
#~ "Bei <a href=\"%1$s\">Email It In</a> an, um Rechnungen an Dropbox, "
|
2009 |
+
#~ "OneDrive, Google Drive oder Egnyte zu schicken."
|
|
|
2010 |
|
2011 |
#, fuzzy
|
2012 |
#~| msgid "<a href=\"%s\">Format</a> of invoice date and order date."
|
2014 |
#~ msgstr "<a href=\"%s\">Format</a> von Rechnungsdatum und Bestelldatum."
|
2015 |
|
2016 |
#, fuzzy
|
2017 |
+
#~| msgid "<b>Note:</b> %s is required and slashes aren't supported."
|
2018 |
#~ msgid ""
|
2019 |
#~ "Allowed placeholders: %s %s %s %s %s %s.<br/>%sNote:%s %s is required and "
|
2020 |
#~ "slashes aren't supported."
|
2021 |
#~ msgstr ""
|
2022 |
+
#~ "<b>Hinweis:</b> %s sind erforderlich und Schrägstriche werden nicht "
|
2023 |
#~ "unterstützt."
|
2024 |
|
2025 |
#, fuzzy
|
2026 |
+
#~| msgid "The header will be visible on every page."
|
2027 |
#~ msgid "The header will be visible on every page. "
|
2028 |
+
#~ msgstr "Die Kopfzeile wird auf jeder Seite sichtbar sein."
|
2029 |
|
2030 |
#, fuzzy
|
2031 |
#~| msgid "Invalid request"
|
2033 |
#~ msgstr "Ungültige Anfrage"
|
2034 |
|
2035 |
#, fuzzy
|
2036 |
+
#~| msgid ""
|
2037 |
+
#~| "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
2038 |
+
#~| "<a href=\"%s\">★★★★★</a> rating. A huge thank you in advance!"
|
2039 |
#~ msgid ""
|
2040 |
#~ "If you like <strong>WooCommerce PDF Invoices</strong> please leave us a "
|
2041 |
#~ "%s★★★★★%s rating. A huge thank you in advance!"
|
2042 |
#~ msgstr ""
|
2043 |
+
#~ "Über eine <a href=\"%s\">★★★★★</a> Bewertung für <strong>WooCommerce PDF-"
|
2044 |
+
#~ "Rechnungen</strong> würden wir uns freuen. Vielen Dank im Voraus!"
|
2045 |
|
2046 |
#, fuzzy
|
2047 |
#~| msgid "View invoice"
|
2054 |
#~ msgstr "Rechnung generieren"
|
2055 |
|
2056 |
#, fuzzy
|
2057 |
+
#~| msgid ""
|
2058 |
+
#~| "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
2059 |
#~ msgid ""
|
2060 |
#~ "Compatible with <a href=\"%s\">WooCommerce Subscriptions</a> plugin "
|
2061 |
#~ "emails."
|
2062 |
+
#~ msgstr "Anhängen an die <a href=\"%s\">WooCommerce Abonnement</a> E-Mails."
|
|
|
2063 |
|
2064 |
#, fuzzy
|
2065 |
+
#~| msgid ""
|
2066 |
+
#~| "We will never ask for donations, but to guarantee future development, we "
|
2067 |
+
#~| "do need your support. Please show us your appreciation by leaving a <a "
|
2068 |
+
#~| "href=\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
2069 |
#~ msgid ""
|
2070 |
#~ "We will never ask for donations, but to garantee future development, we "
|
2071 |
#~ "do need your support. Please show us your appreciation by leaving a <a "
|
2074 |
#~ "\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\">works</a>."
|
2075 |
#~ msgstr ""
|
2076 |
#~ "Wir werden nie um Spenden bitten, aber um die zukünftige Entwicklung zu "
|
2077 |
+
#~ "gewährleisten, brauchen wir Unterstützung. Wir bitte, eine <a href=\"%1$s"
|
2078 |
+
#~ "\" >★★★★★</a>-Bewertung zu hinterlassen und für <ein href=\"%2$s"
|
2079 |
+
#~ "\">funktioniert</a> stimmen."
|
2080 |
|
2081 |
#, fuzzy
|
2082 |
+
#~| msgid "The footer will be visible on every page."
|
2083 |
#~ msgid "The footer will be visible on every page. "
|
2084 |
#~ msgstr "Die Fußzeile wird auf jeder Seite sichtbar sein."
|
2085 |
|
lang/woocommerce-pdf-invoices-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -96,7 +96,7 @@ msgstr "Activo"
|
|
96 |
|
97 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
98 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
99 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
100 |
msgid "Premium"
|
101 |
msgstr "Premium"
|
102 |
|
@@ -217,7 +217,7 @@ msgstr ""
|
|
217 |
"In. Las direcciones de e-mail deben estar separadas por comas."
|
218 |
|
219 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
220 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
221 |
msgid "Attach to Emails"
|
222 |
msgstr "Adjuntar a e-mails"
|
223 |
|
@@ -396,12 +396,12 @@ msgid "Global invoice successfully generated!"
|
|
396 |
msgstr "¡Factura global creada con éxito! "
|
397 |
|
398 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
399 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
400 |
msgid "View invoice"
|
401 |
msgstr "Ver factura"
|
402 |
|
403 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
404 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
405 |
msgid "View"
|
406 |
msgstr "Ver"
|
407 |
|
@@ -456,7 +456,7 @@ msgid "created on %1$s at %2$s"
|
|
456 |
msgstr ""
|
457 |
|
458 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
459 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
460 |
msgid "Delete"
|
461 |
msgstr ""
|
462 |
|
@@ -489,7 +489,7 @@ msgid "Credit Note #:"
|
|
489 |
msgstr "Opciones de la cabecera"
|
490 |
|
491 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
492 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
493 |
#, fuzzy
|
494 |
#| msgid "Order Date: %s"
|
495 |
msgid "Date:"
|
@@ -570,12 +570,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
570 |
msgstr "Selecciona más de un pedido para poder generar una factura global."
|
571 |
|
572 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
573 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
574 |
msgid "Yes"
|
575 |
msgstr "Sí"
|
576 |
|
577 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
578 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
579 |
msgid "No"
|
580 |
msgstr "No"
|
581 |
|
@@ -887,14 +887,14 @@ msgstr "%1$s de %2$s"
|
|
887 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
888 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
889 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
890 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
891 |
#, php-format
|
892 |
msgid "Phone: %s"
|
893 |
msgstr "Teléfono: %s"
|
894 |
|
895 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
896 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
897 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
898 |
#, fuzzy, php-format
|
899 |
#| msgid "Email subject"
|
900 |
msgid "Email: %s"
|
@@ -902,7 +902,7 @@ msgstr "Asunto del e-mail"
|
|
902 |
|
903 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
904 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
905 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
906 |
#, fuzzy, php-format
|
907 |
#| msgid "VAT 0%"
|
908 |
msgid "VAT ID: %s"
|
@@ -952,7 +952,7 @@ msgid "Order #%d - %s"
|
|
952 |
msgstr "Pedido nº %d - %s"
|
953 |
|
954 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
955 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
956 |
msgid "Settings"
|
957 |
msgstr "Ajustes"
|
958 |
|
@@ -982,17 +982,17 @@ msgstr "Envío:"
|
|
982 |
msgid "Total:"
|
983 |
msgstr "Total:"
|
984 |
|
985 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
986 |
#, php-format
|
987 |
msgid "VAT Number: %s"
|
988 |
msgstr "VAT Number: %s"
|
989 |
|
990 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
991 |
#, php-format
|
992 |
msgid "Purchase Order Number: %s"
|
993 |
msgstr "Comprar Pedido Número: %s"
|
994 |
|
995 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
996 |
#, php-format
|
997 |
msgid "%s of %s"
|
998 |
msgstr "%s de %s"
|
@@ -1010,7 +1010,7 @@ msgstr "Plantilla"
|
|
1010 |
|
1011 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
1012 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
1013 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1014 |
msgid "Debug"
|
1015 |
msgstr ""
|
1016 |
|
@@ -1113,35 +1113,31 @@ msgstr ""
|
|
1113 |
msgid "Interface Options"
|
1114 |
msgstr "Opciones de interfaz"
|
1115 |
|
1116 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1117 |
-
msgid "Debug Options"
|
1118 |
-
msgstr "Opciones de Debug"
|
1119 |
-
|
1120 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1121 |
msgid "New order"
|
1122 |
msgstr "Nuevo pedido"
|
1123 |
|
1124 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1125 |
msgid "Order on-hold"
|
1126 |
msgstr "Pedido en espera"
|
1127 |
|
1128 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1129 |
msgid "Processing order"
|
1130 |
msgstr "Procesando el pedido."
|
1131 |
|
1132 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1133 |
msgid "Completed order"
|
1134 |
msgstr "Pedido completado"
|
1135 |
|
1136 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1137 |
msgid "Customer invoice"
|
1138 |
msgstr "Factura de Cliente"
|
1139 |
|
1140 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1141 |
msgid "Disable for free products"
|
1142 |
msgstr "Desactivar para productos gratuitos"
|
1143 |
|
1144 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1145 |
msgid ""
|
1146 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1147 |
"products."
|
@@ -1149,23 +1145,23 @@ msgstr ""
|
|
1149 |
"Saltarse la generación de facturas PDF para pedidos que sólo contienen "
|
1150 |
"productos gratuitos."
|
1151 |
|
1152 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1153 |
msgid "View PDF"
|
1154 |
msgstr "Ver PDF"
|
1155 |
|
1156 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1157 |
msgid "Download"
|
1158 |
msgstr "Descargar"
|
1159 |
|
1160 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1161 |
msgid "Open in new browser tab/window"
|
1162 |
msgstr "Abrir en una nueva ventana/pestaña del navegador"
|
1163 |
|
1164 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1165 |
msgid "Enable download from my account"
|
1166 |
msgstr "Activar la descarga desde \"mi cuenta\""
|
1167 |
|
1168 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1169 |
msgid ""
|
1170 |
"By default PDF is only downloadable when order has been paid, so order "
|
1171 |
"status should be Processing or Completed."
|
@@ -1173,25 +1169,25 @@ msgstr ""
|
|
1173 |
"Por defecto el PDF es sólo descargable cuando el pedido se ha pagado, así "
|
1174 |
"que el estado del pedido debería ser Procesando o Completado."
|
1175 |
|
1176 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1177 |
msgid "Enable Email It In"
|
1178 |
msgstr "Habilitar Email It In"
|
1179 |
|
1180 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1181 |
msgid "Email It In account"
|
1182 |
msgstr "Cuenta Email it In"
|
1183 |
|
1184 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1185 |
#, php-format
|
1186 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1187 |
msgstr ""
|
1188 |
"Consigue tu cuenta desde tu <a href=\"%2$s\">cuenta de usuario</a> en %1$s."
|
1189 |
|
1190 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1191 |
msgid "Enable Invoice Number column"
|
1192 |
msgstr "Activar columna número de factura"
|
1193 |
|
1194 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1195 |
msgid "Display invoice numbers on Shop Order page."
|
1196 |
msgstr ""
|
1197 |
"Mostrar una columna con los números de factura en la página de "
|
@@ -1389,7 +1385,7 @@ msgid "Change the name of the invoice."
|
|
1389 |
msgstr "Cambia el nombre de la factura."
|
1390 |
|
1391 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1392 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1393 |
msgid "Invoice"
|
1394 |
msgstr "Factura"
|
1395 |
|
@@ -1770,51 +1766,54 @@ msgstr "Método de envío: %s"
|
|
1770 |
msgid "Product"
|
1771 |
msgstr "Producto"
|
1772 |
|
1773 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1774 |
msgid "Invoice No."
|
1775 |
msgstr "Factura nº"
|
1776 |
|
1777 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1778 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1779 |
msgid "PDF Invoice"
|
1780 |
msgstr "PDF Factura"
|
1781 |
|
1782 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1783 |
msgid "Create"
|
1784 |
msgstr "Crear"
|
1785 |
|
1786 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1787 |
#, fuzzy
|
1788 |
#| msgid "VAT Number: %s"
|
1789 |
msgid "Number:"
|
1790 |
msgstr "VAT Number: %s"
|
1791 |
|
1792 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1793 |
msgid "Sent?"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1797 |
msgid "Update"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1801 |
#, fuzzy
|
1802 |
#| msgid "Are you sure to delete the invoice?"
|
1803 |
msgid "Are you sure to delete the PDF invoice?"
|
1804 |
msgstr "¿Está seguro de eliminar la factura?"
|
1805 |
|
1806 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1807 |
#, php-format
|
1808 |
msgid ""
|
1809 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1810 |
"an accounting gap!"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1814 |
#, php-format
|
1815 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1816 |
msgstr ""
|
1817 |
|
|
|
|
|
|
|
1818 |
#~ msgid "Premium Options"
|
1819 |
#~ msgstr "Opciones Premium"
|
1820 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
96 |
|
97 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
98 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
99 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
100 |
msgid "Premium"
|
101 |
msgstr "Premium"
|
102 |
|
217 |
"In. Las direcciones de e-mail deben estar separadas por comas."
|
218 |
|
219 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
220 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
221 |
msgid "Attach to Emails"
|
222 |
msgstr "Adjuntar a e-mails"
|
223 |
|
396 |
msgstr "¡Factura global creada con éxito! "
|
397 |
|
398 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
399 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
400 |
msgid "View invoice"
|
401 |
msgstr "Ver factura"
|
402 |
|
403 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
404 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
405 |
msgid "View"
|
406 |
msgstr "Ver"
|
407 |
|
456 |
msgstr ""
|
457 |
|
458 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
459 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
460 |
msgid "Delete"
|
461 |
msgstr ""
|
462 |
|
489 |
msgstr "Opciones de la cabecera"
|
490 |
|
491 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
492 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
493 |
#, fuzzy
|
494 |
#| msgid "Order Date: %s"
|
495 |
msgid "Date:"
|
570 |
msgstr "Selecciona más de un pedido para poder generar una factura global."
|
571 |
|
572 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
573 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
574 |
msgid "Yes"
|
575 |
msgstr "Sí"
|
576 |
|
577 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
578 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
579 |
msgid "No"
|
580 |
msgstr "No"
|
581 |
|
887 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
888 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
889 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
890 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
891 |
#, php-format
|
892 |
msgid "Phone: %s"
|
893 |
msgstr "Teléfono: %s"
|
894 |
|
895 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
896 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
897 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
898 |
#, fuzzy, php-format
|
899 |
#| msgid "Email subject"
|
900 |
msgid "Email: %s"
|
902 |
|
903 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
904 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
905 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
906 |
#, fuzzy, php-format
|
907 |
#| msgid "VAT 0%"
|
908 |
msgid "VAT ID: %s"
|
952 |
msgstr "Pedido nº %d - %s"
|
953 |
|
954 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
955 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
956 |
msgid "Settings"
|
957 |
msgstr "Ajustes"
|
958 |
|
982 |
msgid "Total:"
|
983 |
msgstr "Total:"
|
984 |
|
985 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
986 |
#, php-format
|
987 |
msgid "VAT Number: %s"
|
988 |
msgstr "VAT Number: %s"
|
989 |
|
990 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
991 |
#, php-format
|
992 |
msgid "Purchase Order Number: %s"
|
993 |
msgstr "Comprar Pedido Número: %s"
|
994 |
|
995 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
996 |
#, php-format
|
997 |
msgid "%s of %s"
|
998 |
msgstr "%s de %s"
|
1010 |
|
1011 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
1012 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
1013 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
1014 |
msgid "Debug"
|
1015 |
msgstr ""
|
1016 |
|
1113 |
msgid "Interface Options"
|
1114 |
msgstr "Opciones de interfaz"
|
1115 |
|
1116 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1117 |
msgid "New order"
|
1118 |
msgstr "Nuevo pedido"
|
1119 |
|
1120 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1121 |
msgid "Order on-hold"
|
1122 |
msgstr "Pedido en espera"
|
1123 |
|
1124 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1125 |
msgid "Processing order"
|
1126 |
msgstr "Procesando el pedido."
|
1127 |
|
1128 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1129 |
msgid "Completed order"
|
1130 |
msgstr "Pedido completado"
|
1131 |
|
1132 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1133 |
msgid "Customer invoice"
|
1134 |
msgstr "Factura de Cliente"
|
1135 |
|
1136 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1137 |
msgid "Disable for free products"
|
1138 |
msgstr "Desactivar para productos gratuitos"
|
1139 |
|
1140 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1141 |
msgid ""
|
1142 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1143 |
"products."
|
1145 |
"Saltarse la generación de facturas PDF para pedidos que sólo contienen "
|
1146 |
"productos gratuitos."
|
1147 |
|
1148 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1149 |
msgid "View PDF"
|
1150 |
msgstr "Ver PDF"
|
1151 |
|
1152 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1153 |
msgid "Download"
|
1154 |
msgstr "Descargar"
|
1155 |
|
1156 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1157 |
msgid "Open in new browser tab/window"
|
1158 |
msgstr "Abrir en una nueva ventana/pestaña del navegador"
|
1159 |
|
1160 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1161 |
msgid "Enable download from my account"
|
1162 |
msgstr "Activar la descarga desde \"mi cuenta\""
|
1163 |
|
1164 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1165 |
msgid ""
|
1166 |
"By default PDF is only downloadable when order has been paid, so order "
|
1167 |
"status should be Processing or Completed."
|
1169 |
"Por defecto el PDF es sólo descargable cuando el pedido se ha pagado, así "
|
1170 |
"que el estado del pedido debería ser Procesando o Completado."
|
1171 |
|
1172 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1173 |
msgid "Enable Email It In"
|
1174 |
msgstr "Habilitar Email It In"
|
1175 |
|
1176 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1177 |
msgid "Email It In account"
|
1178 |
msgstr "Cuenta Email it In"
|
1179 |
|
1180 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1181 |
#, php-format
|
1182 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1183 |
msgstr ""
|
1184 |
"Consigue tu cuenta desde tu <a href=\"%2$s\">cuenta de usuario</a> en %1$s."
|
1185 |
|
1186 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1187 |
msgid "Enable Invoice Number column"
|
1188 |
msgstr "Activar columna número de factura"
|
1189 |
|
1190 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1191 |
msgid "Display invoice numbers on Shop Order page."
|
1192 |
msgstr ""
|
1193 |
"Mostrar una columna con los números de factura en la página de "
|
1385 |
msgstr "Cambia el nombre de la factura."
|
1386 |
|
1387 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1388 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1389 |
msgid "Invoice"
|
1390 |
msgstr "Factura"
|
1391 |
|
1766 |
msgid "Product"
|
1767 |
msgstr "Producto"
|
1768 |
|
1769 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1770 |
msgid "Invoice No."
|
1771 |
msgstr "Factura nº"
|
1772 |
|
1773 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1774 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1775 |
msgid "PDF Invoice"
|
1776 |
msgstr "PDF Factura"
|
1777 |
|
1778 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1779 |
msgid "Create"
|
1780 |
msgstr "Crear"
|
1781 |
|
1782 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1783 |
#, fuzzy
|
1784 |
#| msgid "VAT Number: %s"
|
1785 |
msgid "Number:"
|
1786 |
msgstr "VAT Number: %s"
|
1787 |
|
1788 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1789 |
msgid "Sent?"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1793 |
msgid "Update"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1797 |
#, fuzzy
|
1798 |
#| msgid "Are you sure to delete the invoice?"
|
1799 |
msgid "Are you sure to delete the PDF invoice?"
|
1800 |
msgstr "¿Está seguro de eliminar la factura?"
|
1801 |
|
1802 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1803 |
#, php-format
|
1804 |
msgid ""
|
1805 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1806 |
"an accounting gap!"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1810 |
#, php-format
|
1811 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#~ msgid "Debug Options"
|
1815 |
+
#~ msgstr "Opciones de Debug"
|
1816 |
+
|
1817 |
#~ msgid "Premium Options"
|
1818 |
#~ msgstr "Opciones Premium"
|
1819 |
|
lang/woocommerce-pdf-invoices-et.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
"Last-Translator: Jüri Laur <jyri@jyrilaur.com>\n"
|
13 |
"Language-Team: Jüri Laur\n"
|
14 |
"Language: et\n"
|
@@ -83,7 +83,7 @@ msgstr ""
|
|
83 |
|
84 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
86 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
87 |
msgid "Premium"
|
88 |
msgstr "Premium"
|
89 |
|
@@ -198,7 +198,7 @@ msgid ""
|
|
198 |
msgstr ""
|
199 |
|
200 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
201 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
202 |
msgid "Attach to Emails"
|
203 |
msgstr ""
|
204 |
|
@@ -367,12 +367,12 @@ msgid "Global invoice successfully generated!"
|
|
367 |
msgstr ""
|
368 |
|
369 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
370 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
371 |
msgid "View invoice"
|
372 |
msgstr "Vaata arvet"
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
376 |
msgid "View"
|
377 |
msgstr "Vaata"
|
378 |
|
@@ -423,7 +423,7 @@ msgid "created on %1$s at %2$s"
|
|
423 |
msgstr ""
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
426 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
427 |
msgid "Delete"
|
428 |
msgstr ""
|
429 |
|
@@ -454,7 +454,7 @@ msgid "Credit Note #:"
|
|
454 |
msgstr "Päise seaded"
|
455 |
|
456 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
457 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
458 |
#, fuzzy
|
459 |
#| msgid "Order Date: %s"
|
460 |
msgid "Date:"
|
@@ -531,12 +531,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
@@ -829,14 +829,14 @@ msgstr ""
|
|
829 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
831 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
832 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
833 |
#, php-format
|
834 |
msgid "Phone: %s"
|
835 |
msgstr "Telefon: %s"
|
836 |
|
837 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
838 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
839 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
840 |
#, fuzzy, php-format
|
841 |
#| msgid "Email us"
|
842 |
msgid "Email: %s"
|
@@ -844,7 +844,7 @@ msgstr "Kirjuta meile"
|
|
844 |
|
845 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
847 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
848 |
#, fuzzy, php-format
|
849 |
#| msgid "VAT Number: %s"
|
850 |
msgid "VAT ID: %s"
|
@@ -894,7 +894,7 @@ msgid "Order #%d - %s"
|
|
894 |
msgstr "Tellimus #%d - %s"
|
895 |
|
896 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
897 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
898 |
msgid "Settings"
|
899 |
msgstr "Seaded"
|
900 |
|
@@ -923,17 +923,17 @@ msgstr ""
|
|
923 |
msgid "Total:"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
927 |
#, php-format
|
928 |
msgid "VAT Number: %s"
|
929 |
msgstr "KMKR nr: %s"
|
930 |
|
931 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
932 |
#, php-format
|
933 |
msgid "Purchase Order Number: %s"
|
934 |
msgstr "Ostukorralduse number: %s"
|
935 |
|
936 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
937 |
#, php-format
|
938 |
msgid "%s of %s"
|
939 |
msgstr "Lehekülg %s /%s"
|
@@ -951,7 +951,7 @@ msgstr "Kujundus"
|
|
951 |
|
952 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
953 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
954 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
955 |
msgid "Debug"
|
956 |
msgstr ""
|
957 |
|
@@ -1028,80 +1028,76 @@ msgstr ""
|
|
1028 |
msgid "Interface Options"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1032 |
-
msgid "Debug Options"
|
1033 |
-
msgstr "Debug seaded"
|
1034 |
-
|
1035 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1036 |
msgid "New order"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1040 |
msgid "Order on-hold"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1044 |
msgid "Processing order"
|
1045 |
msgstr "Töötlen tellimust"
|
1046 |
|
1047 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1048 |
msgid "Completed order"
|
1049 |
msgstr "Täidetud tellimus"
|
1050 |
|
1051 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1052 |
msgid "Customer invoice"
|
1053 |
msgstr "Kliendi arve"
|
1054 |
|
1055 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1056 |
msgid "Disable for free products"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1060 |
msgid ""
|
1061 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1062 |
"products."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1066 |
msgid "View PDF"
|
1067 |
msgstr "Vaata PDF’i"
|
1068 |
|
1069 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1070 |
msgid "Download"
|
1071 |
msgstr "Lae alla"
|
1072 |
|
1073 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1074 |
msgid "Open in new browser tab/window"
|
1075 |
msgstr "Ava uues brauseri tabis/aknas"
|
1076 |
|
1077 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1078 |
msgid "Enable download from my account"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1082 |
msgid ""
|
1083 |
"By default PDF is only downloadable when order has been paid, so order "
|
1084 |
"status should be Processing or Completed."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1088 |
msgid "Enable Email It In"
|
1089 |
msgstr "Luba Email It In"
|
1090 |
|
1091 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1092 |
msgid "Email It In account"
|
1093 |
msgstr "Email It In konto"
|
1094 |
|
1095 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1096 |
#, php-format
|
1097 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1101 |
msgid "Enable Invoice Number column"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1105 |
msgid "Display invoice numbers on Shop Order page."
|
1106 |
msgstr ""
|
1107 |
|
@@ -1285,7 +1281,7 @@ msgid "Change the name of the invoice."
|
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1288 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1289 |
msgid "Invoice"
|
1290 |
msgstr "Arve"
|
1291 |
|
@@ -1628,51 +1624,54 @@ msgstr ""
|
|
1628 |
msgid "Product"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1632 |
msgid "Invoice No."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1636 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1637 |
msgid "PDF Invoice"
|
1638 |
msgstr "PDF Arve"
|
1639 |
|
1640 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1641 |
msgid "Create"
|
1642 |
msgstr "Loo"
|
1643 |
|
1644 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1645 |
#, fuzzy
|
1646 |
#| msgid "VAT Number: %s"
|
1647 |
msgid "Number:"
|
1648 |
msgstr "KMKR nr: %s"
|
1649 |
|
1650 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1651 |
msgid "Sent?"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1655 |
msgid "Update"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1659 |
#, fuzzy
|
1660 |
#| msgid "Are you sure to delete the invoice?"
|
1661 |
msgid "Are you sure to delete the PDF invoice?"
|
1662 |
msgstr "Oled sa kindel, et soovid arvet kustutada?"
|
1663 |
|
1664 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1665 |
#, php-format
|
1666 |
msgid ""
|
1667 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1668 |
"an accounting gap!"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1672 |
#, php-format
|
1673 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1674 |
msgstr ""
|
1675 |
|
|
|
|
|
|
|
1676 |
#, fuzzy
|
1677 |
#~| msgid "Subtotal"
|
1678 |
#~ msgid "Subtotal %s"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
11 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
12 |
"Last-Translator: Jüri Laur <jyri@jyrilaur.com>\n"
|
13 |
"Language-Team: Jüri Laur\n"
|
14 |
"Language: et\n"
|
83 |
|
84 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
86 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
87 |
msgid "Premium"
|
88 |
msgstr "Premium"
|
89 |
|
198 |
msgstr ""
|
199 |
|
200 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
201 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
202 |
msgid "Attach to Emails"
|
203 |
msgstr ""
|
204 |
|
367 |
msgstr ""
|
368 |
|
369 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
370 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
371 |
msgid "View invoice"
|
372 |
msgstr "Vaata arvet"
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
376 |
msgid "View"
|
377 |
msgstr "Vaata"
|
378 |
|
423 |
msgstr ""
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
426 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
427 |
msgid "Delete"
|
428 |
msgstr ""
|
429 |
|
454 |
msgstr "Päise seaded"
|
455 |
|
456 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
457 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
458 |
#, fuzzy
|
459 |
#| msgid "Order Date: %s"
|
460 |
msgid "Date:"
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
829 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
831 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
832 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
833 |
#, php-format
|
834 |
msgid "Phone: %s"
|
835 |
msgstr "Telefon: %s"
|
836 |
|
837 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
838 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
839 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
840 |
#, fuzzy, php-format
|
841 |
#| msgid "Email us"
|
842 |
msgid "Email: %s"
|
844 |
|
845 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
847 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
848 |
#, fuzzy, php-format
|
849 |
#| msgid "VAT Number: %s"
|
850 |
msgid "VAT ID: %s"
|
894 |
msgstr "Tellimus #%d - %s"
|
895 |
|
896 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
897 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
898 |
msgid "Settings"
|
899 |
msgstr "Seaded"
|
900 |
|
923 |
msgid "Total:"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
927 |
#, php-format
|
928 |
msgid "VAT Number: %s"
|
929 |
msgstr "KMKR nr: %s"
|
930 |
|
931 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
932 |
#, php-format
|
933 |
msgid "Purchase Order Number: %s"
|
934 |
msgstr "Ostukorralduse number: %s"
|
935 |
|
936 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
937 |
#, php-format
|
938 |
msgid "%s of %s"
|
939 |
msgstr "Lehekülg %s /%s"
|
951 |
|
952 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
953 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
954 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
955 |
msgid "Debug"
|
956 |
msgstr ""
|
957 |
|
1028 |
msgid "Interface Options"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1032 |
msgid "New order"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1036 |
msgid "Order on-hold"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1040 |
msgid "Processing order"
|
1041 |
msgstr "Töötlen tellimust"
|
1042 |
|
1043 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1044 |
msgid "Completed order"
|
1045 |
msgstr "Täidetud tellimus"
|
1046 |
|
1047 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1048 |
msgid "Customer invoice"
|
1049 |
msgstr "Kliendi arve"
|
1050 |
|
1051 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1052 |
msgid "Disable for free products"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1056 |
msgid ""
|
1057 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1058 |
"products."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1062 |
msgid "View PDF"
|
1063 |
msgstr "Vaata PDF’i"
|
1064 |
|
1065 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1066 |
msgid "Download"
|
1067 |
msgstr "Lae alla"
|
1068 |
|
1069 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1070 |
msgid "Open in new browser tab/window"
|
1071 |
msgstr "Ava uues brauseri tabis/aknas"
|
1072 |
|
1073 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1074 |
msgid "Enable download from my account"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1078 |
msgid ""
|
1079 |
"By default PDF is only downloadable when order has been paid, so order "
|
1080 |
"status should be Processing or Completed."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1084 |
msgid "Enable Email It In"
|
1085 |
msgstr "Luba Email It In"
|
1086 |
|
1087 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1088 |
msgid "Email It In account"
|
1089 |
msgstr "Email It In konto"
|
1090 |
|
1091 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1092 |
#, php-format
|
1093 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1097 |
msgid "Enable Invoice Number column"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1101 |
msgid "Display invoice numbers on Shop Order page."
|
1102 |
msgstr ""
|
1103 |
|
1281 |
msgstr ""
|
1282 |
|
1283 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1284 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1285 |
msgid "Invoice"
|
1286 |
msgstr "Arve"
|
1287 |
|
1624 |
msgid "Product"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1628 |
msgid "Invoice No."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1632 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1633 |
msgid "PDF Invoice"
|
1634 |
msgstr "PDF Arve"
|
1635 |
|
1636 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1637 |
msgid "Create"
|
1638 |
msgstr "Loo"
|
1639 |
|
1640 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1641 |
#, fuzzy
|
1642 |
#| msgid "VAT Number: %s"
|
1643 |
msgid "Number:"
|
1644 |
msgstr "KMKR nr: %s"
|
1645 |
|
1646 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1647 |
msgid "Sent?"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1651 |
msgid "Update"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1655 |
#, fuzzy
|
1656 |
#| msgid "Are you sure to delete the invoice?"
|
1657 |
msgid "Are you sure to delete the PDF invoice?"
|
1658 |
msgstr "Oled sa kindel, et soovid arvet kustutada?"
|
1659 |
|
1660 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1661 |
#, php-format
|
1662 |
msgid ""
|
1663 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1664 |
"an accounting gap!"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1668 |
#, php-format
|
1669 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#~ msgid "Debug Options"
|
1673 |
+
#~ msgstr "Debug seaded"
|
1674 |
+
|
1675 |
#, fuzzy
|
1676 |
#~| msgid "Subtotal"
|
1677 |
#~ msgid "Subtotal %s"
|
lang/woocommerce-pdf-invoices-fr_FR.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: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: Nicolas Bernier <nicolas.bernier@synagila.com>\n"
|
8 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -91,7 +91,7 @@ msgstr "Actif"
|
|
91 |
|
92 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
93 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
94 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
95 |
msgid "Premium"
|
96 |
msgstr "Premium"
|
97 |
|
@@ -214,7 +214,7 @@ msgstr ""
|
|
214 |
"adresses électroniques doivent être séparées par des virgules."
|
215 |
|
216 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
217 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
218 |
msgid "Attach to Emails"
|
219 |
msgstr ""
|
220 |
|
@@ -388,12 +388,12 @@ msgid "Global invoice successfully generated!"
|
|
388 |
msgstr "facture globale générée avec succès ! "
|
389 |
|
390 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
391 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
392 |
msgid "View invoice"
|
393 |
msgstr " Voir la facture"
|
394 |
|
395 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
396 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
397 |
msgid "View"
|
398 |
msgstr "Voir"
|
399 |
|
@@ -444,7 +444,7 @@ msgid "created on %1$s at %2$s"
|
|
444 |
msgstr ""
|
445 |
|
446 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
447 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
448 |
msgid "Delete"
|
449 |
msgstr ""
|
450 |
|
@@ -477,7 +477,7 @@ msgid "Credit Note #:"
|
|
477 |
msgstr "Options en-tête"
|
478 |
|
479 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
480 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
481 |
#, fuzzy
|
482 |
#| msgid "Order Date: %s"
|
483 |
msgid "Date:"
|
@@ -554,12 +554,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
554 |
msgstr ""
|
555 |
|
556 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
557 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
558 |
msgid "Yes"
|
559 |
msgstr ""
|
560 |
|
561 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
562 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
563 |
msgid "No"
|
564 |
msgstr ""
|
565 |
|
@@ -864,14 +864,14 @@ msgstr ""
|
|
864 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
866 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
867 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
868 |
#, php-format
|
869 |
msgid "Phone: %s"
|
870 |
msgstr "Téléphone : %s"
|
871 |
|
872 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
873 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
874 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
875 |
#, fuzzy, php-format
|
876 |
#| msgid "Email us"
|
877 |
msgid "Email: %s"
|
@@ -879,7 +879,7 @@ msgstr "Nous envoyer un courrier électronique"
|
|
879 |
|
880 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
881 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
882 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
883 |
#, fuzzy, php-format
|
884 |
#| msgid "VAT %s"
|
885 |
msgid "VAT ID: %s"
|
@@ -929,7 +929,7 @@ msgid "Order #%d - %s"
|
|
929 |
msgstr "Commande n°%d - %s"
|
930 |
|
931 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
932 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
933 |
msgid "Settings"
|
934 |
msgstr "Réglages"
|
935 |
|
@@ -959,17 +959,17 @@ msgstr ""
|
|
959 |
msgid "Total:"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
963 |
#, php-format
|
964 |
msgid "VAT Number: %s"
|
965 |
msgstr "Numéro de TVA :%s"
|
966 |
|
967 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
968 |
#, php-format
|
969 |
msgid "Purchase Order Number: %s"
|
970 |
msgstr "Numéro de Commande : %s"
|
971 |
|
972 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
973 |
#, php-format
|
974 |
msgid "%s of %s"
|
975 |
msgstr "%s de %s"
|
@@ -987,7 +987,7 @@ msgstr "Template"
|
|
987 |
|
988 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
989 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
990 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
991 |
msgid "Debug"
|
992 |
msgstr ""
|
993 |
|
@@ -1078,80 +1078,76 @@ msgstr ""
|
|
1078 |
msgid "Interface Options"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1082 |
-
msgid "Debug Options"
|
1083 |
-
msgstr "Options de débogage"
|
1084 |
-
|
1085 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1086 |
msgid "New order"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1090 |
msgid "Order on-hold"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1094 |
msgid "Processing order"
|
1095 |
msgstr "traitement de la commande en cours"
|
1096 |
|
1097 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1098 |
msgid "Completed order"
|
1099 |
msgstr "Commande terminée"
|
1100 |
|
1101 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1102 |
msgid "Customer invoice"
|
1103 |
msgstr "Facture Client"
|
1104 |
|
1105 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1106 |
msgid "Disable for free products"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1110 |
msgid ""
|
1111 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1112 |
"products."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1116 |
msgid "View PDF"
|
1117 |
msgstr "Voir PDF"
|
1118 |
|
1119 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1120 |
msgid "Download"
|
1121 |
msgstr "Télécharger"
|
1122 |
|
1123 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1124 |
msgid "Open in new browser tab/window"
|
1125 |
msgstr "Ouvrir dans une nouvelle fenêtre/onglet"
|
1126 |
|
1127 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1128 |
msgid "Enable download from my account"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1132 |
msgid ""
|
1133 |
"By default PDF is only downloadable when order has been paid, so order "
|
1134 |
"status should be Processing or Completed."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1138 |
msgid "Enable Email It In"
|
1139 |
msgstr "Activer l'envoi Email It In"
|
1140 |
|
1141 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1142 |
msgid "Email It In account"
|
1143 |
msgstr "Compte Email It In"
|
1144 |
|
1145 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1146 |
#, php-format
|
1147 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1151 |
msgid "Enable Invoice Number column"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1155 |
msgid "Display invoice numbers on Shop Order page."
|
1156 |
msgstr ""
|
1157 |
|
@@ -1336,7 +1332,7 @@ msgid "Change the name of the invoice."
|
|
1336 |
msgstr ""
|
1337 |
|
1338 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1339 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1340 |
msgid "Invoice"
|
1341 |
msgstr "Facture"
|
1342 |
|
@@ -1682,51 +1678,54 @@ msgstr ""
|
|
1682 |
msgid "Product"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1686 |
msgid "Invoice No."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1690 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1691 |
msgid "PDF Invoice"
|
1692 |
msgstr "Facture PDF"
|
1693 |
|
1694 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1695 |
msgid "Create"
|
1696 |
msgstr "créer"
|
1697 |
|
1698 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1699 |
#, fuzzy
|
1700 |
#| msgid "VAT Number: %s"
|
1701 |
msgid "Number:"
|
1702 |
msgstr "Numéro de TVA :%s"
|
1703 |
|
1704 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1705 |
msgid "Sent?"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1713 |
#, fuzzy
|
1714 |
#| msgid "Are you sure to delete the invoice?"
|
1715 |
msgid "Are you sure to delete the PDF invoice?"
|
1716 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
1717 |
|
1718 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1719 |
#, php-format
|
1720 |
msgid ""
|
1721 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1722 |
"an accounting gap!"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1726 |
#, php-format
|
1727 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1728 |
msgstr ""
|
1729 |
|
|
|
|
|
|
|
1730 |
#~ msgid "Premium Options"
|
1731 |
#~ msgstr "Options premium"
|
1732 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: Nicolas Bernier <nicolas.bernier@synagila.com>\n"
|
8 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
9 |
"Language: fr_FR\n"
|
91 |
|
92 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
93 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
94 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
95 |
msgid "Premium"
|
96 |
msgstr "Premium"
|
97 |
|
214 |
"adresses électroniques doivent être séparées par des virgules."
|
215 |
|
216 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
217 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
218 |
msgid "Attach to Emails"
|
219 |
msgstr ""
|
220 |
|
388 |
msgstr "facture globale générée avec succès ! "
|
389 |
|
390 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
391 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
392 |
msgid "View invoice"
|
393 |
msgstr " Voir la facture"
|
394 |
|
395 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
396 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
397 |
msgid "View"
|
398 |
msgstr "Voir"
|
399 |
|
444 |
msgstr ""
|
445 |
|
446 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
447 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
448 |
msgid "Delete"
|
449 |
msgstr ""
|
450 |
|
477 |
msgstr "Options en-tête"
|
478 |
|
479 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
480 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
481 |
#, fuzzy
|
482 |
#| msgid "Order Date: %s"
|
483 |
msgid "Date:"
|
554 |
msgstr ""
|
555 |
|
556 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
557 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
558 |
msgid "Yes"
|
559 |
msgstr ""
|
560 |
|
561 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
562 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
563 |
msgid "No"
|
564 |
msgstr ""
|
565 |
|
864 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
866 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
867 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
868 |
#, php-format
|
869 |
msgid "Phone: %s"
|
870 |
msgstr "Téléphone : %s"
|
871 |
|
872 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
873 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
874 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
875 |
#, fuzzy, php-format
|
876 |
#| msgid "Email us"
|
877 |
msgid "Email: %s"
|
879 |
|
880 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
881 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
882 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
883 |
#, fuzzy, php-format
|
884 |
#| msgid "VAT %s"
|
885 |
msgid "VAT ID: %s"
|
929 |
msgstr "Commande n°%d - %s"
|
930 |
|
931 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
932 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
933 |
msgid "Settings"
|
934 |
msgstr "Réglages"
|
935 |
|
959 |
msgid "Total:"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
963 |
#, php-format
|
964 |
msgid "VAT Number: %s"
|
965 |
msgstr "Numéro de TVA :%s"
|
966 |
|
967 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
968 |
#, php-format
|
969 |
msgid "Purchase Order Number: %s"
|
970 |
msgstr "Numéro de Commande : %s"
|
971 |
|
972 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
973 |
#, php-format
|
974 |
msgid "%s of %s"
|
975 |
msgstr "%s de %s"
|
987 |
|
988 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
989 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
990 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
991 |
msgid "Debug"
|
992 |
msgstr ""
|
993 |
|
1078 |
msgid "Interface Options"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1082 |
msgid "New order"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1086 |
msgid "Order on-hold"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1090 |
msgid "Processing order"
|
1091 |
msgstr "traitement de la commande en cours"
|
1092 |
|
1093 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1094 |
msgid "Completed order"
|
1095 |
msgstr "Commande terminée"
|
1096 |
|
1097 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1098 |
msgid "Customer invoice"
|
1099 |
msgstr "Facture Client"
|
1100 |
|
1101 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1102 |
msgid "Disable for free products"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1106 |
msgid ""
|
1107 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1108 |
"products."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1112 |
msgid "View PDF"
|
1113 |
msgstr "Voir PDF"
|
1114 |
|
1115 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1116 |
msgid "Download"
|
1117 |
msgstr "Télécharger"
|
1118 |
|
1119 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1120 |
msgid "Open in new browser tab/window"
|
1121 |
msgstr "Ouvrir dans une nouvelle fenêtre/onglet"
|
1122 |
|
1123 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1124 |
msgid "Enable download from my account"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1128 |
msgid ""
|
1129 |
"By default PDF is only downloadable when order has been paid, so order "
|
1130 |
"status should be Processing or Completed."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1134 |
msgid "Enable Email It In"
|
1135 |
msgstr "Activer l'envoi Email It In"
|
1136 |
|
1137 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1138 |
msgid "Email It In account"
|
1139 |
msgstr "Compte Email It In"
|
1140 |
|
1141 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1142 |
#, php-format
|
1143 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1147 |
msgid "Enable Invoice Number column"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1151 |
msgid "Display invoice numbers on Shop Order page."
|
1152 |
msgstr ""
|
1153 |
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1335 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1336 |
msgid "Invoice"
|
1337 |
msgstr "Facture"
|
1338 |
|
1678 |
msgid "Product"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1682 |
msgid "Invoice No."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1686 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1687 |
msgid "PDF Invoice"
|
1688 |
msgstr "Facture PDF"
|
1689 |
|
1690 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1691 |
msgid "Create"
|
1692 |
msgstr "créer"
|
1693 |
|
1694 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1695 |
#, fuzzy
|
1696 |
#| msgid "VAT Number: %s"
|
1697 |
msgid "Number:"
|
1698 |
msgstr "Numéro de TVA :%s"
|
1699 |
|
1700 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1701 |
msgid "Sent?"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1705 |
msgid "Update"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1709 |
#, fuzzy
|
1710 |
#| msgid "Are you sure to delete the invoice?"
|
1711 |
msgid "Are you sure to delete the PDF invoice?"
|
1712 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
1713 |
|
1714 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1715 |
#, php-format
|
1716 |
msgid ""
|
1717 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1718 |
"an accounting gap!"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1722 |
#, php-format
|
1723 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#~ msgid "Debug Options"
|
1727 |
+
#~ msgstr "Options de débogage"
|
1728 |
+
|
1729 |
#~ msgid "Premium Options"
|
1730 |
#~ msgstr "Options premium"
|
1731 |
|
lang/woocommerce-pdf-invoices-it_IT.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: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
@@ -92,7 +92,7 @@ msgstr ""
|
|
92 |
|
93 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
94 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
95 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
96 |
msgid "Premium"
|
97 |
msgstr "Premium"
|
98 |
|
@@ -203,7 +203,7 @@ msgid ""
|
|
203 |
msgstr ""
|
204 |
|
205 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
206 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
207 |
msgid "Attach to Emails"
|
208 |
msgstr ""
|
209 |
|
@@ -372,12 +372,12 @@ msgid "Global invoice successfully generated!"
|
|
372 |
msgstr ""
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
376 |
msgid "View invoice"
|
377 |
msgstr "Vedi fattura"
|
378 |
|
379 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
380 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
381 |
msgid "View"
|
382 |
msgstr "Mostra"
|
383 |
|
@@ -428,7 +428,7 @@ msgid "created on %1$s at %2$s"
|
|
428 |
msgstr ""
|
429 |
|
430 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
431 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
432 |
msgid "Delete"
|
433 |
msgstr ""
|
434 |
|
@@ -459,7 +459,7 @@ msgid "Credit Note #:"
|
|
459 |
msgstr "Opzioni intestazione"
|
460 |
|
461 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
463 |
#, fuzzy
|
464 |
#| msgid "Order Date: %s"
|
465 |
msgid "Date:"
|
@@ -534,12 +534,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
534 |
msgstr ""
|
535 |
|
536 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
537 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
538 |
msgid "Yes"
|
539 |
msgstr ""
|
540 |
|
541 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
542 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
543 |
msgid "No"
|
544 |
msgstr ""
|
545 |
|
@@ -844,14 +844,14 @@ msgstr ""
|
|
844 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
847 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
848 |
#, php-format
|
849 |
msgid "Phone: %s"
|
850 |
msgstr "Telefono: %s"
|
851 |
|
852 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
853 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
854 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
855 |
#, fuzzy, php-format
|
856 |
#| msgid "Email us"
|
857 |
msgid "Email: %s"
|
@@ -859,7 +859,7 @@ msgstr "Mandaci una email"
|
|
859 |
|
860 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
861 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
862 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
863 |
#, php-format
|
864 |
msgid "VAT ID: %s"
|
865 |
msgstr ""
|
@@ -908,7 +908,7 @@ msgid "Order #%d - %s"
|
|
908 |
msgstr "Ordine #%d - %s"
|
909 |
|
910 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
911 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
912 |
msgid "Settings"
|
913 |
msgstr "Impostazioni"
|
914 |
|
@@ -938,17 +938,17 @@ msgstr ""
|
|
938 |
msgid "Total:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
942 |
#, php-format
|
943 |
msgid "VAT Number: %s"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
947 |
#, php-format
|
948 |
msgid "Purchase Order Number: %s"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
952 |
#, php-format
|
953 |
msgid "%s of %s"
|
954 |
msgstr ""
|
@@ -966,7 +966,7 @@ msgstr "Tema"
|
|
966 |
|
967 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
968 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
969 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
970 |
msgid "Debug"
|
971 |
msgstr ""
|
972 |
|
@@ -1051,80 +1051,76 @@ msgstr ""
|
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
-
msgid "Debug Options"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1059 |
msgid "New order"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1063 |
msgid "Order on-hold"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1067 |
msgid "Processing order"
|
1068 |
msgstr "Ordine in lavorazione"
|
1069 |
|
1070 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1071 |
msgid "Completed order"
|
1072 |
msgstr "Ordine Completato"
|
1073 |
|
1074 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1075 |
msgid "Customer invoice"
|
1076 |
msgstr "Fattura Cliente"
|
1077 |
|
1078 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1079 |
msgid "Disable for free products"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1083 |
msgid ""
|
1084 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1085 |
"products."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1089 |
msgid "View PDF"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1093 |
msgid "Download"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1097 |
msgid "Open in new browser tab/window"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1101 |
msgid "Enable download from my account"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1105 |
msgid ""
|
1106 |
"By default PDF is only downloadable when order has been paid, so order "
|
1107 |
"status should be Processing or Completed."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1111 |
msgid "Enable Email It In"
|
1112 |
msgstr "Abilita email It In"
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "Email It In account"
|
1116 |
msgstr "Conto Email It In"
|
1117 |
|
1118 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1119 |
#, php-format
|
1120 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1124 |
msgid "Enable Invoice Number column"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1128 |
msgid "Display invoice numbers on Shop Order page."
|
1129 |
msgstr ""
|
1130 |
|
@@ -1311,7 +1307,7 @@ msgid "Change the name of the invoice."
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1314 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1315 |
msgid "Invoice"
|
1316 |
msgstr "Fattura"
|
1317 |
|
@@ -1651,47 +1647,47 @@ msgstr ""
|
|
1651 |
msgid "Product"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1655 |
msgid "Invoice No."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1659 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1660 |
msgid "PDF Invoice"
|
1661 |
msgstr "PDF Invoice"
|
1662 |
|
1663 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1664 |
msgid "Create"
|
1665 |
msgstr "Crea"
|
1666 |
|
1667 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1668 |
#, fuzzy
|
1669 |
#| msgid "Order Number: %s"
|
1670 |
msgid "Number:"
|
1671 |
msgstr "Ordine Numero: %s"
|
1672 |
|
1673 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1674 |
msgid "Sent?"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1678 |
msgid "Update"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1682 |
#, fuzzy
|
1683 |
#| msgid "Are you sure to delete the invoice?"
|
1684 |
msgid "Are you sure to delete the PDF invoice?"
|
1685 |
msgstr "Sei sicuro di voler eliminare la fattura?"
|
1686 |
|
1687 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1688 |
#, php-format
|
1689 |
msgid ""
|
1690 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1691 |
"an accounting gap!"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1695 |
#, php-format
|
1696 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1697 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
92 |
|
93 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
94 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
95 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
96 |
msgid "Premium"
|
97 |
msgstr "Premium"
|
98 |
|
203 |
msgstr ""
|
204 |
|
205 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
206 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
207 |
msgid "Attach to Emails"
|
208 |
msgstr ""
|
209 |
|
372 |
msgstr ""
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
376 |
msgid "View invoice"
|
377 |
msgstr "Vedi fattura"
|
378 |
|
379 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
380 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
381 |
msgid "View"
|
382 |
msgstr "Mostra"
|
383 |
|
428 |
msgstr ""
|
429 |
|
430 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
431 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
432 |
msgid "Delete"
|
433 |
msgstr ""
|
434 |
|
459 |
msgstr "Opzioni intestazione"
|
460 |
|
461 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
462 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
463 |
#, fuzzy
|
464 |
#| msgid "Order Date: %s"
|
465 |
msgid "Date:"
|
534 |
msgstr ""
|
535 |
|
536 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
537 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
538 |
msgid "Yes"
|
539 |
msgstr ""
|
540 |
|
541 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
542 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
543 |
msgid "No"
|
544 |
msgstr ""
|
545 |
|
844 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
847 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
848 |
#, php-format
|
849 |
msgid "Phone: %s"
|
850 |
msgstr "Telefono: %s"
|
851 |
|
852 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
853 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
854 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
855 |
#, fuzzy, php-format
|
856 |
#| msgid "Email us"
|
857 |
msgid "Email: %s"
|
859 |
|
860 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
861 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
862 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
863 |
#, php-format
|
864 |
msgid "VAT ID: %s"
|
865 |
msgstr ""
|
908 |
msgstr "Ordine #%d - %s"
|
909 |
|
910 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
911 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
912 |
msgid "Settings"
|
913 |
msgstr "Impostazioni"
|
914 |
|
938 |
msgid "Total:"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
942 |
#, php-format
|
943 |
msgid "VAT Number: %s"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
947 |
#, php-format
|
948 |
msgid "Purchase Order Number: %s"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
952 |
#, php-format
|
953 |
msgid "%s of %s"
|
954 |
msgstr ""
|
966 |
|
967 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
968 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
969 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
970 |
msgid "Debug"
|
971 |
msgstr ""
|
972 |
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1055 |
msgid "New order"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1059 |
msgid "Order on-hold"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1063 |
msgid "Processing order"
|
1064 |
msgstr "Ordine in lavorazione"
|
1065 |
|
1066 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1067 |
msgid "Completed order"
|
1068 |
msgstr "Ordine Completato"
|
1069 |
|
1070 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1071 |
msgid "Customer invoice"
|
1072 |
msgstr "Fattura Cliente"
|
1073 |
|
1074 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1075 |
msgid "Disable for free products"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1079 |
msgid ""
|
1080 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1081 |
"products."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1085 |
msgid "View PDF"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1089 |
msgid "Download"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1093 |
msgid "Open in new browser tab/window"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1097 |
msgid "Enable download from my account"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1101 |
msgid ""
|
1102 |
"By default PDF is only downloadable when order has been paid, so order "
|
1103 |
"status should be Processing or Completed."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1107 |
msgid "Enable Email It In"
|
1108 |
msgstr "Abilita email It In"
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1111 |
msgid "Email It In account"
|
1112 |
msgstr "Conto Email It In"
|
1113 |
|
1114 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1115 |
#, php-format
|
1116 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1120 |
msgid "Enable Invoice Number column"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1124 |
msgid "Display invoice numbers on Shop Order page."
|
1125 |
msgstr ""
|
1126 |
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1310 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1311 |
msgid "Invoice"
|
1312 |
msgstr "Fattura"
|
1313 |
|
1647 |
msgid "Product"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1651 |
msgid "Invoice No."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1655 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1656 |
msgid "PDF Invoice"
|
1657 |
msgstr "PDF Invoice"
|
1658 |
|
1659 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1660 |
msgid "Create"
|
1661 |
msgstr "Crea"
|
1662 |
|
1663 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1664 |
#, fuzzy
|
1665 |
#| msgid "Order Number: %s"
|
1666 |
msgid "Number:"
|
1667 |
msgstr "Ordine Numero: %s"
|
1668 |
|
1669 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1670 |
msgid "Sent?"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1674 |
msgid "Update"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1678 |
#, fuzzy
|
1679 |
#| msgid "Are you sure to delete the invoice?"
|
1680 |
msgid "Are you sure to delete the PDF invoice?"
|
1681 |
msgstr "Sei sicuro di voler eliminare la fattura?"
|
1682 |
|
1683 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1684 |
#, php-format
|
1685 |
msgid ""
|
1686 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1687 |
"an accounting gap!"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1691 |
#, php-format
|
1692 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1693 |
msgstr ""
|
lang/woocommerce-pdf-invoices-lt_LT.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: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: Denisas <setasss@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: lt\n"
|
@@ -93,7 +93,7 @@ msgstr ""
|
|
93 |
|
94 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
95 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
96 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
97 |
msgid "Premium"
|
98 |
msgstr "Premium versija"
|
99 |
|
@@ -202,7 +202,7 @@ msgid ""
|
|
202 |
msgstr ""
|
203 |
|
204 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
205 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
206 |
msgid "Attach to Emails"
|
207 |
msgstr ""
|
208 |
|
@@ -371,12 +371,12 @@ msgid "Global invoice successfully generated!"
|
|
371 |
msgstr ""
|
372 |
|
373 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
374 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
375 |
msgid "View invoice"
|
376 |
msgstr "Peržiūrėti sąskaitą faktūrą"
|
377 |
|
378 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
379 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
380 |
msgid "View"
|
381 |
msgstr "Peržiūrėti"
|
382 |
|
@@ -427,7 +427,7 @@ msgid "created on %1$s at %2$s"
|
|
427 |
msgstr ""
|
428 |
|
429 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
430 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
431 |
msgid "Delete"
|
432 |
msgstr ""
|
433 |
|
@@ -458,7 +458,7 @@ msgid "Credit Note #:"
|
|
458 |
msgstr "Sąskaitos faktūros numerio nustatymai"
|
459 |
|
460 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
461 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
462 |
#, fuzzy
|
463 |
#| msgid "Order Date: %s"
|
464 |
msgid "Date:"
|
@@ -535,12 +535,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
535 |
msgstr ""
|
536 |
|
537 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
538 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
539 |
msgid "Yes"
|
540 |
msgstr ""
|
541 |
|
542 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
543 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
544 |
msgid "No"
|
545 |
msgstr ""
|
546 |
|
@@ -843,14 +843,14 @@ msgstr ""
|
|
843 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
844 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
846 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
847 |
#, php-format
|
848 |
msgid "Phone: %s"
|
849 |
msgstr "Telefonas: %s"
|
850 |
|
851 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
852 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
853 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
854 |
#, fuzzy, php-format
|
855 |
#| msgid "Email us"
|
856 |
msgid "Email: %s"
|
@@ -858,7 +858,7 @@ msgstr "Susiekite el. paštu"
|
|
858 |
|
859 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
861 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
862 |
#, php-format
|
863 |
msgid "VAT ID: %s"
|
864 |
msgstr ""
|
@@ -907,7 +907,7 @@ msgid "Order #%d - %s"
|
|
907 |
msgstr "Užsakymas #%d - %s"
|
908 |
|
909 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
910 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
911 |
msgid "Settings"
|
912 |
msgstr "Nustatymai"
|
913 |
|
@@ -937,17 +937,17 @@ msgstr ""
|
|
937 |
msgid "Total:"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
941 |
#, php-format
|
942 |
msgid "VAT Number: %s"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
946 |
#, php-format
|
947 |
msgid "Purchase Order Number: %s"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
951 |
#, php-format
|
952 |
msgid "%s of %s"
|
953 |
msgstr "%s iš %s"
|
@@ -965,7 +965,7 @@ msgstr "Šablonas"
|
|
965 |
|
966 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
967 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
968 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
969 |
msgid "Debug"
|
970 |
msgstr ""
|
971 |
|
@@ -1050,80 +1050,76 @@ msgstr ""
|
|
1050 |
msgid "Interface Options"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1054 |
-
msgid "Debug Options"
|
1055 |
-
msgstr ""
|
1056 |
-
|
1057 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1058 |
msgid "New order"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1062 |
msgid "Order on-hold"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1066 |
msgid "Processing order"
|
1067 |
msgstr "Vykdomas užsakymas"
|
1068 |
|
1069 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1070 |
msgid "Completed order"
|
1071 |
msgstr "Įvykdytas užsakymas"
|
1072 |
|
1073 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1074 |
msgid "Customer invoice"
|
1075 |
msgstr "Sąskaita pirkėjui"
|
1076 |
|
1077 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1078 |
msgid "Disable for free products"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1082 |
msgid ""
|
1083 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1084 |
"products."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1088 |
msgid "View PDF"
|
1089 |
msgstr "Peržiūrėti PDF"
|
1090 |
|
1091 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1092 |
msgid "Download"
|
1093 |
msgstr "Parsisiųsti"
|
1094 |
|
1095 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1096 |
msgid "Open in new browser tab/window"
|
1097 |
msgstr "Atverti nuorodą naujame lange / kortelėje"
|
1098 |
|
1099 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1100 |
msgid "Enable download from my account"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1104 |
msgid ""
|
1105 |
"By default PDF is only downloadable when order has been paid, so order "
|
1106 |
"status should be Processing or Completed."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1110 |
msgid "Enable Email It In"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1114 |
msgid "Email It In account"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1118 |
#, php-format
|
1119 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1123 |
msgid "Enable Invoice Number column"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1127 |
msgid "Display invoice numbers on Shop Order page."
|
1128 |
msgstr ""
|
1129 |
|
@@ -1305,7 +1301,7 @@ msgid "Change the name of the invoice."
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1308 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1309 |
msgid "Invoice"
|
1310 |
msgstr "Sąskaita"
|
1311 |
|
@@ -1641,47 +1637,47 @@ msgstr ""
|
|
1641 |
msgid "Product"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1645 |
msgid "Invoice No."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1649 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1650 |
msgid "PDF Invoice"
|
1651 |
msgstr "Sąskaita-faktūra pdf formatu"
|
1652 |
|
1653 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1654 |
msgid "Create"
|
1655 |
msgstr "Sukurti"
|
1656 |
|
1657 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1658 |
#, fuzzy
|
1659 |
#| msgid "Order Number: %s"
|
1660 |
msgid "Number:"
|
1661 |
msgstr "Užsaymo numeris: %s"
|
1662 |
|
1663 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1664 |
msgid "Sent?"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1668 |
msgid "Update"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1672 |
#, fuzzy
|
1673 |
#| msgid "Are you sure to delete the invoice?"
|
1674 |
msgid "Are you sure to delete the PDF invoice?"
|
1675 |
msgstr "Ar Jūs esate tikras, kad norite ištrinti sąskaitą faktūrą?"
|
1676 |
|
1677 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1678 |
#, php-format
|
1679 |
msgid ""
|
1680 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1681 |
"an accounting gap!"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1685 |
#, php-format
|
1686 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1687 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: Denisas <setasss@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: lt\n"
|
93 |
|
94 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
95 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
96 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
97 |
msgid "Premium"
|
98 |
msgstr "Premium versija"
|
99 |
|
202 |
msgstr ""
|
203 |
|
204 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
205 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
206 |
msgid "Attach to Emails"
|
207 |
msgstr ""
|
208 |
|
371 |
msgstr ""
|
372 |
|
373 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
374 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
375 |
msgid "View invoice"
|
376 |
msgstr "Peržiūrėti sąskaitą faktūrą"
|
377 |
|
378 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
379 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
380 |
msgid "View"
|
381 |
msgstr "Peržiūrėti"
|
382 |
|
427 |
msgstr ""
|
428 |
|
429 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
430 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
431 |
msgid "Delete"
|
432 |
msgstr ""
|
433 |
|
458 |
msgstr "Sąskaitos faktūros numerio nustatymai"
|
459 |
|
460 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
461 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
462 |
#, fuzzy
|
463 |
#| msgid "Order Date: %s"
|
464 |
msgid "Date:"
|
535 |
msgstr ""
|
536 |
|
537 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
538 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
539 |
msgid "Yes"
|
540 |
msgstr ""
|
541 |
|
542 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
543 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
544 |
msgid "No"
|
545 |
msgstr ""
|
546 |
|
843 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
844 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
846 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
847 |
#, php-format
|
848 |
msgid "Phone: %s"
|
849 |
msgstr "Telefonas: %s"
|
850 |
|
851 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
852 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
853 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
854 |
#, fuzzy, php-format
|
855 |
#| msgid "Email us"
|
856 |
msgid "Email: %s"
|
858 |
|
859 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
861 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
862 |
#, php-format
|
863 |
msgid "VAT ID: %s"
|
864 |
msgstr ""
|
907 |
msgstr "Užsakymas #%d - %s"
|
908 |
|
909 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
910 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
911 |
msgid "Settings"
|
912 |
msgstr "Nustatymai"
|
913 |
|
937 |
msgid "Total:"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
941 |
#, php-format
|
942 |
msgid "VAT Number: %s"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
946 |
#, php-format
|
947 |
msgid "Purchase Order Number: %s"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
951 |
#, php-format
|
952 |
msgid "%s of %s"
|
953 |
msgstr "%s iš %s"
|
965 |
|
966 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
967 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
968 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
969 |
msgid "Debug"
|
970 |
msgstr ""
|
971 |
|
1050 |
msgid "Interface Options"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1054 |
msgid "New order"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1058 |
msgid "Order on-hold"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1062 |
msgid "Processing order"
|
1063 |
msgstr "Vykdomas užsakymas"
|
1064 |
|
1065 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1066 |
msgid "Completed order"
|
1067 |
msgstr "Įvykdytas užsakymas"
|
1068 |
|
1069 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1070 |
msgid "Customer invoice"
|
1071 |
msgstr "Sąskaita pirkėjui"
|
1072 |
|
1073 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1074 |
msgid "Disable for free products"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1078 |
msgid ""
|
1079 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1080 |
"products."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1084 |
msgid "View PDF"
|
1085 |
msgstr "Peržiūrėti PDF"
|
1086 |
|
1087 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1088 |
msgid "Download"
|
1089 |
msgstr "Parsisiųsti"
|
1090 |
|
1091 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1092 |
msgid "Open in new browser tab/window"
|
1093 |
msgstr "Atverti nuorodą naujame lange / kortelėje"
|
1094 |
|
1095 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1096 |
msgid "Enable download from my account"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1100 |
msgid ""
|
1101 |
"By default PDF is only downloadable when order has been paid, so order "
|
1102 |
"status should be Processing or Completed."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1106 |
msgid "Enable Email It In"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1110 |
msgid "Email It In account"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1114 |
#, php-format
|
1115 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1119 |
msgid "Enable Invoice Number column"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1123 |
msgid "Display invoice numbers on Shop Order page."
|
1124 |
msgstr ""
|
1125 |
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1304 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1305 |
msgid "Invoice"
|
1306 |
msgstr "Sąskaita"
|
1307 |
|
1637 |
msgid "Product"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1641 |
msgid "Invoice No."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1645 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1646 |
msgid "PDF Invoice"
|
1647 |
msgstr "Sąskaita-faktūra pdf formatu"
|
1648 |
|
1649 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1650 |
msgid "Create"
|
1651 |
msgstr "Sukurti"
|
1652 |
|
1653 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1654 |
#, fuzzy
|
1655 |
#| msgid "Order Number: %s"
|
1656 |
msgid "Number:"
|
1657 |
msgstr "Užsaymo numeris: %s"
|
1658 |
|
1659 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1660 |
msgid "Sent?"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1664 |
msgid "Update"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1668 |
#, fuzzy
|
1669 |
#| msgid "Are you sure to delete the invoice?"
|
1670 |
msgid "Are you sure to delete the PDF invoice?"
|
1671 |
msgstr "Ar Jūs esate tikras, kad norite ištrinti sąskaitą faktūrą?"
|
1672 |
|
1673 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1674 |
#, php-format
|
1675 |
msgid ""
|
1676 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1677 |
"an accounting gap!"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1681 |
#, php-format
|
1682 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1683 |
msgstr ""
|
lang/woocommerce-pdf-invoices-nb_NO.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date: 2019-04-
|
5 |
-
"PO-Revision-Date: 2019-04-
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
@@ -90,7 +90,7 @@ msgstr "Aktiv"
|
|
90 |
|
91 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
92 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
93 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
94 |
msgid "Premium"
|
95 |
msgstr "Premium"
|
96 |
|
@@ -212,7 +212,7 @@ msgstr ""
|
|
212 |
"legge til Email It In e-post adresser. E-post adressene må skilles med komma."
|
213 |
|
214 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
215 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
216 |
msgid "Attach to Emails"
|
217 |
msgstr ""
|
218 |
|
@@ -385,12 +385,12 @@ msgid "Global invoice successfully generated!"
|
|
385 |
msgstr "Global faktura generert! "
|
386 |
|
387 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
388 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
389 |
msgid "View invoice"
|
390 |
msgstr "Vis faktura"
|
391 |
|
392 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
393 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
394 |
msgid "View"
|
395 |
msgstr "Vis"
|
396 |
|
@@ -441,7 +441,7 @@ msgid "created on %1$s at %2$s"
|
|
441 |
msgstr ""
|
442 |
|
443 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
444 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
445 |
msgid "Delete"
|
446 |
msgstr ""
|
447 |
|
@@ -474,7 +474,7 @@ msgid "Credit Note #:"
|
|
474 |
msgstr "Overskriftsvalg"
|
475 |
|
476 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
477 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
478 |
#, fuzzy
|
479 |
#| msgid "Order Date: %s"
|
480 |
msgid "Date:"
|
@@ -551,12 +551,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
551 |
msgstr ""
|
552 |
|
553 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
554 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
555 |
msgid "Yes"
|
556 |
msgstr ""
|
557 |
|
558 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
559 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
560 |
msgid "No"
|
561 |
msgstr ""
|
562 |
|
@@ -863,14 +863,14 @@ msgstr ""
|
|
863 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
864 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
866 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
867 |
#, php-format
|
868 |
msgid "Phone: %s"
|
869 |
msgstr "Telefon: %s"
|
870 |
|
871 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
872 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
873 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
874 |
#, fuzzy, php-format
|
875 |
#| msgid "Email us"
|
876 |
msgid "Email: %s"
|
@@ -878,7 +878,7 @@ msgstr "Send oss en e-post"
|
|
878 |
|
879 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
880 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
881 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
882 |
#, fuzzy, php-format
|
883 |
#| msgid "VAT %s"
|
884 |
msgid "VAT ID: %s"
|
@@ -928,7 +928,7 @@ msgid "Order #%d - %s"
|
|
928 |
msgstr "Ordre #%d - %s"
|
929 |
|
930 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
931 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
932 |
msgid "Settings"
|
933 |
msgstr "Innstillinger"
|
934 |
|
@@ -958,17 +958,17 @@ msgstr ""
|
|
958 |
msgid "Total:"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
962 |
#, php-format
|
963 |
msgid "VAT Number: %s"
|
964 |
msgstr "MVA nummber: %s"
|
965 |
|
966 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
967 |
#, php-format
|
968 |
msgid "Purchase Order Number: %s"
|
969 |
msgstr "Ordrenummer: %s"
|
970 |
|
971 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
972 |
#, php-format
|
973 |
msgid "%s of %s"
|
974 |
msgstr "%s av %s"
|
@@ -986,7 +986,7 @@ msgstr "Mal"
|
|
986 |
|
987 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
988 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
989 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
990 |
msgid "Debug"
|
991 |
msgstr ""
|
992 |
|
@@ -1077,80 +1077,76 @@ msgstr ""
|
|
1077 |
msgid "Interface Options"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1081 |
-
msgid "Debug Options"
|
1082 |
-
msgstr "Feilsøkingsalternativer"
|
1083 |
-
|
1084 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1085 |
msgid "New order"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1089 |
msgid "Order on-hold"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1093 |
msgid "Processing order"
|
1094 |
msgstr "Behandler ordre"
|
1095 |
|
1096 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1097 |
msgid "Completed order"
|
1098 |
msgstr "Fullført ordre"
|
1099 |
|
1100 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1101 |
msgid "Customer invoice"
|
1102 |
msgstr "Kundefaktura"
|
1103 |
|
1104 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1105 |
msgid "Disable for free products"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1109 |
msgid ""
|
1110 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1111 |
"products."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "View PDF"
|
1116 |
msgstr "Vis PDF"
|
1117 |
|
1118 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1119 |
msgid "Download"
|
1120 |
msgstr "Last ned"
|
1121 |
|
1122 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1123 |
msgid "Open in new browser tab/window"
|
1124 |
msgstr "Åpne i ny fane/vindu"
|
1125 |
|
1126 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1127 |
msgid "Enable download from my account"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1131 |
msgid ""
|
1132 |
"By default PDF is only downloadable when order has been paid, so order "
|
1133 |
"status should be Processing or Completed."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1137 |
msgid "Enable Email It In"
|
1138 |
msgstr "Aktiver dette epostvarselet"
|
1139 |
|
1140 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1141 |
msgid "Email It In account"
|
1142 |
msgstr "Email It In konto"
|
1143 |
|
1144 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1145 |
#, php-format
|
1146 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1150 |
msgid "Enable Invoice Number column"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1154 |
msgid "Display invoice numbers on Shop Order page."
|
1155 |
msgstr ""
|
1156 |
|
@@ -1335,7 +1331,7 @@ msgid "Change the name of the invoice."
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1338 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1339 |
msgid "Invoice"
|
1340 |
msgstr "Faktura"
|
1341 |
|
@@ -1680,51 +1676,54 @@ msgstr ""
|
|
1680 |
msgid "Product"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1684 |
msgid "Invoice No."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1688 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1689 |
msgid "PDF Invoice"
|
1690 |
msgstr "PDF Faktura"
|
1691 |
|
1692 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1693 |
msgid "Create"
|
1694 |
msgstr "Opprett"
|
1695 |
|
1696 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1697 |
#, fuzzy
|
1698 |
#| msgid "VAT Number: %s"
|
1699 |
msgid "Number:"
|
1700 |
msgstr "MVA nummber: %s"
|
1701 |
|
1702 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1703 |
msgid "Sent?"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1707 |
msgid "Update"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1711 |
#, fuzzy
|
1712 |
#| msgid "Are you sure to delete the invoice?"
|
1713 |
msgid "Are you sure to delete the PDF invoice?"
|
1714 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
1715 |
|
1716 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1717 |
#, php-format
|
1718 |
msgid ""
|
1719 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1720 |
"an accounting gap!"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1724 |
#, php-format
|
1725 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1726 |
msgstr ""
|
1727 |
|
|
|
|
|
|
|
1728 |
#~ msgid "Premium Options"
|
1729 |
#~ msgstr "Premium alternativer"
|
1730 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
90 |
|
91 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
92 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
93 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
94 |
msgid "Premium"
|
95 |
msgstr "Premium"
|
96 |
|
212 |
"legge til Email It In e-post adresser. E-post adressene må skilles med komma."
|
213 |
|
214 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
215 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
216 |
msgid "Attach to Emails"
|
217 |
msgstr ""
|
218 |
|
385 |
msgstr "Global faktura generert! "
|
386 |
|
387 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
388 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
389 |
msgid "View invoice"
|
390 |
msgstr "Vis faktura"
|
391 |
|
392 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
393 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
394 |
msgid "View"
|
395 |
msgstr "Vis"
|
396 |
|
441 |
msgstr ""
|
442 |
|
443 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
444 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
445 |
msgid "Delete"
|
446 |
msgstr ""
|
447 |
|
474 |
msgstr "Overskriftsvalg"
|
475 |
|
476 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
477 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
478 |
#, fuzzy
|
479 |
#| msgid "Order Date: %s"
|
480 |
msgid "Date:"
|
551 |
msgstr ""
|
552 |
|
553 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
554 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
555 |
msgid "Yes"
|
556 |
msgstr ""
|
557 |
|
558 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
559 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
560 |
msgid "No"
|
561 |
msgstr ""
|
562 |
|
863 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
864 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
865 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
866 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
867 |
#, php-format
|
868 |
msgid "Phone: %s"
|
869 |
msgstr "Telefon: %s"
|
870 |
|
871 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
872 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
873 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
874 |
#, fuzzy, php-format
|
875 |
#| msgid "Email us"
|
876 |
msgid "Email: %s"
|
878 |
|
879 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
880 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
881 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
882 |
#, fuzzy, php-format
|
883 |
#| msgid "VAT %s"
|
884 |
msgid "VAT ID: %s"
|
928 |
msgstr "Ordre #%d - %s"
|
929 |
|
930 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
931 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
932 |
msgid "Settings"
|
933 |
msgstr "Innstillinger"
|
934 |
|
958 |
msgid "Total:"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
962 |
#, php-format
|
963 |
msgid "VAT Number: %s"
|
964 |
msgstr "MVA nummber: %s"
|
965 |
|
966 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
967 |
#, php-format
|
968 |
msgid "Purchase Order Number: %s"
|
969 |
msgstr "Ordrenummer: %s"
|
970 |
|
971 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
972 |
#, php-format
|
973 |
msgid "%s of %s"
|
974 |
msgstr "%s av %s"
|
986 |
|
987 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
988 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
989 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
990 |
msgid "Debug"
|
991 |
msgstr ""
|
992 |
|
1077 |
msgid "Interface Options"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1081 |
msgid "New order"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1085 |
msgid "Order on-hold"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1089 |
msgid "Processing order"
|
1090 |
msgstr "Behandler ordre"
|
1091 |
|
1092 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1093 |
msgid "Completed order"
|
1094 |
msgstr "Fullført ordre"
|
1095 |
|
1096 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1097 |
msgid "Customer invoice"
|
1098 |
msgstr "Kundefaktura"
|
1099 |
|
1100 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1101 |
msgid "Disable for free products"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1105 |
msgid ""
|
1106 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1107 |
"products."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1111 |
msgid "View PDF"
|
1112 |
msgstr "Vis PDF"
|
1113 |
|
1114 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1115 |
msgid "Download"
|
1116 |
msgstr "Last ned"
|
1117 |
|
1118 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1119 |
msgid "Open in new browser tab/window"
|
1120 |
msgstr "Åpne i ny fane/vindu"
|
1121 |
|
1122 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1123 |
msgid "Enable download from my account"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1127 |
msgid ""
|
1128 |
"By default PDF is only downloadable when order has been paid, so order "
|
1129 |
"status should be Processing or Completed."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1133 |
msgid "Enable Email It In"
|
1134 |
msgstr "Aktiver dette epostvarselet"
|
1135 |
|
1136 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1137 |
msgid "Email It In account"
|
1138 |
msgstr "Email It In konto"
|
1139 |
|
1140 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1141 |
#, php-format
|
1142 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1146 |
msgid "Enable Invoice Number column"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1150 |
msgid "Display invoice numbers on Shop Order page."
|
1151 |
msgstr ""
|
1152 |
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1334 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1335 |
msgid "Invoice"
|
1336 |
msgstr "Faktura"
|
1337 |
|
1676 |
msgid "Product"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1680 |
msgid "Invoice No."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1684 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1685 |
msgid "PDF Invoice"
|
1686 |
msgstr "PDF Faktura"
|
1687 |
|
1688 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1689 |
msgid "Create"
|
1690 |
msgstr "Opprett"
|
1691 |
|
1692 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1693 |
#, fuzzy
|
1694 |
#| msgid "VAT Number: %s"
|
1695 |
msgid "Number:"
|
1696 |
msgstr "MVA nummber: %s"
|
1697 |
|
1698 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1699 |
msgid "Sent?"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1703 |
msgid "Update"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1707 |
#, fuzzy
|
1708 |
#| msgid "Are you sure to delete the invoice?"
|
1709 |
msgid "Are you sure to delete the PDF invoice?"
|
1710 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
1711 |
|
1712 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1713 |
#, php-format
|
1714 |
msgid ""
|
1715 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1716 |
"an accounting gap!"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1720 |
#, php-format
|
1721 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#~ msgid "Debug Options"
|
1725 |
+
#~ msgstr "Feilsøkingsalternativer"
|
1726 |
+
|
1727 |
#~ msgid "Premium Options"
|
1728 |
#~ msgstr "Premium alternativer"
|
1729 |
|
lang/woocommerce-pdf-invoices-nl_NL.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: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: admin <dev@wcpdfinvoices.com>\n"
|
8 |
"Language-Team: Nederlands\n"
|
9 |
"Language: nl_NL\n"
|
@@ -95,7 +95,7 @@ msgstr "Actief"
|
|
95 |
|
96 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
97 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
98 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
99 |
msgid "Premium"
|
100 |
msgstr "Premium"
|
101 |
|
@@ -214,7 +214,7 @@ msgstr ""
|
|
214 |
"behoren met komma's gescheiden te worden."
|
215 |
|
216 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
217 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
218 |
msgid "Attach to Emails"
|
219 |
msgstr "Voeg toe aan emails"
|
220 |
|
@@ -387,12 +387,12 @@ msgid "Global invoice successfully generated!"
|
|
387 |
msgstr "Globale factuur succesvol gegenereerd!"
|
388 |
|
389 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
390 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
391 |
msgid "View invoice"
|
392 |
msgstr "Toon factuur"
|
393 |
|
394 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
395 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
396 |
msgid "View"
|
397 |
msgstr "Bekijk"
|
398 |
|
@@ -446,7 +446,7 @@ msgid "created on %1$s at %2$s"
|
|
446 |
msgstr "aangemaakt op %1$s om %2$s"
|
447 |
|
448 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
449 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
450 |
msgid "Delete"
|
451 |
msgstr "Verwijder"
|
452 |
|
@@ -475,7 +475,7 @@ msgid "Credit Note #:"
|
|
475 |
msgstr "Creditnota #:"
|
476 |
|
477 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
478 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
479 |
msgid "Date:"
|
480 |
msgstr "Besteldatum:"
|
481 |
|
@@ -545,12 +545,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
545 |
msgstr "Selecteer meer dan één bestelling om een global factuur te genereren."
|
546 |
|
547 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
548 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
549 |
msgid "Yes"
|
550 |
msgstr "Ja"
|
551 |
|
552 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
553 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
554 |
msgid "No"
|
555 |
msgstr "Nee"
|
556 |
|
@@ -858,14 +858,14 @@ msgstr "%1$s van %2$s"
|
|
858 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
859 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
861 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
862 |
#, php-format
|
863 |
msgid "Phone: %s"
|
864 |
msgstr "Tel: %s"
|
865 |
|
866 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
867 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
868 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
869 |
#, fuzzy, php-format
|
870 |
#| msgid "Email subject"
|
871 |
msgid "Email: %s"
|
@@ -873,7 +873,7 @@ msgstr "E-mail onderwerp"
|
|
873 |
|
874 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
875 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
876 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
877 |
#, fuzzy, php-format
|
878 |
#| msgid "VAT %s"
|
879 |
msgid "VAT ID: %s"
|
@@ -919,7 +919,7 @@ msgid "Order #%d - %s"
|
|
919 |
msgstr "Bestelling #%d - %s"
|
920 |
|
921 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
922 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
923 |
msgid "Settings"
|
924 |
msgstr "Opties"
|
925 |
|
@@ -949,17 +949,17 @@ msgstr "Verzending:"
|
|
949 |
msgid "Total:"
|
950 |
msgstr "Totaal:"
|
951 |
|
952 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
953 |
#, php-format
|
954 |
msgid "VAT Number: %s"
|
955 |
msgstr "BTW nummer: %s"
|
956 |
|
957 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
958 |
#, php-format
|
959 |
msgid "Purchase Order Number: %s"
|
960 |
msgstr "Aankoopnummer: %s"
|
961 |
|
962 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
963 |
#, php-format
|
964 |
msgid "%s of %s"
|
965 |
msgstr "%s van %s"
|
@@ -977,7 +977,7 @@ msgstr "Template"
|
|
977 |
|
978 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
979 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
980 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
981 |
msgid "Debug"
|
982 |
msgstr "Debug"
|
983 |
|
@@ -1071,35 +1071,31 @@ msgstr ""
|
|
1071 |
msgid "Interface Options"
|
1072 |
msgstr "Interface Opties"
|
1073 |
|
1074 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1075 |
-
msgid "Debug Options"
|
1076 |
-
msgstr "Debug Opties"
|
1077 |
-
|
1078 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1079 |
msgid "New order"
|
1080 |
msgstr "Nieuwe bestelling"
|
1081 |
|
1082 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1083 |
msgid "Order on-hold"
|
1084 |
msgstr "Bestelling in-de-wacht"
|
1085 |
|
1086 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1087 |
msgid "Processing order"
|
1088 |
msgstr "Bestelling in behandeling"
|
1089 |
|
1090 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1091 |
msgid "Completed order"
|
1092 |
msgstr "Bestelling afgerond"
|
1093 |
|
1094 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1095 |
msgid "Customer invoice"
|
1096 |
msgstr "Klant factuur"
|
1097 |
|
1098 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1099 |
msgid "Disable for free products"
|
1100 |
msgstr "Deactiveer voor gratis producten"
|
1101 |
|
1102 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1103 |
msgid ""
|
1104 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1105 |
"products."
|
@@ -1107,23 +1103,23 @@ msgstr ""
|
|
1107 |
"Sla automatische PDF factuur generatie over voor bestellingen met alleen "
|
1108 |
"gratis producten."
|
1109 |
|
1110 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1111 |
msgid "View PDF"
|
1112 |
msgstr "Bekijk PDF"
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "Download"
|
1116 |
msgstr "Download"
|
1117 |
|
1118 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1119 |
msgid "Open in new browser tab/window"
|
1120 |
msgstr "Openen in nieuw browser tabblad/venster"
|
1121 |
|
1122 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1123 |
msgid "Enable download from my account"
|
1124 |
msgstr "Activeer download vanaf account"
|
1125 |
|
1126 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1127 |
msgid ""
|
1128 |
"By default PDF is only downloadable when order has been paid, so order "
|
1129 |
"status should be Processing or Completed."
|
@@ -1131,24 +1127,24 @@ msgstr ""
|
|
1131 |
"Standaard is PDF alleen te downloaden als de bestelling is betaald, dus de "
|
1132 |
"bestelstatus zal In behandeling of Afgerond moeten zijn."
|
1133 |
|
1134 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1135 |
msgid "Enable Email It In"
|
1136 |
msgstr "Activeer Email It In"
|
1137 |
|
1138 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1139 |
msgid "Email It In account"
|
1140 |
msgstr "Email It In account"
|
1141 |
|
1142 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1143 |
#, php-format
|
1144 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1145 |
msgstr "Voer het %1$s <a href=\"%2$s\">gebruiker account</a> in."
|
1146 |
|
1147 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1148 |
msgid "Enable Invoice Number column"
|
1149 |
msgstr "Activeer factuurnummer kolom"
|
1150 |
|
1151 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1152 |
msgid "Display invoice numbers on Shop Order page."
|
1153 |
msgstr "Toon factuurnummers op Bestellingen pagina."
|
1154 |
|
@@ -1346,7 +1342,7 @@ msgid "Change the name of the invoice."
|
|
1346 |
msgstr "Verander de naam van de factuur."
|
1347 |
|
1348 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1349 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1350 |
msgid "Invoice"
|
1351 |
msgstr "Factuur"
|
1352 |
|
@@ -1721,36 +1717,36 @@ msgstr "Verzendmethode: %s"
|
|
1721 |
msgid "Product"
|
1722 |
msgstr "Artikel"
|
1723 |
|
1724 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1725 |
msgid "Invoice No."
|
1726 |
msgstr "Factuurnr."
|
1727 |
|
1728 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1729 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1730 |
msgid "PDF Invoice"
|
1731 |
msgstr "PDF Factuur"
|
1732 |
|
1733 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1734 |
msgid "Create"
|
1735 |
msgstr "Genereer"
|
1736 |
|
1737 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1738 |
msgid "Number:"
|
1739 |
msgstr "Nummer:"
|
1740 |
|
1741 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1742 |
msgid "Sent?"
|
1743 |
msgstr "Verstuurd?"
|
1744 |
|
1745 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1746 |
msgid "Update"
|
1747 |
msgstr "Update"
|
1748 |
|
1749 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1750 |
msgid "Are you sure to delete the PDF invoice?"
|
1751 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
1752 |
|
1753 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1754 |
#, php-format
|
1755 |
msgid ""
|
1756 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
@@ -1759,7 +1755,10 @@ msgstr ""
|
|
1759 |
"Je zult een PDF factuur met nummer %d missen en daarom een boekhoudkundig "
|
1760 |
"gat creëren!"
|
1761 |
|
1762 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1763 |
#, php-format
|
1764 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1765 |
msgstr "In plaats daarvan overweeg Geannuleerde PDF facturen met %s."
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: admin <dev@wcpdfinvoices.com>\n"
|
8 |
"Language-Team: Nederlands\n"
|
9 |
"Language: nl_NL\n"
|
95 |
|
96 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
97 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
98 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
99 |
msgid "Premium"
|
100 |
msgstr "Premium"
|
101 |
|
214 |
"behoren met komma's gescheiden te worden."
|
215 |
|
216 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
217 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
218 |
msgid "Attach to Emails"
|
219 |
msgstr "Voeg toe aan emails"
|
220 |
|
387 |
msgstr "Globale factuur succesvol gegenereerd!"
|
388 |
|
389 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
390 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
391 |
msgid "View invoice"
|
392 |
msgstr "Toon factuur"
|
393 |
|
394 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
395 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
396 |
msgid "View"
|
397 |
msgstr "Bekijk"
|
398 |
|
446 |
msgstr "aangemaakt op %1$s om %2$s"
|
447 |
|
448 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
449 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
450 |
msgid "Delete"
|
451 |
msgstr "Verwijder"
|
452 |
|
475 |
msgstr "Creditnota #:"
|
476 |
|
477 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
478 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
479 |
msgid "Date:"
|
480 |
msgstr "Besteldatum:"
|
481 |
|
545 |
msgstr "Selecteer meer dan één bestelling om een global factuur te genereren."
|
546 |
|
547 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
548 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
549 |
msgid "Yes"
|
550 |
msgstr "Ja"
|
551 |
|
552 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
553 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
554 |
msgid "No"
|
555 |
msgstr "Nee"
|
556 |
|
858 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
859 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
861 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
862 |
#, php-format
|
863 |
msgid "Phone: %s"
|
864 |
msgstr "Tel: %s"
|
865 |
|
866 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
867 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
868 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
869 |
#, fuzzy, php-format
|
870 |
#| msgid "Email subject"
|
871 |
msgid "Email: %s"
|
873 |
|
874 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
875 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
876 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
877 |
#, fuzzy, php-format
|
878 |
#| msgid "VAT %s"
|
879 |
msgid "VAT ID: %s"
|
919 |
msgstr "Bestelling #%d - %s"
|
920 |
|
921 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
922 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
923 |
msgid "Settings"
|
924 |
msgstr "Opties"
|
925 |
|
949 |
msgid "Total:"
|
950 |
msgstr "Totaal:"
|
951 |
|
952 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
953 |
#, php-format
|
954 |
msgid "VAT Number: %s"
|
955 |
msgstr "BTW nummer: %s"
|
956 |
|
957 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
958 |
#, php-format
|
959 |
msgid "Purchase Order Number: %s"
|
960 |
msgstr "Aankoopnummer: %s"
|
961 |
|
962 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
963 |
#, php-format
|
964 |
msgid "%s of %s"
|
965 |
msgstr "%s van %s"
|
977 |
|
978 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
979 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
980 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
981 |
msgid "Debug"
|
982 |
msgstr "Debug"
|
983 |
|
1071 |
msgid "Interface Options"
|
1072 |
msgstr "Interface Opties"
|
1073 |
|
1074 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1075 |
msgid "New order"
|
1076 |
msgstr "Nieuwe bestelling"
|
1077 |
|
1078 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1079 |
msgid "Order on-hold"
|
1080 |
msgstr "Bestelling in-de-wacht"
|
1081 |
|
1082 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1083 |
msgid "Processing order"
|
1084 |
msgstr "Bestelling in behandeling"
|
1085 |
|
1086 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1087 |
msgid "Completed order"
|
1088 |
msgstr "Bestelling afgerond"
|
1089 |
|
1090 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1091 |
msgid "Customer invoice"
|
1092 |
msgstr "Klant factuur"
|
1093 |
|
1094 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1095 |
msgid "Disable for free products"
|
1096 |
msgstr "Deactiveer voor gratis producten"
|
1097 |
|
1098 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1099 |
msgid ""
|
1100 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1101 |
"products."
|
1103 |
"Sla automatische PDF factuur generatie over voor bestellingen met alleen "
|
1104 |
"gratis producten."
|
1105 |
|
1106 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1107 |
msgid "View PDF"
|
1108 |
msgstr "Bekijk PDF"
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1111 |
msgid "Download"
|
1112 |
msgstr "Download"
|
1113 |
|
1114 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1115 |
msgid "Open in new browser tab/window"
|
1116 |
msgstr "Openen in nieuw browser tabblad/venster"
|
1117 |
|
1118 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1119 |
msgid "Enable download from my account"
|
1120 |
msgstr "Activeer download vanaf account"
|
1121 |
|
1122 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1123 |
msgid ""
|
1124 |
"By default PDF is only downloadable when order has been paid, so order "
|
1125 |
"status should be Processing or Completed."
|
1127 |
"Standaard is PDF alleen te downloaden als de bestelling is betaald, dus de "
|
1128 |
"bestelstatus zal In behandeling of Afgerond moeten zijn."
|
1129 |
|
1130 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1131 |
msgid "Enable Email It In"
|
1132 |
msgstr "Activeer Email It In"
|
1133 |
|
1134 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1135 |
msgid "Email It In account"
|
1136 |
msgstr "Email It In account"
|
1137 |
|
1138 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1139 |
#, php-format
|
1140 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1141 |
msgstr "Voer het %1$s <a href=\"%2$s\">gebruiker account</a> in."
|
1142 |
|
1143 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1144 |
msgid "Enable Invoice Number column"
|
1145 |
msgstr "Activeer factuurnummer kolom"
|
1146 |
|
1147 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1148 |
msgid "Display invoice numbers on Shop Order page."
|
1149 |
msgstr "Toon factuurnummers op Bestellingen pagina."
|
1150 |
|
1342 |
msgstr "Verander de naam van de factuur."
|
1343 |
|
1344 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1345 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1346 |
msgid "Invoice"
|
1347 |
msgstr "Factuur"
|
1348 |
|
1717 |
msgid "Product"
|
1718 |
msgstr "Artikel"
|
1719 |
|
1720 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1721 |
msgid "Invoice No."
|
1722 |
msgstr "Factuurnr."
|
1723 |
|
1724 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1725 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1726 |
msgid "PDF Invoice"
|
1727 |
msgstr "PDF Factuur"
|
1728 |
|
1729 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1730 |
msgid "Create"
|
1731 |
msgstr "Genereer"
|
1732 |
|
1733 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1734 |
msgid "Number:"
|
1735 |
msgstr "Nummer:"
|
1736 |
|
1737 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1738 |
msgid "Sent?"
|
1739 |
msgstr "Verstuurd?"
|
1740 |
|
1741 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1742 |
msgid "Update"
|
1743 |
msgstr "Update"
|
1744 |
|
1745 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1746 |
msgid "Are you sure to delete the PDF invoice?"
|
1747 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
1748 |
|
1749 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1750 |
#, php-format
|
1751 |
msgid ""
|
1752 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1755 |
"Je zult een PDF factuur met nummer %d missen en daarom een boekhoudkundig "
|
1756 |
"gat creëren!"
|
1757 |
|
1758 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1759 |
#, php-format
|
1760 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1761 |
msgstr "In plaats daarvan overweeg Geannuleerde PDF facturen met %s."
|
1762 |
+
|
1763 |
+
#~ msgid "Debug Options"
|
1764 |
+
#~ msgstr "Debug Opties"
|
lang/woocommerce-pdf-invoices-pl_PL.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: info@wcpdfinvoices.com\n"
|
14 |
"Language: pl_PL\n"
|
@@ -83,7 +83,7 @@ msgstr ""
|
|
83 |
|
84 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
86 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
87 |
msgid "Premium"
|
88 |
msgstr "Premium"
|
89 |
|
@@ -198,7 +198,7 @@ msgid ""
|
|
198 |
msgstr ""
|
199 |
|
200 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
201 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
202 |
msgid "Attach to Emails"
|
203 |
msgstr ""
|
204 |
|
@@ -367,12 +367,12 @@ msgid "Global invoice successfully generated!"
|
|
367 |
msgstr ""
|
368 |
|
369 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
370 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
371 |
msgid "View invoice"
|
372 |
msgstr "Zobacz fakturę"
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
376 |
msgid "View"
|
377 |
msgstr "Zobacz"
|
378 |
|
@@ -423,7 +423,7 @@ msgid "created on %1$s at %2$s"
|
|
423 |
msgstr ""
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
426 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
427 |
msgid "Delete"
|
428 |
msgstr ""
|
429 |
|
@@ -454,7 +454,7 @@ msgid "Credit Note #:"
|
|
454 |
msgstr "Opcje nagłówka"
|
455 |
|
456 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
457 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
458 |
#, fuzzy
|
459 |
#| msgid "Order Date: %s"
|
460 |
msgid "Date:"
|
@@ -531,12 +531,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
@@ -828,14 +828,14 @@ msgstr ""
|
|
828 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
829 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
831 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
832 |
#, php-format
|
833 |
msgid "Phone: %s"
|
834 |
msgstr "Nr telefonu: %s"
|
835 |
|
836 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
837 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
838 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
839 |
#, fuzzy, php-format
|
840 |
#| msgid "Email us"
|
841 |
msgid "Email: %s"
|
@@ -843,7 +843,7 @@ msgstr "Napisz do nas"
|
|
843 |
|
844 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
846 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
847 |
#, php-format
|
848 |
msgid "VAT ID: %s"
|
849 |
msgstr ""
|
@@ -892,7 +892,7 @@ msgid "Order #%d - %s"
|
|
892 |
msgstr "Zamówienia #%d - %s"
|
893 |
|
894 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
895 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
896 |
msgid "Settings"
|
897 |
msgstr "Ustawienia"
|
898 |
|
@@ -921,17 +921,17 @@ msgstr ""
|
|
921 |
msgid "Total:"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
925 |
#, php-format
|
926 |
msgid "VAT Number: %s"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
930 |
#, php-format
|
931 |
msgid "Purchase Order Number: %s"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
935 |
#, php-format
|
936 |
msgid "%s of %s"
|
937 |
msgstr "%s z %s"
|
@@ -949,7 +949,7 @@ msgstr "Szablon"
|
|
949 |
|
950 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
951 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
952 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
953 |
msgid "Debug"
|
954 |
msgstr ""
|
955 |
|
@@ -1026,80 +1026,76 @@ msgstr ""
|
|
1026 |
msgid "Interface Options"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1030 |
-
msgid "Debug Options"
|
1031 |
-
msgstr ""
|
1032 |
-
|
1033 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1034 |
msgid "New order"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1038 |
msgid "Order on-hold"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1042 |
msgid "Processing order"
|
1043 |
msgstr "Przetwarzanie zamówienia"
|
1044 |
|
1045 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1046 |
msgid "Completed order"
|
1047 |
msgstr "Zamówienie zakończone"
|
1048 |
|
1049 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1050 |
msgid "Customer invoice"
|
1051 |
msgstr "Faktura klienta"
|
1052 |
|
1053 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1054 |
msgid "Disable for free products"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1058 |
msgid ""
|
1059 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1060 |
"products."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1064 |
msgid "View PDF"
|
1065 |
msgstr "Sposób otwierania PDF-a"
|
1066 |
|
1067 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1068 |
msgid "Download"
|
1069 |
msgstr "Pobierz"
|
1070 |
|
1071 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1072 |
msgid "Open in new browser tab/window"
|
1073 |
msgstr "Otwórz w nowym oknie/zakładce przeglądarki"
|
1074 |
|
1075 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1076 |
msgid "Enable download from my account"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1080 |
msgid ""
|
1081 |
"By default PDF is only downloadable when order has been paid, so order "
|
1082 |
"status should be Processing or Completed."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1086 |
msgid "Enable Email It In"
|
1087 |
msgstr "Włącz Email It In"
|
1088 |
|
1089 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1090 |
msgid "Email It In account"
|
1091 |
msgstr "Konto Email It In"
|
1092 |
|
1093 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1094 |
#, php-format
|
1095 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1099 |
msgid "Enable Invoice Number column"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1103 |
msgid "Display invoice numbers on Shop Order page."
|
1104 |
msgstr ""
|
1105 |
|
@@ -1284,7 +1280,7 @@ msgid "Change the name of the invoice."
|
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1287 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1288 |
msgid "Invoice"
|
1289 |
msgstr "Faktura"
|
1290 |
|
@@ -1626,47 +1622,47 @@ msgstr ""
|
|
1626 |
msgid "Product"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1630 |
msgid "Invoice No."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1634 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1635 |
msgid "PDF Invoice"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1639 |
msgid "Create"
|
1640 |
msgstr "Stwórz"
|
1641 |
|
1642 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1643 |
#, fuzzy
|
1644 |
#| msgid "Order Number: %s"
|
1645 |
msgid "Number:"
|
1646 |
msgstr "Numer zamówienia: %s"
|
1647 |
|
1648 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1649 |
msgid "Sent?"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1653 |
msgid "Update"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1657 |
#, fuzzy
|
1658 |
#| msgid "Are you sure to delete the invoice?"
|
1659 |
msgid "Are you sure to delete the PDF invoice?"
|
1660 |
msgstr "Czy na pewno chcesz usunąć fakturę?"
|
1661 |
|
1662 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1663 |
#, php-format
|
1664 |
msgid ""
|
1665 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1666 |
"an accounting gap!"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1670 |
#, php-format
|
1671 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1672 |
msgstr ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
11 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: info@wcpdfinvoices.com\n"
|
14 |
"Language: pl_PL\n"
|
83 |
|
84 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
86 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
87 |
msgid "Premium"
|
88 |
msgstr "Premium"
|
89 |
|
198 |
msgstr ""
|
199 |
|
200 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
201 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
202 |
msgid "Attach to Emails"
|
203 |
msgstr ""
|
204 |
|
367 |
msgstr ""
|
368 |
|
369 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
370 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
371 |
msgid "View invoice"
|
372 |
msgstr "Zobacz fakturę"
|
373 |
|
374 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
375 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
376 |
msgid "View"
|
377 |
msgstr "Zobacz"
|
378 |
|
423 |
msgstr ""
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
426 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
427 |
msgid "Delete"
|
428 |
msgstr ""
|
429 |
|
454 |
msgstr "Opcje nagłówka"
|
455 |
|
456 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
457 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
458 |
#, fuzzy
|
459 |
#| msgid "Order Date: %s"
|
460 |
msgid "Date:"
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
828 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
829 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
831 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
832 |
#, php-format
|
833 |
msgid "Phone: %s"
|
834 |
msgstr "Nr telefonu: %s"
|
835 |
|
836 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
837 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
838 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
839 |
#, fuzzy, php-format
|
840 |
#| msgid "Email us"
|
841 |
msgid "Email: %s"
|
843 |
|
844 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
846 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
847 |
#, php-format
|
848 |
msgid "VAT ID: %s"
|
849 |
msgstr ""
|
892 |
msgstr "Zamówienia #%d - %s"
|
893 |
|
894 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
895 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
896 |
msgid "Settings"
|
897 |
msgstr "Ustawienia"
|
898 |
|
921 |
msgid "Total:"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
925 |
#, php-format
|
926 |
msgid "VAT Number: %s"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
930 |
#, php-format
|
931 |
msgid "Purchase Order Number: %s"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
935 |
#, php-format
|
936 |
msgid "%s of %s"
|
937 |
msgstr "%s z %s"
|
949 |
|
950 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
951 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
952 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
953 |
msgid "Debug"
|
954 |
msgstr ""
|
955 |
|
1026 |
msgid "Interface Options"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1030 |
msgid "New order"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1034 |
msgid "Order on-hold"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1038 |
msgid "Processing order"
|
1039 |
msgstr "Przetwarzanie zamówienia"
|
1040 |
|
1041 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1042 |
msgid "Completed order"
|
1043 |
msgstr "Zamówienie zakończone"
|
1044 |
|
1045 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1046 |
msgid "Customer invoice"
|
1047 |
msgstr "Faktura klienta"
|
1048 |
|
1049 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1050 |
msgid "Disable for free products"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1054 |
msgid ""
|
1055 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1056 |
"products."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1060 |
msgid "View PDF"
|
1061 |
msgstr "Sposób otwierania PDF-a"
|
1062 |
|
1063 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1064 |
msgid "Download"
|
1065 |
msgstr "Pobierz"
|
1066 |
|
1067 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1068 |
msgid "Open in new browser tab/window"
|
1069 |
msgstr "Otwórz w nowym oknie/zakładce przeglądarki"
|
1070 |
|
1071 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1072 |
msgid "Enable download from my account"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1076 |
msgid ""
|
1077 |
"By default PDF is only downloadable when order has been paid, so order "
|
1078 |
"status should be Processing or Completed."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1082 |
msgid "Enable Email It In"
|
1083 |
msgstr "Włącz Email It In"
|
1084 |
|
1085 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1086 |
msgid "Email It In account"
|
1087 |
msgstr "Konto Email It In"
|
1088 |
|
1089 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1090 |
#, php-format
|
1091 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1095 |
msgid "Enable Invoice Number column"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1099 |
msgid "Display invoice numbers on Shop Order page."
|
1100 |
msgstr ""
|
1101 |
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1283 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1284 |
msgid "Invoice"
|
1285 |
msgstr "Faktura"
|
1286 |
|
1622 |
msgid "Product"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1626 |
msgid "Invoice No."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1630 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1631 |
msgid "PDF Invoice"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1635 |
msgid "Create"
|
1636 |
msgstr "Stwórz"
|
1637 |
|
1638 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1639 |
#, fuzzy
|
1640 |
#| msgid "Order Number: %s"
|
1641 |
msgid "Number:"
|
1642 |
msgstr "Numer zamówienia: %s"
|
1643 |
|
1644 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1645 |
msgid "Sent?"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1649 |
msgid "Update"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1653 |
#, fuzzy
|
1654 |
#| msgid "Are you sure to delete the invoice?"
|
1655 |
msgid "Are you sure to delete the PDF invoice?"
|
1656 |
msgstr "Czy na pewno chcesz usunąć fakturę?"
|
1657 |
|
1658 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1659 |
#, php-format
|
1660 |
msgid ""
|
1661 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1662 |
"an accounting gap!"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1666 |
#, php-format
|
1667 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1668 |
msgstr ""
|
lang/woocommerce-pdf-invoices-ro_RO.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ro\n"
|
@@ -84,7 +84,7 @@ msgstr ""
|
|
84 |
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
87 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
88 |
msgid "Premium"
|
89 |
msgstr "Premium"
|
90 |
|
@@ -199,7 +199,7 @@ msgid ""
|
|
199 |
msgstr ""
|
200 |
|
201 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
202 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
203 |
msgid "Attach to Emails"
|
204 |
msgstr ""
|
205 |
|
@@ -368,12 +368,12 @@ msgid "Global invoice successfully generated!"
|
|
368 |
msgstr ""
|
369 |
|
370 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
371 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
372 |
msgid "View invoice"
|
373 |
msgstr "Vezi factura"
|
374 |
|
375 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
376 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
377 |
msgid "View"
|
378 |
msgstr "Vizualizare"
|
379 |
|
@@ -424,7 +424,7 @@ msgid "created on %1$s at %2$s"
|
|
424 |
msgstr ""
|
425 |
|
426 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
427 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
428 |
msgid "Delete"
|
429 |
msgstr ""
|
430 |
|
@@ -455,7 +455,7 @@ msgid "Credit Note #:"
|
|
455 |
msgstr "Opțiuni header"
|
456 |
|
457 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
458 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
459 |
#, fuzzy
|
460 |
#| msgid "Order Date: %s"
|
461 |
msgid "Date:"
|
@@ -532,12 +532,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
532 |
msgstr ""
|
533 |
|
534 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
535 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
536 |
msgid "Yes"
|
537 |
msgstr ""
|
538 |
|
539 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
540 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
541 |
msgid "No"
|
542 |
msgstr ""
|
543 |
|
@@ -829,14 +829,14 @@ msgstr ""
|
|
829 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
831 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
832 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
833 |
#, php-format
|
834 |
msgid "Phone: %s"
|
835 |
msgstr "Telefon: %s"
|
836 |
|
837 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
838 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
839 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
840 |
#, fuzzy, php-format
|
841 |
#| msgid "Email us"
|
842 |
msgid "Email: %s"
|
@@ -844,7 +844,7 @@ msgstr "Trimite-ne un email"
|
|
844 |
|
845 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
847 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
848 |
#, php-format
|
849 |
msgid "VAT ID: %s"
|
850 |
msgstr ""
|
@@ -893,7 +893,7 @@ msgid "Order #%d - %s"
|
|
893 |
msgstr "Comanda #%d - %s"
|
894 |
|
895 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
896 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
897 |
msgid "Settings"
|
898 |
msgstr "Setări"
|
899 |
|
@@ -922,17 +922,17 @@ msgstr ""
|
|
922 |
msgid "Total:"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
926 |
#, php-format
|
927 |
msgid "VAT Number: %s"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
931 |
#, php-format
|
932 |
msgid "Purchase Order Number: %s"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
936 |
#, php-format
|
937 |
msgid "%s of %s"
|
938 |
msgstr "%s din %s"
|
@@ -950,7 +950,7 @@ msgstr "Template"
|
|
950 |
|
951 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
952 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
953 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
954 |
msgid "Debug"
|
955 |
msgstr ""
|
956 |
|
@@ -1027,80 +1027,76 @@ msgstr ""
|
|
1027 |
msgid "Interface Options"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1031 |
-
msgid "Debug Options"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1035 |
msgid "New order"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1039 |
msgid "Order on-hold"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1043 |
msgid "Processing order"
|
1044 |
msgstr "În timpul procesării comenzii"
|
1045 |
|
1046 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1047 |
msgid "Completed order"
|
1048 |
msgstr "Comandă completă"
|
1049 |
|
1050 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1051 |
msgid "Customer invoice"
|
1052 |
msgstr "Factură client"
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
msgid "Disable for free products"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1059 |
msgid ""
|
1060 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1061 |
"products."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1065 |
msgid "View PDF"
|
1066 |
msgstr "Vezi PDF"
|
1067 |
|
1068 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1069 |
msgid "Download"
|
1070 |
msgstr "Descarcă"
|
1071 |
|
1072 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1073 |
msgid "Open in new browser tab/window"
|
1074 |
msgstr "Deschide în tab/fereastră nouă a browser-ului."
|
1075 |
|
1076 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1077 |
msgid "Enable download from my account"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1081 |
msgid ""
|
1082 |
"By default PDF is only downloadable when order has been paid, so order "
|
1083 |
"status should be Processing or Completed."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1087 |
msgid "Enable Email It In"
|
1088 |
msgstr "Activează trimiterea prin Email It In"
|
1089 |
|
1090 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1091 |
msgid "Email It In account"
|
1092 |
msgstr "Cont pentru email Email It In"
|
1093 |
|
1094 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1095 |
#, php-format
|
1096 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1100 |
msgid "Enable Invoice Number column"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1104 |
msgid "Display invoice numbers on Shop Order page."
|
1105 |
msgstr ""
|
1106 |
|
@@ -1284,7 +1280,7 @@ msgid "Change the name of the invoice."
|
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1287 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1288 |
msgid "Invoice"
|
1289 |
msgstr "Factură"
|
1290 |
|
@@ -1627,47 +1623,47 @@ msgstr ""
|
|
1627 |
msgid "Product"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1631 |
msgid "Invoice No."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1635 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1636 |
msgid "PDF Invoice"
|
1637 |
msgstr "Factură PDF"
|
1638 |
|
1639 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1640 |
msgid "Create"
|
1641 |
msgstr "Crează"
|
1642 |
|
1643 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1644 |
#, fuzzy
|
1645 |
#| msgid "Order Number: %s"
|
1646 |
msgid "Number:"
|
1647 |
msgstr "Număr comandă: %s"
|
1648 |
|
1649 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1650 |
msgid "Sent?"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1654 |
msgid "Update"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1658 |
#, fuzzy
|
1659 |
#| msgid "Are you sure to delete the invoice?"
|
1660 |
msgid "Are you sure to delete the PDF invoice?"
|
1661 |
msgstr "Ești sigur că vrei să ștergi factura ?"
|
1662 |
|
1663 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1664 |
#, php-format
|
1665 |
msgid ""
|
1666 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1667 |
"an accounting gap!"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1671 |
#, php-format
|
1672 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1673 |
msgstr ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
11 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ro\n"
|
84 |
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
87 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
88 |
msgid "Premium"
|
89 |
msgstr "Premium"
|
90 |
|
199 |
msgstr ""
|
200 |
|
201 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
202 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
203 |
msgid "Attach to Emails"
|
204 |
msgstr ""
|
205 |
|
368 |
msgstr ""
|
369 |
|
370 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
371 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
372 |
msgid "View invoice"
|
373 |
msgstr "Vezi factura"
|
374 |
|
375 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
376 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
377 |
msgid "View"
|
378 |
msgstr "Vizualizare"
|
379 |
|
424 |
msgstr ""
|
425 |
|
426 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
427 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
428 |
msgid "Delete"
|
429 |
msgstr ""
|
430 |
|
455 |
msgstr "Opțiuni header"
|
456 |
|
457 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
458 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
459 |
#, fuzzy
|
460 |
#| msgid "Order Date: %s"
|
461 |
msgid "Date:"
|
532 |
msgstr ""
|
533 |
|
534 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
535 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
536 |
msgid "Yes"
|
537 |
msgstr ""
|
538 |
|
539 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
540 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
541 |
msgid "No"
|
542 |
msgstr ""
|
543 |
|
829 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
830 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
831 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
832 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
833 |
#, php-format
|
834 |
msgid "Phone: %s"
|
835 |
msgstr "Telefon: %s"
|
836 |
|
837 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
838 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
839 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
840 |
#, fuzzy, php-format
|
841 |
#| msgid "Email us"
|
842 |
msgid "Email: %s"
|
844 |
|
845 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
846 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
847 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
848 |
#, php-format
|
849 |
msgid "VAT ID: %s"
|
850 |
msgstr ""
|
893 |
msgstr "Comanda #%d - %s"
|
894 |
|
895 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
896 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
897 |
msgid "Settings"
|
898 |
msgstr "Setări"
|
899 |
|
922 |
msgid "Total:"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
926 |
#, php-format
|
927 |
msgid "VAT Number: %s"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
931 |
#, php-format
|
932 |
msgid "Purchase Order Number: %s"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
936 |
#, php-format
|
937 |
msgid "%s of %s"
|
938 |
msgstr "%s din %s"
|
950 |
|
951 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
952 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
953 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
954 |
msgid "Debug"
|
955 |
msgstr ""
|
956 |
|
1027 |
msgid "Interface Options"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1031 |
msgid "New order"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1035 |
msgid "Order on-hold"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1039 |
msgid "Processing order"
|
1040 |
msgstr "În timpul procesării comenzii"
|
1041 |
|
1042 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1043 |
msgid "Completed order"
|
1044 |
msgstr "Comandă completă"
|
1045 |
|
1046 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1047 |
msgid "Customer invoice"
|
1048 |
msgstr "Factură client"
|
1049 |
|
1050 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1051 |
msgid "Disable for free products"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1055 |
msgid ""
|
1056 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1057 |
"products."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1061 |
msgid "View PDF"
|
1062 |
msgstr "Vezi PDF"
|
1063 |
|
1064 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1065 |
msgid "Download"
|
1066 |
msgstr "Descarcă"
|
1067 |
|
1068 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1069 |
msgid "Open in new browser tab/window"
|
1070 |
msgstr "Deschide în tab/fereastră nouă a browser-ului."
|
1071 |
|
1072 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1073 |
msgid "Enable download from my account"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1077 |
msgid ""
|
1078 |
"By default PDF is only downloadable when order has been paid, so order "
|
1079 |
"status should be Processing or Completed."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1083 |
msgid "Enable Email It In"
|
1084 |
msgstr "Activează trimiterea prin Email It In"
|
1085 |
|
1086 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1087 |
msgid "Email It In account"
|
1088 |
msgstr "Cont pentru email Email It In"
|
1089 |
|
1090 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1091 |
#, php-format
|
1092 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1096 |
msgid "Enable Invoice Number column"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1100 |
msgid "Display invoice numbers on Shop Order page."
|
1101 |
msgstr ""
|
1102 |
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1283 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1284 |
msgid "Invoice"
|
1285 |
msgstr "Factură"
|
1286 |
|
1623 |
msgid "Product"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1627 |
msgid "Invoice No."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1631 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1632 |
msgid "PDF Invoice"
|
1633 |
msgstr "Factură PDF"
|
1634 |
|
1635 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1636 |
msgid "Create"
|
1637 |
msgstr "Crează"
|
1638 |
|
1639 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1640 |
#, fuzzy
|
1641 |
#| msgid "Order Number: %s"
|
1642 |
msgid "Number:"
|
1643 |
msgstr "Număr comandă: %s"
|
1644 |
|
1645 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1646 |
msgid "Sent?"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1650 |
msgid "Update"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1654 |
#, fuzzy
|
1655 |
#| msgid "Are you sure to delete the invoice?"
|
1656 |
msgid "Are you sure to delete the PDF invoice?"
|
1657 |
msgstr "Ești sigur că vrei să ștergi factura ?"
|
1658 |
|
1659 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1660 |
#, php-format
|
1661 |
msgid ""
|
1662 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1663 |
"an accounting gap!"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1667 |
#, php-format
|
1668 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1669 |
msgstr ""
|
lang/woocommerce-pdf-invoices-ru_RU.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2019-04-
|
11 |
-
"PO-Revision-Date: 2019-04-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ru_RU\n"
|
@@ -84,7 +84,7 @@ msgstr ""
|
|
84 |
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
87 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
88 |
msgid "Premium"
|
89 |
msgstr "Премиум-поддержка"
|
90 |
|
@@ -195,7 +195,7 @@ msgid ""
|
|
195 |
msgstr ""
|
196 |
|
197 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
198 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
199 |
msgid "Attach to Emails"
|
200 |
msgstr ""
|
201 |
|
@@ -364,12 +364,12 @@ msgid "Global invoice successfully generated!"
|
|
364 |
msgstr ""
|
365 |
|
366 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
367 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
368 |
msgid "View invoice"
|
369 |
msgstr "Просмотреть накладную"
|
370 |
|
371 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
372 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
373 |
msgid "View"
|
374 |
msgstr "Просмотр"
|
375 |
|
@@ -420,7 +420,7 @@ msgid "created on %1$s at %2$s"
|
|
420 |
msgstr ""
|
421 |
|
422 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
423 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
424 |
msgid "Delete"
|
425 |
msgstr ""
|
426 |
|
@@ -451,7 +451,7 @@ msgid "Credit Note #:"
|
|
451 |
msgstr "Свойства заголовка"
|
452 |
|
453 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
454 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
455 |
#, fuzzy
|
456 |
#| msgid "Order Date: %s"
|
457 |
msgid "Date:"
|
@@ -528,12 +528,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
528 |
msgstr ""
|
529 |
|
530 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
531 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
532 |
msgid "Yes"
|
533 |
msgstr ""
|
534 |
|
535 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
536 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
537 |
msgid "No"
|
538 |
msgstr ""
|
539 |
|
@@ -825,14 +825,14 @@ msgstr ""
|
|
825 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
826 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
827 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
828 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
829 |
#, php-format
|
830 |
msgid "Phone: %s"
|
831 |
msgstr "Телефон: %s"
|
832 |
|
833 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
834 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
835 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
836 |
#, fuzzy, php-format
|
837 |
#| msgid "Email us"
|
838 |
msgid "Email: %s"
|
@@ -840,7 +840,7 @@ msgstr "Напишите нам письмо:"
|
|
840 |
|
841 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
842 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
843 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
844 |
#, php-format
|
845 |
msgid "VAT ID: %s"
|
846 |
msgstr ""
|
@@ -889,7 +889,7 @@ msgid "Order #%d - %s"
|
|
889 |
msgstr "Заказ #%d - %s"
|
890 |
|
891 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
892 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
893 |
msgid "Settings"
|
894 |
msgstr "Настройки"
|
895 |
|
@@ -918,17 +918,17 @@ msgstr ""
|
|
918 |
msgid "Total:"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
922 |
#, php-format
|
923 |
msgid "VAT Number: %s"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
927 |
#, php-format
|
928 |
msgid "Purchase Order Number: %s"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
932 |
#, php-format
|
933 |
msgid "%s of %s"
|
934 |
msgstr "%s из %s"
|
@@ -946,7 +946,7 @@ msgstr "Шаблон"
|
|
946 |
|
947 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
948 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
949 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
950 |
msgid "Debug"
|
951 |
msgstr ""
|
952 |
|
@@ -1023,80 +1023,76 @@ msgstr ""
|
|
1023 |
msgid "Interface Options"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1027 |
-
msgid "Debug Options"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1031 |
msgid "New order"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1035 |
msgid "Order on-hold"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1039 |
msgid "Processing order"
|
1040 |
msgstr "Заказ в обработке"
|
1041 |
|
1042 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1043 |
msgid "Completed order"
|
1044 |
msgstr "Выполненный заказ"
|
1045 |
|
1046 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1047 |
msgid "Customer invoice"
|
1048 |
msgstr "Накладная покупателя"
|
1049 |
|
1050 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1051 |
msgid "Disable for free products"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
msgid ""
|
1056 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1057 |
"products."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1061 |
msgid "View PDF"
|
1062 |
msgstr "Просмотреть в PDF"
|
1063 |
|
1064 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1065 |
msgid "Download"
|
1066 |
msgstr "Скачать"
|
1067 |
|
1068 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1069 |
msgid "Open in new browser tab/window"
|
1070 |
msgstr "Открыть в новом браузера вкладки / окна"
|
1071 |
|
1072 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1073 |
msgid "Enable download from my account"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1077 |
msgid ""
|
1078 |
"By default PDF is only downloadable when order has been paid, so order "
|
1079 |
"status should be Processing or Completed."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1083 |
msgid "Enable Email It In"
|
1084 |
msgstr "Включить это Email-оповещение"
|
1085 |
|
1086 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1087 |
msgid "Email It In account"
|
1088 |
msgstr "Прикрепить к e-mail"
|
1089 |
|
1090 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1091 |
#, php-format
|
1092 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1096 |
msgid "Enable Invoice Number column"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1100 |
msgid "Display invoice numbers on Shop Order page."
|
1101 |
msgstr ""
|
1102 |
|
@@ -1278,7 +1274,7 @@ msgid "Change the name of the invoice."
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1281 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1282 |
msgid "Invoice"
|
1283 |
msgstr "Накладная"
|
1284 |
|
@@ -1616,47 +1612,47 @@ msgstr ""
|
|
1616 |
msgid "Product"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1620 |
msgid "Invoice No."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1624 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1625 |
msgid "PDF Invoice"
|
1626 |
msgstr "Накладная в PDF"
|
1627 |
|
1628 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1629 |
msgid "Create"
|
1630 |
msgstr "Создать"
|
1631 |
|
1632 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1633 |
#, fuzzy
|
1634 |
#| msgid "Order Number: %s"
|
1635 |
msgid "Number:"
|
1636 |
msgstr "Номер заказа: %s"
|
1637 |
|
1638 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1639 |
msgid "Sent?"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1643 |
msgid "Update"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1647 |
#, fuzzy
|
1648 |
#| msgid "Are you sure to delete the invoice?"
|
1649 |
msgid "Are you sure to delete the PDF invoice?"
|
1650 |
msgstr "Вы уверены что хотите удалить накладную?"
|
1651 |
|
1652 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1653 |
#, php-format
|
1654 |
msgid ""
|
1655 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1656 |
"an accounting gap!"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1660 |
#, php-format
|
1661 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1662 |
msgstr ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
11 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ru_RU\n"
|
84 |
|
85 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
86 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
87 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
88 |
msgid "Premium"
|
89 |
msgstr "Премиум-поддержка"
|
90 |
|
195 |
msgstr ""
|
196 |
|
197 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
198 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
199 |
msgid "Attach to Emails"
|
200 |
msgstr ""
|
201 |
|
364 |
msgstr ""
|
365 |
|
366 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
367 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
368 |
msgid "View invoice"
|
369 |
msgstr "Просмотреть накладную"
|
370 |
|
371 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
372 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
373 |
msgid "View"
|
374 |
msgstr "Просмотр"
|
375 |
|
420 |
msgstr ""
|
421 |
|
422 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
423 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
424 |
msgid "Delete"
|
425 |
msgstr ""
|
426 |
|
451 |
msgstr "Свойства заголовка"
|
452 |
|
453 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
454 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
455 |
#, fuzzy
|
456 |
#| msgid "Order Date: %s"
|
457 |
msgid "Date:"
|
528 |
msgstr ""
|
529 |
|
530 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
531 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
532 |
msgid "Yes"
|
533 |
msgstr ""
|
534 |
|
535 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
536 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
537 |
msgid "No"
|
538 |
msgstr ""
|
539 |
|
825 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
826 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
827 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
828 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
829 |
#, php-format
|
830 |
msgid "Phone: %s"
|
831 |
msgstr "Телефон: %s"
|
832 |
|
833 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
834 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
835 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
836 |
#, fuzzy, php-format
|
837 |
#| msgid "Email us"
|
838 |
msgid "Email: %s"
|
840 |
|
841 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
842 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
843 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
844 |
#, php-format
|
845 |
msgid "VAT ID: %s"
|
846 |
msgstr ""
|
889 |
msgstr "Заказ #%d - %s"
|
890 |
|
891 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
892 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
893 |
msgid "Settings"
|
894 |
msgstr "Настройки"
|
895 |
|
918 |
msgid "Total:"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
922 |
#, php-format
|
923 |
msgid "VAT Number: %s"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
927 |
#, php-format
|
928 |
msgid "Purchase Order Number: %s"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
932 |
#, php-format
|
933 |
msgid "%s of %s"
|
934 |
msgstr "%s из %s"
|
946 |
|
947 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
948 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
949 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
950 |
msgid "Debug"
|
951 |
msgstr ""
|
952 |
|
1023 |
msgid "Interface Options"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1027 |
msgid "New order"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1031 |
msgid "Order on-hold"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1035 |
msgid "Processing order"
|
1036 |
msgstr "Заказ в обработке"
|
1037 |
|
1038 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1039 |
msgid "Completed order"
|
1040 |
msgstr "Выполненный заказ"
|
1041 |
|
1042 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1043 |
msgid "Customer invoice"
|
1044 |
msgstr "Накладная покупателя"
|
1045 |
|
1046 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1047 |
msgid "Disable for free products"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1051 |
msgid ""
|
1052 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1053 |
"products."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1057 |
msgid "View PDF"
|
1058 |
msgstr "Просмотреть в PDF"
|
1059 |
|
1060 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1061 |
msgid "Download"
|
1062 |
msgstr "Скачать"
|
1063 |
|
1064 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1065 |
msgid "Open in new browser tab/window"
|
1066 |
msgstr "Открыть в новом браузера вкладки / окна"
|
1067 |
|
1068 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1069 |
msgid "Enable download from my account"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1073 |
msgid ""
|
1074 |
"By default PDF is only downloadable when order has been paid, so order "
|
1075 |
"status should be Processing or Completed."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1079 |
msgid "Enable Email It In"
|
1080 |
msgstr "Включить это Email-оповещение"
|
1081 |
|
1082 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1083 |
msgid "Email It In account"
|
1084 |
msgstr "Прикрепить к e-mail"
|
1085 |
|
1086 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1087 |
#, php-format
|
1088 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1092 |
msgid "Enable Invoice Number column"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1096 |
msgid "Display invoice numbers on Shop Order page."
|
1097 |
msgstr ""
|
1098 |
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1277 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1278 |
msgid "Invoice"
|
1279 |
msgstr "Накладная"
|
1280 |
|
1612 |
msgid "Product"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1616 |
msgid "Invoice No."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1620 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1621 |
msgid "PDF Invoice"
|
1622 |
msgstr "Накладная в PDF"
|
1623 |
|
1624 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1625 |
msgid "Create"
|
1626 |
msgstr "Создать"
|
1627 |
|
1628 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1629 |
#, fuzzy
|
1630 |
#| msgid "Order Number: %s"
|
1631 |
msgid "Number:"
|
1632 |
msgstr "Номер заказа: %s"
|
1633 |
|
1634 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1635 |
msgid "Sent?"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1639 |
msgid "Update"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1643 |
#, fuzzy
|
1644 |
#| msgid "Are you sure to delete the invoice?"
|
1645 |
msgid "Are you sure to delete the PDF invoice?"
|
1646 |
msgstr "Вы уверены что хотите удалить накладную?"
|
1647 |
|
1648 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1649 |
#, php-format
|
1650 |
msgid ""
|
1651 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1652 |
"an accounting gap!"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1656 |
#, php-format
|
1657 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1658 |
msgstr ""
|
lang/woocommerce-pdf-invoices-sk_SK.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: 2019-04-
|
6 |
-
"PO-Revision-Date: 2019-04-
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
@@ -78,7 +78,7 @@ msgstr ""
|
|
78 |
|
79 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
80 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
81 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
82 |
msgid "Premium"
|
83 |
msgstr "Platené"
|
84 |
|
@@ -189,7 +189,7 @@ msgid ""
|
|
189 |
msgstr ""
|
190 |
|
191 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
192 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
193 |
msgid "Attach to Emails"
|
194 |
msgstr ""
|
195 |
|
@@ -358,12 +358,12 @@ msgid "Global invoice successfully generated!"
|
|
358 |
msgstr ""
|
359 |
|
360 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
361 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
362 |
msgid "View invoice"
|
363 |
msgstr "Zobraziť faktúru"
|
364 |
|
365 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
366 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
367 |
msgid "View"
|
368 |
msgstr "Zobraziť"
|
369 |
|
@@ -414,7 +414,7 @@ msgid "created on %1$s at %2$s"
|
|
414 |
msgstr ""
|
415 |
|
416 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
417 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
418 |
msgid "Delete"
|
419 |
msgstr ""
|
420 |
|
@@ -445,7 +445,7 @@ msgid "Credit Note #:"
|
|
445 |
msgstr "Záhlavie faktúry"
|
446 |
|
447 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
448 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
449 |
#, fuzzy
|
450 |
#| msgid "Order Date: %s"
|
451 |
msgid "Date:"
|
@@ -522,12 +522,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
525 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
526 |
msgid "Yes"
|
527 |
msgstr ""
|
528 |
|
529 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
530 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
531 |
msgid "No"
|
532 |
msgstr ""
|
533 |
|
@@ -819,14 +819,14 @@ msgstr ""
|
|
819 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
820 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
821 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
822 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
823 |
#, php-format
|
824 |
msgid "Phone: %s"
|
825 |
msgstr "Telefón: %s"
|
826 |
|
827 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
828 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
829 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
830 |
#, fuzzy, php-format
|
831 |
#| msgid "Email us"
|
832 |
msgid "Email: %s"
|
@@ -834,7 +834,7 @@ msgstr "Napíšte nám"
|
|
834 |
|
835 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
836 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
837 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
838 |
#, php-format
|
839 |
msgid "VAT ID: %s"
|
840 |
msgstr ""
|
@@ -883,7 +883,7 @@ msgid "Order #%d - %s"
|
|
883 |
msgstr "Objednávka #%d - %s"
|
884 |
|
885 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
886 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
887 |
msgid "Settings"
|
888 |
msgstr "Nastavenia"
|
889 |
|
@@ -912,17 +912,17 @@ msgstr ""
|
|
912 |
msgid "Total:"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
916 |
#, php-format
|
917 |
msgid "VAT Number: %s"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
921 |
#, php-format
|
922 |
msgid "Purchase Order Number: %s"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
926 |
#, php-format
|
927 |
msgid "%s of %s"
|
928 |
msgstr "%s z %s"
|
@@ -940,7 +940,7 @@ msgstr "Šablóna"
|
|
940 |
|
941 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
942 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
943 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
944 |
msgid "Debug"
|
945 |
msgstr ""
|
946 |
|
@@ -1017,80 +1017,76 @@ msgstr ""
|
|
1017 |
msgid "Interface Options"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1021 |
-
msgid "Debug Options"
|
1022 |
-
msgstr ""
|
1023 |
-
|
1024 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1025 |
msgid "New order"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1029 |
msgid "Order on-hold"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1033 |
msgid "Processing order"
|
1034 |
msgstr "Objednávka sa spracováva"
|
1035 |
|
1036 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1037 |
msgid "Completed order"
|
1038 |
msgstr "Objednávka vybavená"
|
1039 |
|
1040 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1041 |
msgid "Customer invoice"
|
1042 |
msgstr "Klientská faktúra"
|
1043 |
|
1044 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1045 |
msgid "Disable for free products"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1049 |
msgid ""
|
1050 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1051 |
"products."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
msgid "View PDF"
|
1056 |
msgstr "Zobraziť PDF"
|
1057 |
|
1058 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1059 |
msgid "Download"
|
1060 |
msgstr "Stiahnuť"
|
1061 |
|
1062 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1063 |
msgid "Open in new browser tab/window"
|
1064 |
msgstr "Otvoriť v novej záložke/okne prehliadača"
|
1065 |
|
1066 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1067 |
msgid "Enable download from my account"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1071 |
msgid ""
|
1072 |
"By default PDF is only downloadable when order has been paid, so order "
|
1073 |
"status should be Processing or Completed."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1077 |
msgid "Enable Email It In"
|
1078 |
msgstr "Povoliť Email It In"
|
1079 |
|
1080 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1081 |
msgid "Email It In account"
|
1082 |
msgstr "Účet Email it In"
|
1083 |
|
1084 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1085 |
#, php-format
|
1086 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1090 |
msgid "Enable Invoice Number column"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1094 |
msgid "Display invoice numbers on Shop Order page."
|
1095 |
msgstr ""
|
1096 |
|
@@ -1274,7 +1270,7 @@ msgid "Change the name of the invoice."
|
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1277 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1278 |
msgid "Invoice"
|
1279 |
msgstr "Faktúra"
|
1280 |
|
@@ -1612,47 +1608,47 @@ msgstr ""
|
|
1612 |
msgid "Product"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1616 |
msgid "Invoice No."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1620 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1621 |
msgid "PDF Invoice"
|
1622 |
msgstr "PDF Faktúra"
|
1623 |
|
1624 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1625 |
msgid "Create"
|
1626 |
msgstr "Vytvoriť"
|
1627 |
|
1628 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1629 |
#, fuzzy
|
1630 |
#| msgid "Order Number: %s"
|
1631 |
msgid "Number:"
|
1632 |
msgstr "Číslo objednávky: %s"
|
1633 |
|
1634 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1635 |
msgid "Sent?"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1639 |
msgid "Update"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1643 |
#, fuzzy
|
1644 |
#| msgid "Are you sure to delete the invoice?"
|
1645 |
msgid "Are you sure to delete the PDF invoice?"
|
1646 |
msgstr "Ste si istý, že chcete faktúru zrušiť?"
|
1647 |
|
1648 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1649 |
#, php-format
|
1650 |
msgid ""
|
1651 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1652 |
"an accounting gap!"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1656 |
#, php-format
|
1657 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1658 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
6 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
78 |
|
79 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
80 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
81 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
82 |
msgid "Premium"
|
83 |
msgstr "Platené"
|
84 |
|
189 |
msgstr ""
|
190 |
|
191 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
192 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
193 |
msgid "Attach to Emails"
|
194 |
msgstr ""
|
195 |
|
358 |
msgstr ""
|
359 |
|
360 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
361 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
362 |
msgid "View invoice"
|
363 |
msgstr "Zobraziť faktúru"
|
364 |
|
365 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
366 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
367 |
msgid "View"
|
368 |
msgstr "Zobraziť"
|
369 |
|
414 |
msgstr ""
|
415 |
|
416 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
417 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
418 |
msgid "Delete"
|
419 |
msgstr ""
|
420 |
|
445 |
msgstr "Záhlavie faktúry"
|
446 |
|
447 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
448 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
449 |
#, fuzzy
|
450 |
#| msgid "Order Date: %s"
|
451 |
msgid "Date:"
|
522 |
msgstr ""
|
523 |
|
524 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
525 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
526 |
msgid "Yes"
|
527 |
msgstr ""
|
528 |
|
529 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
530 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
531 |
msgid "No"
|
532 |
msgstr ""
|
533 |
|
819 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
820 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
821 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
822 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
823 |
#, php-format
|
824 |
msgid "Phone: %s"
|
825 |
msgstr "Telefón: %s"
|
826 |
|
827 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
828 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
829 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
830 |
#, fuzzy, php-format
|
831 |
#| msgid "Email us"
|
832 |
msgid "Email: %s"
|
834 |
|
835 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
836 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
837 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
838 |
#, php-format
|
839 |
msgid "VAT ID: %s"
|
840 |
msgstr ""
|
883 |
msgstr "Objednávka #%d - %s"
|
884 |
|
885 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
886 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
887 |
msgid "Settings"
|
888 |
msgstr "Nastavenia"
|
889 |
|
912 |
msgid "Total:"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
916 |
#, php-format
|
917 |
msgid "VAT Number: %s"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
921 |
#, php-format
|
922 |
msgid "Purchase Order Number: %s"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
926 |
#, php-format
|
927 |
msgid "%s of %s"
|
928 |
msgstr "%s z %s"
|
940 |
|
941 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
942 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
943 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
944 |
msgid "Debug"
|
945 |
msgstr ""
|
946 |
|
1017 |
msgid "Interface Options"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1021 |
msgid "New order"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1025 |
msgid "Order on-hold"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1029 |
msgid "Processing order"
|
1030 |
msgstr "Objednávka sa spracováva"
|
1031 |
|
1032 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1033 |
msgid "Completed order"
|
1034 |
msgstr "Objednávka vybavená"
|
1035 |
|
1036 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1037 |
msgid "Customer invoice"
|
1038 |
msgstr "Klientská faktúra"
|
1039 |
|
1040 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1041 |
msgid "Disable for free products"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1045 |
msgid ""
|
1046 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1047 |
"products."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1051 |
msgid "View PDF"
|
1052 |
msgstr "Zobraziť PDF"
|
1053 |
|
1054 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1055 |
msgid "Download"
|
1056 |
msgstr "Stiahnuť"
|
1057 |
|
1058 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1059 |
msgid "Open in new browser tab/window"
|
1060 |
msgstr "Otvoriť v novej záložke/okne prehliadača"
|
1061 |
|
1062 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1063 |
msgid "Enable download from my account"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1067 |
msgid ""
|
1068 |
"By default PDF is only downloadable when order has been paid, so order "
|
1069 |
"status should be Processing or Completed."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1073 |
msgid "Enable Email It In"
|
1074 |
msgstr "Povoliť Email It In"
|
1075 |
|
1076 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1077 |
msgid "Email It In account"
|
1078 |
msgstr "Účet Email it In"
|
1079 |
|
1080 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1081 |
#, php-format
|
1082 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1086 |
msgid "Enable Invoice Number column"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1090 |
msgid "Display invoice numbers on Shop Order page."
|
1091 |
msgstr ""
|
1092 |
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1273 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1274 |
msgid "Invoice"
|
1275 |
msgstr "Faktúra"
|
1276 |
|
1608 |
msgid "Product"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1612 |
msgid "Invoice No."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1616 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1617 |
msgid "PDF Invoice"
|
1618 |
msgstr "PDF Faktúra"
|
1619 |
|
1620 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1621 |
msgid "Create"
|
1622 |
msgstr "Vytvoriť"
|
1623 |
|
1624 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1625 |
#, fuzzy
|
1626 |
#| msgid "Order Number: %s"
|
1627 |
msgid "Number:"
|
1628 |
msgstr "Číslo objednávky: %s"
|
1629 |
|
1630 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1631 |
msgid "Sent?"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1635 |
msgid "Update"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1639 |
#, fuzzy
|
1640 |
#| msgid "Are you sure to delete the invoice?"
|
1641 |
msgid "Are you sure to delete the PDF invoice?"
|
1642 |
msgstr "Ste si istý, že chcete faktúru zrušiť?"
|
1643 |
|
1644 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1645 |
#, php-format
|
1646 |
msgid ""
|
1647 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1648 |
"an accounting gap!"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1652 |
#, php-format
|
1653 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1654 |
msgstr ""
|
lang/woocommerce-pdf-invoices-sl_SI.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date: 2019-04-
|
5 |
-
"PO-Revision-Date: 2019-04-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -86,7 +86,7 @@ msgstr ""
|
|
86 |
|
87 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
88 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
89 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
90 |
msgid "Premium"
|
91 |
msgstr ""
|
92 |
|
@@ -191,7 +191,7 @@ msgid ""
|
|
191 |
msgstr ""
|
192 |
|
193 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
194 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
195 |
msgid "Attach to Emails"
|
196 |
msgstr ""
|
197 |
|
@@ -360,12 +360,12 @@ msgid "Global invoice successfully generated!"
|
|
360 |
msgstr ""
|
361 |
|
362 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
363 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
364 |
msgid "View invoice"
|
365 |
msgstr ""
|
366 |
|
367 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
368 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
369 |
msgid "View"
|
370 |
msgstr ""
|
371 |
|
@@ -416,7 +416,7 @@ msgid "created on %1$s at %2$s"
|
|
416 |
msgstr ""
|
417 |
|
418 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
419 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
420 |
msgid "Delete"
|
421 |
msgstr ""
|
422 |
|
@@ -445,7 +445,7 @@ msgid "Credit Note #:"
|
|
445 |
msgstr ""
|
446 |
|
447 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
448 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
449 |
#, fuzzy
|
450 |
#| msgid "Order Date: %s"
|
451 |
msgid "Date:"
|
@@ -522,12 +522,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
525 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
526 |
msgid "Yes"
|
527 |
msgstr ""
|
528 |
|
529 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
530 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
531 |
msgid "No"
|
532 |
msgstr ""
|
533 |
|
@@ -831,21 +831,21 @@ msgstr ""
|
|
831 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
832 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
833 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
834 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
835 |
#, php-format
|
836 |
msgid "Phone: %s"
|
837 |
msgstr ""
|
838 |
|
839 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
840 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
841 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
842 |
#, php-format
|
843 |
msgid "Email: %s"
|
844 |
msgstr ""
|
845 |
|
846 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
847 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
848 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
849 |
#, fuzzy, php-format
|
850 |
#| msgid "VAT Number: %s"
|
851 |
msgid "VAT ID: %s"
|
@@ -895,7 +895,7 @@ msgid "Order #%d - %s"
|
|
895 |
msgstr "Naročilo #%d - %s"
|
896 |
|
897 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
898 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
899 |
msgid "Settings"
|
900 |
msgstr ""
|
901 |
|
@@ -925,17 +925,17 @@ msgstr ""
|
|
925 |
msgid "Total:"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
929 |
#, php-format
|
930 |
msgid "VAT Number: %s"
|
931 |
msgstr "Davčna številka: %s"
|
932 |
|
933 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
934 |
#, php-format
|
935 |
msgid "Purchase Order Number: %s"
|
936 |
msgstr "Številka naročil: %s"
|
937 |
|
938 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
939 |
#, php-format
|
940 |
msgid "%s of %s"
|
941 |
msgstr "%s od %s"
|
@@ -953,7 +953,7 @@ msgstr ""
|
|
953 |
|
954 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
955 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
956 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
957 |
msgid "Debug"
|
958 |
msgstr ""
|
959 |
|
@@ -1038,80 +1038,76 @@ msgstr ""
|
|
1038 |
msgid "Interface Options"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1042 |
-
msgid "Debug Options"
|
1043 |
-
msgstr ""
|
1044 |
-
|
1045 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1046 |
msgid "New order"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1050 |
msgid "Order on-hold"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1054 |
msgid "Processing order"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1058 |
msgid "Completed order"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1062 |
msgid "Customer invoice"
|
1063 |
msgstr "Račun"
|
1064 |
|
1065 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1066 |
msgid "Disable for free products"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1070 |
msgid ""
|
1071 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1072 |
"products."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1076 |
msgid "View PDF"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1080 |
msgid "Download"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1084 |
msgid "Open in new browser tab/window"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1088 |
msgid "Enable download from my account"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1092 |
msgid ""
|
1093 |
"By default PDF is only downloadable when order has been paid, so order "
|
1094 |
"status should be Processing or Completed."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1098 |
msgid "Enable Email It In"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1102 |
msgid "Email It In account"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1106 |
#, php-format
|
1107 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1111 |
msgid "Enable Invoice Number column"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "Display invoice numbers on Shop Order page."
|
1116 |
msgstr ""
|
1117 |
|
@@ -1287,7 +1283,7 @@ msgid "Change the name of the invoice."
|
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1290 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1291 |
msgid "Invoice"
|
1292 |
msgstr "Račun"
|
1293 |
|
@@ -1623,45 +1619,45 @@ msgstr ""
|
|
1623 |
msgid "Product"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1627 |
msgid "Invoice No."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1631 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1632 |
msgid "PDF Invoice"
|
1633 |
msgstr "Račun PDF"
|
1634 |
|
1635 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1636 |
msgid "Create"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1640 |
#, fuzzy
|
1641 |
#| msgid "VAT Number: %s"
|
1642 |
msgid "Number:"
|
1643 |
msgstr "Davčna številka: %s"
|
1644 |
|
1645 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1646 |
msgid "Sent?"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1650 |
msgid "Update"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1654 |
msgid "Are you sure to delete the PDF invoice?"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1658 |
#, php-format
|
1659 |
msgid ""
|
1660 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1661 |
"an accounting gap!"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1665 |
#, php-format
|
1666 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1667 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
86 |
|
87 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
88 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
89 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
90 |
msgid "Premium"
|
91 |
msgstr ""
|
92 |
|
191 |
msgstr ""
|
192 |
|
193 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
194 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
195 |
msgid "Attach to Emails"
|
196 |
msgstr ""
|
197 |
|
360 |
msgstr ""
|
361 |
|
362 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
363 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
364 |
msgid "View invoice"
|
365 |
msgstr ""
|
366 |
|
367 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
368 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
369 |
msgid "View"
|
370 |
msgstr ""
|
371 |
|
416 |
msgstr ""
|
417 |
|
418 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
419 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
420 |
msgid "Delete"
|
421 |
msgstr ""
|
422 |
|
445 |
msgstr ""
|
446 |
|
447 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
448 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
449 |
#, fuzzy
|
450 |
#| msgid "Order Date: %s"
|
451 |
msgid "Date:"
|
522 |
msgstr ""
|
523 |
|
524 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
525 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
526 |
msgid "Yes"
|
527 |
msgstr ""
|
528 |
|
529 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
530 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
531 |
msgid "No"
|
532 |
msgstr ""
|
533 |
|
831 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
832 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
833 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
834 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
835 |
#, php-format
|
836 |
msgid "Phone: %s"
|
837 |
msgstr ""
|
838 |
|
839 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
840 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
841 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
842 |
#, php-format
|
843 |
msgid "Email: %s"
|
844 |
msgstr ""
|
845 |
|
846 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
847 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
848 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
849 |
#, fuzzy, php-format
|
850 |
#| msgid "VAT Number: %s"
|
851 |
msgid "VAT ID: %s"
|
895 |
msgstr "Naročilo #%d - %s"
|
896 |
|
897 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
898 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
899 |
msgid "Settings"
|
900 |
msgstr ""
|
901 |
|
925 |
msgid "Total:"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
929 |
#, php-format
|
930 |
msgid "VAT Number: %s"
|
931 |
msgstr "Davčna številka: %s"
|
932 |
|
933 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
934 |
#, php-format
|
935 |
msgid "Purchase Order Number: %s"
|
936 |
msgstr "Številka naročil: %s"
|
937 |
|
938 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
939 |
#, php-format
|
940 |
msgid "%s of %s"
|
941 |
msgstr "%s od %s"
|
953 |
|
954 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
955 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
956 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
957 |
msgid "Debug"
|
958 |
msgstr ""
|
959 |
|
1038 |
msgid "Interface Options"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1042 |
msgid "New order"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1046 |
msgid "Order on-hold"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1050 |
msgid "Processing order"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1054 |
msgid "Completed order"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1058 |
msgid "Customer invoice"
|
1059 |
msgstr "Račun"
|
1060 |
|
1061 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1062 |
msgid "Disable for free products"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1066 |
msgid ""
|
1067 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1068 |
"products."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1072 |
msgid "View PDF"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1076 |
msgid "Download"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1080 |
msgid "Open in new browser tab/window"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1084 |
msgid "Enable download from my account"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1088 |
msgid ""
|
1089 |
"By default PDF is only downloadable when order has been paid, so order "
|
1090 |
"status should be Processing or Completed."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1094 |
msgid "Enable Email It In"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1098 |
msgid "Email It In account"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1102 |
#, php-format
|
1103 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1107 |
msgid "Enable Invoice Number column"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1111 |
msgid "Display invoice numbers on Shop Order page."
|
1112 |
msgstr ""
|
1113 |
|
1283 |
msgstr ""
|
1284 |
|
1285 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1286 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1287 |
msgid "Invoice"
|
1288 |
msgstr "Račun"
|
1289 |
|
1619 |
msgid "Product"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1623 |
msgid "Invoice No."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1627 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1628 |
msgid "PDF Invoice"
|
1629 |
msgstr "Račun PDF"
|
1630 |
|
1631 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1632 |
msgid "Create"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1636 |
#, fuzzy
|
1637 |
#| msgid "VAT Number: %s"
|
1638 |
msgid "Number:"
|
1639 |
msgstr "Davčna številka: %s"
|
1640 |
|
1641 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1642 |
msgid "Sent?"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1646 |
msgid "Update"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1650 |
msgid "Are you sure to delete the PDF invoice?"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1654 |
#, php-format
|
1655 |
msgid ""
|
1656 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1657 |
"an accounting gap!"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1661 |
#, php-format
|
1662 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1663 |
msgstr ""
|
lang/woocommerce-pdf-invoices-sv_SE.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date: 2019-04-
|
5 |
-
"PO-Revision-Date: 2019-04-
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
@@ -89,7 +89,7 @@ msgstr ""
|
|
89 |
|
90 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
91 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
92 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
93 |
msgid "Premium"
|
94 |
msgstr ""
|
95 |
|
@@ -200,7 +200,7 @@ msgid ""
|
|
200 |
msgstr ""
|
201 |
|
202 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
203 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
204 |
msgid "Attach to Emails"
|
205 |
msgstr ""
|
206 |
|
@@ -369,12 +369,12 @@ msgid "Global invoice successfully generated!"
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
372 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
373 |
msgid "View invoice"
|
374 |
msgstr "Visa Faktura"
|
375 |
|
376 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
377 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
378 |
msgid "View"
|
379 |
msgstr "Visa"
|
380 |
|
@@ -425,7 +425,7 @@ msgid "created on %1$s at %2$s"
|
|
425 |
msgstr ""
|
426 |
|
427 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
428 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
429 |
msgid "Delete"
|
430 |
msgstr ""
|
431 |
|
@@ -456,7 +456,7 @@ msgid "Credit Note #:"
|
|
456 |
msgstr "Heder inställningar"
|
457 |
|
458 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
459 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
460 |
#, fuzzy
|
461 |
#| msgid "Order Date: %s"
|
462 |
msgid "Date:"
|
@@ -531,12 +531,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
@@ -843,14 +843,14 @@ msgstr ""
|
|
843 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
844 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
846 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
847 |
#, php-format
|
848 |
msgid "Phone: %s"
|
849 |
msgstr ""
|
850 |
|
851 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
852 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
853 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
854 |
#, fuzzy, php-format
|
855 |
#| msgid "Email Options"
|
856 |
msgid "Email: %s"
|
@@ -858,7 +858,7 @@ msgstr "E-post inställningar"
|
|
858 |
|
859 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
861 |
-
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:
|
862 |
#, fuzzy, php-format
|
863 |
#| msgid "VAT %s"
|
864 |
msgid "VAT ID: %s"
|
@@ -908,7 +908,7 @@ msgid "Order #%d - %s"
|
|
908 |
msgstr "Order #%d - %s"
|
909 |
|
910 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
911 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
912 |
msgid "Settings"
|
913 |
msgstr ""
|
914 |
|
@@ -938,17 +938,17 @@ msgstr ""
|
|
938 |
msgid "Total:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
942 |
#, php-format
|
943 |
msgid "VAT Number: %s"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
947 |
#, php-format
|
948 |
msgid "Purchase Order Number: %s"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:
|
952 |
#, php-format
|
953 |
msgid "%s of %s"
|
954 |
msgstr ""
|
@@ -966,7 +966,7 @@ msgstr "Mall"
|
|
966 |
|
967 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
968 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
969 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
970 |
msgid "Debug"
|
971 |
msgstr ""
|
972 |
|
@@ -1051,80 +1051,76 @@ msgstr ""
|
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1055 |
-
msgid "Debug Options"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:79
|
1059 |
msgid "New order"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1063 |
msgid "Order on-hold"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1067 |
msgid "Processing order"
|
1068 |
msgstr "Pågående order"
|
1069 |
|
1070 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1071 |
msgid "Completed order"
|
1072 |
msgstr "Genomförd beställning"
|
1073 |
|
1074 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1075 |
msgid "Customer invoice"
|
1076 |
msgstr "Kundfaktura"
|
1077 |
|
1078 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1079 |
msgid "Disable for free products"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1083 |
msgid ""
|
1084 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1085 |
"products."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1089 |
msgid "View PDF"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1093 |
msgid "Download"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1097 |
msgid "Open in new browser tab/window"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1101 |
msgid "Enable download from my account"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1105 |
msgid ""
|
1106 |
"By default PDF is only downloadable when order has been paid, so order "
|
1107 |
"status should be Processing or Completed."
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1111 |
msgid "Enable Email It In"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1115 |
msgid "Email It In account"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1119 |
#, php-format
|
1120 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1124 |
msgid "Enable Invoice Number column"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:
|
1128 |
msgid "Display invoice numbers on Shop Order page."
|
1129 |
msgstr ""
|
1130 |
|
@@ -1308,7 +1304,7 @@ msgid "Change the name of the invoice."
|
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1311 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1312 |
msgid "Invoice"
|
1313 |
msgstr "Faktura"
|
1314 |
|
@@ -1644,47 +1640,47 @@ msgstr ""
|
|
1644 |
msgid "Product"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1648 |
msgid "Invoice No."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1652 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1653 |
msgid "PDF Invoice"
|
1654 |
msgstr "PDF Faktura"
|
1655 |
|
1656 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1657 |
msgid "Create"
|
1658 |
msgstr "Skapa"
|
1659 |
|
1660 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1661 |
#, fuzzy
|
1662 |
#| msgid "Order Number: %s"
|
1663 |
msgid "Number:"
|
1664 |
msgstr "Ordernummer: %s"
|
1665 |
|
1666 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1667 |
msgid "Sent?"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1671 |
msgid "Update"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1675 |
#, fuzzy
|
1676 |
#| msgid "Are you sure to delete the invoice?"
|
1677 |
msgid "Are you sure to delete the PDF invoice?"
|
1678 |
msgstr "Är du säker på att du vill radera fakturan?"
|
1679 |
|
1680 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1681 |
#, php-format
|
1682 |
msgid ""
|
1683 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1684 |
"an accounting gap!"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1688 |
#, php-format
|
1689 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1690 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2019-04-25 14:17+0200\n"
|
5 |
+
"PO-Revision-Date: 2019-04-25 14:17+0200\n"
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
89 |
|
90 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:26
|
91 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:137
|
92 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:416
|
93 |
msgid "Premium"
|
94 |
msgstr ""
|
95 |
|
200 |
msgstr ""
|
201 |
|
202 |
#: woocommerce-pdf-invoices-premium/includes/admin/settings/class-premium.php:286
|
203 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:68
|
204 |
msgid "Attach to Emails"
|
205 |
msgstr ""
|
206 |
|
369 |
msgstr ""
|
370 |
|
371 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
372 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:653
|
373 |
msgid "View invoice"
|
374 |
msgstr "Visa Faktura"
|
375 |
|
376 |
#: woocommerce-pdf-invoices-premium/includes/admin/views/html-global-notice.php:17
|
377 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:735
|
378 |
msgid "View"
|
379 |
msgstr "Visa"
|
380 |
|
425 |
msgstr ""
|
426 |
|
427 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:314
|
428 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:759
|
429 |
msgid "Delete"
|
430 |
msgstr ""
|
431 |
|
456 |
msgstr "Heder inställningar"
|
457 |
|
458 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:590
|
459 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:711
|
460 |
#, fuzzy
|
461 |
#| msgid "Order Date: %s"
|
462 |
msgid "Date:"
|
531 |
msgstr ""
|
532 |
|
533 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
534 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
535 |
msgid "Yes"
|
536 |
msgstr ""
|
537 |
|
538 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:97
|
539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:725
|
540 |
msgid "No"
|
541 |
msgstr ""
|
542 |
|
843 |
#: woocommerce-pdf-invoices-premium/includes/templates/invoice/global/micro/body.php:14
|
844 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php:16
|
845 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:46
|
846 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:44
|
847 |
#, php-format
|
848 |
msgid "Phone: %s"
|
849 |
msgstr ""
|
850 |
|
851 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:49
|
852 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:50
|
853 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:48
|
854 |
#, fuzzy, php-format
|
855 |
#| msgid "Email Options"
|
856 |
msgid "Email: %s"
|
858 |
|
859 |
#: woocommerce-pdf-invoices-premium/includes/templates/credit-note/simple/minimal/header.php:53
|
860 |
#: woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php:54
|
861 |
+
#: woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php:52
|
862 |
#, fuzzy, php-format
|
863 |
#| msgid "VAT %s"
|
864 |
msgid "VAT ID: %s"
|
908 |
msgstr "Order #%d - %s"
|
909 |
|
910 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:105
|
911 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:398
|
912 |
msgid "Settings"
|
913 |
msgstr ""
|
914 |
|
938 |
msgid "Total:"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:676
|
942 |
#, php-format
|
943 |
msgid "VAT Number: %s"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:694
|
947 |
#, php-format
|
948 |
msgid "Purchase Order Number: %s"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php:898
|
952 |
#, php-format
|
953 |
msgid "%s of %s"
|
954 |
msgstr ""
|
966 |
|
967 |
#: woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php:152
|
968 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-debug.php:24
|
969 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:767
|
970 |
msgid "Debug"
|
971 |
msgstr ""
|
972 |
|
1051 |
msgid "Interface Options"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:76
|
|
|
|
|
|
|
|
|
1055 |
msgid "New order"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:81
|
1059 |
msgid "Order on-hold"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:86
|
1063 |
msgid "Processing order"
|
1064 |
msgstr "Pågående order"
|
1065 |
|
1066 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:91
|
1067 |
msgid "Completed order"
|
1068 |
msgstr "Genomförd beställning"
|
1069 |
|
1070 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:96
|
1071 |
msgid "Customer invoice"
|
1072 |
msgstr "Kundfaktura"
|
1073 |
|
1074 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:110
|
1075 |
msgid "Disable for free products"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:112
|
1079 |
msgid ""
|
1080 |
"Skip automatic PDF invoice generation for orders containing only free "
|
1081 |
"products."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:120
|
1085 |
msgid "View PDF"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:127
|
1089 |
msgid "Download"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:128
|
1093 |
msgid "Open in new browser tab/window"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:140
|
1097 |
msgid "Enable download from my account"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:142
|
1101 |
msgid ""
|
1102 |
"By default PDF is only downloadable when order has been paid, so order "
|
1103 |
"status should be Processing or Completed."
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:155
|
1107 |
msgid "Enable Email It In"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:162
|
1111 |
msgid "Email It In account"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:167
|
1115 |
#, php-format
|
1116 |
msgid "Get your account from your %1$s <a href=\"%2$s\">user account</a>."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:178
|
1120 |
msgid "Enable Invoice Number column"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: woocommerce-pdf-invoices/includes/admin/settings/class-general.php:179
|
1124 |
msgid "Display invoice numbers on Shop Order page."
|
1125 |
msgstr ""
|
1126 |
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:293
|
1307 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:848
|
1308 |
msgid "Invoice"
|
1309 |
msgstr "Faktura"
|
1310 |
|
1640 |
msgid "Product"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:616
|
1644 |
msgid "Invoice No."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:668
|
1648 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:690
|
1649 |
msgid "PDF Invoice"
|
1650 |
msgstr "PDF Faktura"
|
1651 |
|
1652 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:705
|
1653 |
msgid "Create"
|
1654 |
msgstr "Skapa"
|
1655 |
|
1656 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:715
|
1657 |
#, fuzzy
|
1658 |
#| msgid "Order Number: %s"
|
1659 |
msgid "Number:"
|
1660 |
msgstr "Ordernummer: %s"
|
1661 |
|
1662 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:724
|
1663 |
msgid "Sent?"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:742
|
1667 |
msgid "Update"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:747
|
1671 |
#, fuzzy
|
1672 |
#| msgid "Are you sure to delete the invoice?"
|
1673 |
msgid "Are you sure to delete the PDF invoice?"
|
1674 |
msgstr "Är du säker på att du vill radera fakturan?"
|
1675 |
|
1676 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:751
|
1677 |
#, php-format
|
1678 |
msgid ""
|
1679 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1680 |
"an accounting gap!"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:754
|
1684 |
#, php-format
|
1685 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1686 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: woocommerce pdf invoices, invoice, packing slips, delivery note, packing list, shipping list, generate, pdf, woocommerce, attachment, email, customer invoice, processing, vat, tax, sequential, number, dropbox, google drive, onedrive, egnyte, cloud, storage
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -344,6 +344,12 @@ Since version 2.9.4 the plugin removed the ability to update the PDF invoice whe
|
|
344 |
|
345 |
== Changelog ==
|
346 |
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
= 3.0.1 - April, 2019 =
|
348 |
|
349 |
- Fixed: Fatal error PLUGIN_SLUG constant.
|
4 |
Tags: woocommerce pdf invoices, invoice, packing slips, delivery note, packing list, shipping list, generate, pdf, woocommerce, attachment, email, customer invoice, processing, vat, tax, sequential, number, dropbox, google drive, onedrive, egnyte, cloud, storage
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 3.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
344 |
|
345 |
== Changelog ==
|
346 |
|
347 |
+
= 3.0.2 - April 25, 2019 =
|
348 |
+
|
349 |
+
- Fixed: Using order number as invoice number.
|
350 |
+
- Fixed: Fatal error sabre ubl_invoice dependency.
|
351 |
+
- Fixed: Formatted base address not showing on packing slips.
|
352 |
+
|
353 |
= 3.0.1 - April, 2019 =
|
354 |
|
355 |
- Fixed: Fatal error PLUGIN_SLUG constant.
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit2dfb663e276989d32c4a979db3885f92::getLoader();
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit5162be7df6bd906625bdc568b9222fb4::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit46eaa0f83e1f340202498774b3cec439
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit2dfb663e276989d32c4a979db3885f92
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit2dfb663e276989d32c4a979db3885f92', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit2dfb663e276989d32c4a979db3885f92', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit2dfb663e276989d32c4a979db3885f92::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit0982b17ebb2ba3f28eaf1c6d85777d2c {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInit5162be7df6bd906625bdc568b9222fb4 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit5162be7df6bd906625bdc568b9222fb4', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit5162be7df6bd906625bdc568b9222fb4', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixesPsr0 = array (
|
10 |
'x' =>
|
@@ -73,8 +73,8 @@ class ComposerStaticInit46eaa0f83e1f340202498774b3cec439
|
|
73 |
public static function getInitializer(ClassLoader $loader)
|
74 |
{
|
75 |
return \Closure::bind(function () use ($loader) {
|
76 |
-
$loader->prefixesPsr0 =
|
77 |
-
$loader->classMap =
|
78 |
|
79 |
}, null, ClassLoader::class);
|
80 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit2dfb663e276989d32c4a979db3885f92
|
8 |
{
|
9 |
public static $prefixesPsr0 = array (
|
10 |
'x' =>
|
73 |
public static function getInitializer(ClassLoader $loader)
|
74 |
{
|
75 |
return \Closure::bind(function () use ($loader) {
|
76 |
+
$loader->prefixesPsr0 = ComposerStaticInit2dfb663e276989d32c4a979db3885f92::$prefixesPsr0;
|
77 |
+
$loader->classMap = ComposerStaticInit2dfb663e276989d32c4a979db3885f92::$classMap;
|
78 |
|
79 |
}, null, ClassLoader::class);
|
80 |
}
|