Version Description
October 10, 2017 =
Added: Filter 'wpi_skip_pdf_invoice_attachment' to skip PDF invoice email attachment.
Fixed: Non-dismissable notice by temporary disabling it.
Fixed: PDF invoice marked as sent when sent to admin.
Download this release
Release Info
Developer | baaaaas |
Plugin | WooCommerce PDF Invoices |
Version | 2.9.6 |
Comparing to | |
See all releases |
Code changes from version 2.9.5 to 2.9.6
- bootstrap.php +3 -3
- includes/admin/class-admin-notices.php +1 -1
- includes/woocommerce-pdf-invoices.php +23 -1
- lang/woocommerce-pdf-invoices-cs_CZ.po +83 -51
- lang/woocommerce-pdf-invoices-de_DE.po +85 -51
- lang/woocommerce-pdf-invoices-es_ES.po +85 -51
- lang/woocommerce-pdf-invoices-et.po +83 -51
- lang/woocommerce-pdf-invoices-fr_FR.po +84 -51
- lang/woocommerce-pdf-invoices-it_IT.po +79 -50
- lang/woocommerce-pdf-invoices-lt_LT.po +79 -50
- lang/woocommerce-pdf-invoices-nb_NO.po +83 -51
- lang/woocommerce-pdf-invoices-nl_NL.po +85 -51
- lang/woocommerce-pdf-invoices-pl_PL.po +83 -51
- lang/woocommerce-pdf-invoices-ro_RO.po +83 -51
- lang/woocommerce-pdf-invoices-ru_RU.po +83 -51
- lang/woocommerce-pdf-invoices-sk_SK.po +79 -50
- lang/woocommerce-pdf-invoices-sl_SI.po +79 -50
- lang/woocommerce-pdf-invoices-sv_SE.po +79 -50
- lang/woocommerce-pdf-invoices.pot +78 -49
- readme.txt +7 -1
bootstrap.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce PDF Invoices
|
4 |
* Plugin URI: https://wordpress.org/plugins/woocommerce-pdf-invoices
|
5 |
* Description: Automatically generate and attach customizable PDF Invoices to WooCommerce emails and connect with Dropbox, Google Drive, OneDrive or Egnyte.
|
6 |
-
* Version: 2.9.
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
@@ -17,9 +17,9 @@ defined( 'ABSPATH' ) or exit;
|
|
17 |
/**
|
18 |
* @deprecated instead use WPI_VERSION.
|
19 |
*/
|
20 |
-
define( 'BEWPI_VERSION', '2.9.
|
21 |
|
22 |
-
define( 'WPI_VERSION', '2.9.
|
23 |
|
24 |
/**
|
25 |
* 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: 2.9.6
|
7 |
* Author: Bas Elbers
|
8 |
* Author URI: http://wcpdfinvoices.com
|
9 |
* License: GPL-2.0+
|
17 |
/**
|
18 |
* @deprecated instead use WPI_VERSION.
|
19 |
*/
|
20 |
+
define( 'BEWPI_VERSION', '2.9.6' );
|
21 |
|
22 |
+
define( 'WPI_VERSION', '2.9.6' );
|
23 |
|
24 |
/**
|
25 |
* Load WooCommerce PDF Invoices plugin.
|
includes/admin/class-admin-notices.php
CHANGED
@@ -23,7 +23,7 @@ class BEWPI_Admin_Notices {
|
|
23 |
public static function init_hooks() {
|
24 |
add_action( 'wp_ajax_dismiss-notice', array( __CLASS__, 'dismiss_notice' ) );
|
25 |
add_action( 'wp_ajax_deactivation-notice', array( __CLASS__, 'admin_notice_deactivation' ) );
|
26 |
-
add_action( 'admin_notices', array( __CLASS__, 'admin_notice_rate' ) );
|
27 |
add_action( 'admin_notices', array( __CLASS__, 'admin_notice_activation' ) );
|
28 |
}
|
29 |
|
23 |
public static function init_hooks() {
|
24 |
add_action( 'wp_ajax_dismiss-notice', array( __CLASS__, 'dismiss_notice' ) );
|
25 |
add_action( 'wp_ajax_deactivation-notice', array( __CLASS__, 'admin_notice_deactivation' ) );
|
26 |
+
//add_action( 'admin_notices', array( __CLASS__, 'admin_notice_rate' ) );
|
27 |
add_action( 'admin_notices', array( __CLASS__, 'admin_notice_activation' ) );
|
28 |
}
|
29 |
|
includes/woocommerce-pdf-invoices.php
CHANGED
@@ -556,8 +556,30 @@ if ( ! class_exists( 'BE_WooCommerce_PDF_Invoices' ) ) {
|
|
556 |
$full_path = $invoice->update();
|
557 |
}
|
558 |
|
|
|
|
|
|
|
|
|
|
|
559 |
$attachments[] = $full_path;
|
560 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
|
562 |
return $attachments;
|
563 |
}
|
556 |
$full_path = $invoice->update();
|
557 |
}
|
558 |
|
559 |
+
if ( apply_filters( 'wpi_skip_pdf_invoice_attachment', false, $status, $order ) ) {
|
560 |
+
return $attachments;
|
561 |
+
}
|
562 |
+
|
563 |
+
// Attach invoice to email.
|
564 |
$attachments[] = $full_path;
|
565 |
+
|
566 |
+
/**
|
567 |
+
* Check if current email is a customer email.
|
568 |
+
*
|
569 |
+
* @var WC_Email $email
|
570 |
+
*/
|
571 |
+
$is_customer_email = false;
|
572 |
+
foreach ( WC()->mailer()->get_emails() as $email ) {
|
573 |
+
if ( $email->id === $status ) {
|
574 |
+
$is_customer_email = $email->is_customer_email();
|
575 |
+
break;
|
576 |
+
}
|
577 |
+
}
|
578 |
+
|
579 |
+
// Only mark the invoice as sent for customer emails.
|
580 |
+
if ( $is_customer_email ) {
|
581 |
+
update_post_meta( $order_id, 'bewpi_pdf_invoice_sent', 1 );
|
582 |
+
}
|
583 |
|
584 |
return $attachments;
|
585 |
}
|
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: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: cs_CZ\n"
|
@@ -350,7 +350,7 @@ msgid "created on %1$s at %2$s"
|
|
350 |
msgstr ""
|
351 |
|
352 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
353 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
354 |
msgid "Delete"
|
355 |
msgstr ""
|
356 |
|
@@ -403,12 +403,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
403 |
msgstr ""
|
404 |
|
405 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
406 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
407 |
msgid "Yes"
|
408 |
msgstr "Ano"
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
412 |
msgid "No"
|
413 |
msgstr "Ne"
|
414 |
|
@@ -434,7 +434,8 @@ msgstr ""
|
|
434 |
msgid ""
|
435 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
436 |
"and total rows. When enabled the standard Table Content settings will be "
|
437 |
-
"ignored."
|
|
|
438 |
msgstr ""
|
439 |
|
440 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -546,36 +547,36 @@ msgstr "Mezisoučet"
|
|
546 |
msgid "Qty"
|
547 |
msgstr "Počet kusů"
|
548 |
|
549 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
550 |
#, fuzzy, php-format
|
551 |
#| msgid "Subtotal"
|
552 |
msgid "Subtotal %s"
|
553 |
msgstr "Mezisoučet"
|
554 |
|
555 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
556 |
#, fuzzy, php-format
|
557 |
#| msgid "Discount"
|
558 |
msgid "Discount %s"
|
559 |
msgstr "Sleva"
|
560 |
|
561 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
562 |
#, fuzzy, php-format
|
563 |
#| msgid "Shipping"
|
564 |
msgid "Shipping %s"
|
565 |
msgstr "Dopravné"
|
566 |
|
567 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
568 |
#, php-format
|
569 |
msgid "%1$s %2$s"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
573 |
#, fuzzy, php-format
|
574 |
#| msgid "Total"
|
575 |
msgid "Total %s"
|
576 |
msgstr "Celkem"
|
577 |
|
578 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
579 |
msgid "Request invoice"
|
580 |
msgstr ""
|
581 |
|
@@ -804,7 +805,7 @@ msgid "Settings"
|
|
804 |
msgstr "Nastavení"
|
805 |
|
806 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
807 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
808 |
msgid "Support"
|
809 |
msgstr "Podpora"
|
810 |
|
@@ -1153,7 +1154,7 @@ msgid "Change the name of the invoice."
|
|
1153 |
msgstr "Změnit označení faktury."
|
1154 |
|
1155 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1156 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1157 |
msgid "Invoice"
|
1158 |
msgstr "Faktura"
|
1159 |
|
@@ -1292,49 +1293,77 @@ msgid ""
|
|
1292 |
msgstr "Tento plugin je dostupný i v prémiové verzi, která nabízí:"
|
1293 |
|
1294 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1295 |
-
msgid "
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1299 |
msgid ""
|
1300 |
-
"
|
|
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1304 |
-
msgid "
|
|
|
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1308 |
-
msgid "
|
|
|
|
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
msgid "Bill periodically by generating and sending global invoices."
|
1313 |
msgstr "Fakturujte periodicky pomocí generování a posílání globálních faktur. "
|
1314 |
|
1315 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1316 |
msgid "Add additional PDF's to PDF invoices."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1320 |
-
msgid "Send
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1324 |
#, php-format
|
1325 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1326 |
msgstr ""
|
1327 |
"Připojte faktury k e-mailům to <a href=\"%s\">WooCommerce Subscriptions</a> ."
|
1328 |
|
1329 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1330 |
msgid "Learn more"
|
1331 |
msgstr "Dozvědět se více"
|
1332 |
|
1333 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1334 |
msgid "Stay up-to-date"
|
1335 |
msgstr "Zůstaňte na vlně"
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid ""
|
1339 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1340 |
"our newsletter."
|
@@ -1342,23 +1371,23 @@ msgstr ""
|
|
1342 |
"Stále pracujeme na nových možnostech, informujte se o novinkách odebíráním "
|
1343 |
"našeho newsletteru."
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "Your email address"
|
1347 |
msgstr "Vaše e-mailová adresa"
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid "Signup"
|
1351 |
msgstr "Přihlásit se "
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
msgid "No spam, ever. Unsubscribe at any time"
|
1355 |
msgstr "Už nikdy žádný spam! Kdykoliv se můžete odhlásit"
|
1356 |
|
1357 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1358 |
msgid "About"
|
1359 |
msgstr "O pluginu"
|
1360 |
|
1361 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1362 |
msgid ""
|
1363 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1364 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1366,17 +1395,17 @@ msgstr ""
|
|
1366 |
"Tento pluginu je open source projekt, který zajišťuje fakturování objednávek "
|
1367 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1368 |
|
1369 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1370 |
#, php-format
|
1371 |
msgid "Version: %s"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1375 |
#, php-format
|
1376 |
msgid "Author: %s"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1380 |
#, php-format
|
1381 |
msgid ""
|
1382 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1384,26 +1413,26 @@ msgid ""
|
|
1384 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1388 |
msgid ""
|
1389 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1390 |
msgstr ""
|
1391 |
"Podporuji tento úžasný bezplatný WooCommerce PDF Invoices plugin pro "
|
1392 |
"WordPress!"
|
1393 |
|
1394 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1395 |
msgid "Need Help?"
|
1396 |
msgstr "Potřebujete pomoc?"
|
1397 |
|
1398 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1399 |
msgid "Frequently Asked Questions"
|
1400 |
msgstr "Nejčastější dotazy"
|
1401 |
|
1402 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1403 |
msgid "Support forum"
|
1404 |
msgstr "Fórum podpory"
|
1405 |
|
1406 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1407 |
msgid "Request a feature"
|
1408 |
msgstr "Navrh na nové možnosti"
|
1409 |
|
@@ -1444,65 +1473,68 @@ msgstr ""
|
|
1444 |
msgid "Shipping Method: %s"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1448 |
msgid "Invoice No."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1452 |
msgid "View invoice"
|
1453 |
msgstr "Prohlédnout fakturu"
|
1454 |
|
1455 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1456 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1457 |
msgid "PDF Invoice"
|
1458 |
msgstr "PDF faktura"
|
1459 |
|
1460 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1461 |
msgid "Create"
|
1462 |
msgstr "Vytvořit"
|
1463 |
|
1464 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1465 |
#, fuzzy
|
1466 |
#| msgid "Order Date: %s"
|
1467 |
msgid "Date:"
|
1468 |
msgstr "Datum objednávky: %s"
|
1469 |
|
1470 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1471 |
#, fuzzy
|
1472 |
#| msgid "VAT Number: %s"
|
1473 |
msgid "Number:"
|
1474 |
msgstr "DIČ: %s"
|
1475 |
|
1476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1477 |
msgid "Sent?"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1481 |
msgid "View"
|
1482 |
msgstr "Prohlédnout"
|
1483 |
|
1484 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1485 |
msgid "Update"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1489 |
#, fuzzy
|
1490 |
#| msgid "Are you sure to delete the invoice?"
|
1491 |
msgid "Are you sure to delete the PDF invoice?"
|
1492 |
msgstr "Opravdu chcete fakturu zrušit?"
|
1493 |
|
1494 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1495 |
#, php-format
|
1496 |
msgid ""
|
1497 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1498 |
"an accounting gap!"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1502 |
#, php-format
|
1503 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1504 |
msgstr ""
|
1505 |
|
|
|
|
|
|
|
1506 |
#~ msgid "Active"
|
1507 |
#~ msgstr "Aktivní"
|
1508 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: cs_CZ\n"
|
350 |
msgstr ""
|
351 |
|
352 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
353 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
354 |
msgid "Delete"
|
355 |
msgstr ""
|
356 |
|
403 |
msgstr ""
|
404 |
|
405 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
406 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
407 |
msgid "Yes"
|
408 |
msgstr "Ano"
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
412 |
msgid "No"
|
413 |
msgstr "Ne"
|
414 |
|
434 |
msgid ""
|
435 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
436 |
"and total rows. When enabled the standard Table Content settings will be "
|
437 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
438 |
+
"template is not supported."
|
439 |
msgstr ""
|
440 |
|
441 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
547 |
msgid "Qty"
|
548 |
msgstr "Počet kusů"
|
549 |
|
550 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
551 |
#, fuzzy, php-format
|
552 |
#| msgid "Subtotal"
|
553 |
msgid "Subtotal %s"
|
554 |
msgstr "Mezisoučet"
|
555 |
|
556 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
557 |
#, fuzzy, php-format
|
558 |
#| msgid "Discount"
|
559 |
msgid "Discount %s"
|
560 |
msgstr "Sleva"
|
561 |
|
562 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
563 |
#, fuzzy, php-format
|
564 |
#| msgid "Shipping"
|
565 |
msgid "Shipping %s"
|
566 |
msgstr "Dopravné"
|
567 |
|
568 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
569 |
#, php-format
|
570 |
msgid "%1$s %2$s"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
574 |
#, fuzzy, php-format
|
575 |
#| msgid "Total"
|
576 |
msgid "Total %s"
|
577 |
msgstr "Celkem"
|
578 |
|
579 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
580 |
msgid "Request invoice"
|
581 |
msgstr ""
|
582 |
|
805 |
msgstr "Nastavení"
|
806 |
|
807 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
808 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
809 |
msgid "Support"
|
810 |
msgstr "Podpora"
|
811 |
|
1154 |
msgstr "Změnit označení faktury."
|
1155 |
|
1156 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1157 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1158 |
msgid "Invoice"
|
1159 |
msgstr "Faktura"
|
1160 |
|
1293 |
msgstr "Tento plugin je dostupný i v prémiové verzi, která nabízí:"
|
1294 |
|
1295 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1296 |
+
msgid ""
|
1297 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1301 |
msgid ""
|
1302 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1303 |
+
"order."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1307 |
+
msgid ""
|
1308 |
+
"Fully customize the table content by modifying line item columns and total "
|
1309 |
+
"rows."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1313 |
+
msgid ""
|
1314 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1315 |
+
"period of time."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1319 |
+
msgid ""
|
1320 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1324 |
+
msgid "Change the font of the PDF invoices."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1328 |
+
msgid ""
|
1329 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1333 |
+
msgid "Bulk generate PDF invoices."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1337 |
+
msgid "Bulk export and/or download PDF invoices."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1341 |
msgid "Bill periodically by generating and sending global invoices."
|
1342 |
msgstr "Fakturujte periodicky pomocí generování a posílání globálních faktur. "
|
1343 |
|
1344 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1345 |
msgid "Add additional PDF's to PDF invoices."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1349 |
+
msgid "Send PDF invoices to multiple recipients."
|
1350 |
+
msgstr ""
|
1351 |
|
1352 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1353 |
#, php-format
|
1354 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1355 |
msgstr ""
|
1356 |
"Připojte faktury k e-mailům to <a href=\"%s\">WooCommerce Subscriptions</a> ."
|
1357 |
|
1358 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1359 |
msgid "Learn more"
|
1360 |
msgstr "Dozvědět se více"
|
1361 |
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1363 |
msgid "Stay up-to-date"
|
1364 |
msgstr "Zůstaňte na vlně"
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1367 |
msgid ""
|
1368 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1369 |
"our newsletter."
|
1371 |
"Stále pracujeme na nových možnostech, informujte se o novinkách odebíráním "
|
1372 |
"našeho newsletteru."
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1375 |
msgid "Your email address"
|
1376 |
msgstr "Vaše e-mailová adresa"
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1379 |
msgid "Signup"
|
1380 |
msgstr "Přihlásit se "
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1383 |
msgid "No spam, ever. Unsubscribe at any time"
|
1384 |
msgstr "Už nikdy žádný spam! Kdykoliv se můžete odhlásit"
|
1385 |
|
1386 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1387 |
msgid "About"
|
1388 |
msgstr "O pluginu"
|
1389 |
|
1390 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1391 |
msgid ""
|
1392 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1393 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1395 |
"Tento pluginu je open source projekt, který zajišťuje fakturování objednávek "
|
1396 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1397 |
|
1398 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1399 |
#, php-format
|
1400 |
msgid "Version: %s"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1404 |
#, php-format
|
1405 |
msgid "Author: %s"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1409 |
#, php-format
|
1410 |
msgid ""
|
1411 |
"We will never ask for donations, but to guarantee future development, we do "
|
1413 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1417 |
msgid ""
|
1418 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1419 |
msgstr ""
|
1420 |
"Podporuji tento úžasný bezplatný WooCommerce PDF Invoices plugin pro "
|
1421 |
"WordPress!"
|
1422 |
|
1423 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1424 |
msgid "Need Help?"
|
1425 |
msgstr "Potřebujete pomoc?"
|
1426 |
|
1427 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1428 |
msgid "Frequently Asked Questions"
|
1429 |
msgstr "Nejčastější dotazy"
|
1430 |
|
1431 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1432 |
msgid "Support forum"
|
1433 |
msgstr "Fórum podpory"
|
1434 |
|
1435 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1436 |
msgid "Request a feature"
|
1437 |
msgstr "Navrh na nové možnosti"
|
1438 |
|
1473 |
msgid "Shipping Method: %s"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1477 |
msgid "Invoice No."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1481 |
msgid "View invoice"
|
1482 |
msgstr "Prohlédnout fakturu"
|
1483 |
|
|
|
1484 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1485 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1486 |
msgid "PDF Invoice"
|
1487 |
msgstr "PDF faktura"
|
1488 |
|
1489 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1490 |
msgid "Create"
|
1491 |
msgstr "Vytvořit"
|
1492 |
|
1493 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1494 |
#, fuzzy
|
1495 |
#| msgid "Order Date: %s"
|
1496 |
msgid "Date:"
|
1497 |
msgstr "Datum objednávky: %s"
|
1498 |
|
1499 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1500 |
#, fuzzy
|
1501 |
#| msgid "VAT Number: %s"
|
1502 |
msgid "Number:"
|
1503 |
msgstr "DIČ: %s"
|
1504 |
|
1505 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1506 |
msgid "Sent?"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1510 |
msgid "View"
|
1511 |
msgstr "Prohlédnout"
|
1512 |
|
1513 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1514 |
msgid "Update"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1518 |
#, fuzzy
|
1519 |
#| msgid "Are you sure to delete the invoice?"
|
1520 |
msgid "Are you sure to delete the PDF invoice?"
|
1521 |
msgstr "Opravdu chcete fakturu zrušit?"
|
1522 |
|
1523 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1524 |
#, php-format
|
1525 |
msgid ""
|
1526 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1527 |
"an accounting gap!"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1531 |
#, php-format
|
1532 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1536 |
+
#~ msgstr "Posílejte zákaznické faktury přímo dodavatelům a dalším subjektům."
|
1537 |
+
|
1538 |
#~ msgid "Active"
|
1539 |
#~ msgstr "Aktivní"
|
1540 |
|
lang/woocommerce-pdf-invoices-de_DE.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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Julius Reich <shop@koerner-musik.de>\n"
|
8 |
"Language-Team: German (Formal)\n"
|
9 |
"Language: de_DE\n"
|
@@ -360,7 +360,7 @@ msgid "created on %1$s at %2$s"
|
|
360 |
msgstr ""
|
361 |
|
362 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
363 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
364 |
msgid "Delete"
|
365 |
msgstr ""
|
366 |
|
@@ -413,12 +413,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
413 |
msgstr "Wählen Sie mehr als eine Bestellung für eine Sammelrechnung aus."
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
417 |
msgid "Yes"
|
418 |
msgstr "Ja"
|
419 |
|
420 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
421 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
422 |
msgid "No"
|
423 |
msgstr "Nein"
|
424 |
|
@@ -450,7 +450,8 @@ msgstr ""
|
|
450 |
msgid ""
|
451 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
452 |
"and total rows. When enabled the standard Table Content settings will be "
|
453 |
-
"ignored."
|
|
|
454 |
msgstr ""
|
455 |
|
456 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -566,37 +567,37 @@ msgstr ""
|
|
566 |
msgid "Qty"
|
567 |
msgstr "Stück"
|
568 |
|
569 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
570 |
#, fuzzy, php-format
|
571 |
#| msgid "Subtotal"
|
572 |
msgid "Subtotal %s"
|
573 |
msgstr "Zwischensumme"
|
574 |
|
575 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
576 |
#, fuzzy, php-format
|
577 |
#| msgid "Discount"
|
578 |
msgid "Discount %s"
|
579 |
msgstr "Rabatt"
|
580 |
|
581 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
582 |
#, fuzzy, php-format
|
583 |
#| msgid "Shipping"
|
584 |
msgid "Shipping %s"
|
585 |
msgstr "Versand"
|
586 |
|
587 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
588 |
#, fuzzy, php-format
|
589 |
#| msgid "%1$s of %2$s"
|
590 |
msgid "%1$s %2$s"
|
591 |
msgstr "%1$s von %2$s"
|
592 |
|
593 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
594 |
#, fuzzy, php-format
|
595 |
#| msgid "Total"
|
596 |
msgid "Total %s"
|
597 |
msgstr "Gesamt"
|
598 |
|
599 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
600 |
msgid "Request invoice"
|
601 |
msgstr "Rechnung anfordern"
|
602 |
|
@@ -838,7 +839,7 @@ msgid "Settings"
|
|
838 |
msgstr "Einstellungen"
|
839 |
|
840 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
841 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
842 |
msgid "Support"
|
843 |
msgstr "Support"
|
844 |
|
@@ -1223,7 +1224,7 @@ msgid "Change the name of the invoice."
|
|
1223 |
msgstr "Ändern Sie den Namen der Rechnung."
|
1224 |
|
1225 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1226 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1227 |
msgid "Invoice"
|
1228 |
msgstr "Rechnung"
|
1229 |
|
@@ -1382,74 +1383,104 @@ msgid ""
|
|
1382 |
msgstr "Dieses Plugin gibt es als Premiumversion mit folgenden Features:"
|
1383 |
|
1384 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1385 |
msgid "Change the font of the PDF invoices."
|
1386 |
msgstr "Schriftart ändern."
|
1387 |
|
1388 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1389 |
msgid ""
|
1390 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1391 |
msgstr ""
|
1392 |
"Rechnungen in unterschiedlichen Sprachen generieren (WPML and Polylang "
|
1393 |
"compatible)."
|
1394 |
|
1395 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1396 |
msgid "Bulk generate PDF invoices."
|
1397 |
msgstr "Mehrere Rechnungen gleichzeitig generieren."
|
1398 |
|
1399 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1400 |
msgid "Bulk export and/or download PDF invoices."
|
1401 |
msgstr "Download/Export mehrerer Rechnungen gleichzeitig."
|
1402 |
|
1403 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1404 |
msgid "Bill periodically by generating and sending global invoices."
|
1405 |
msgstr "Periodische Sammelrechnungen verschicken."
|
1406 |
|
1407 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1408 |
msgid "Add additional PDF's to PDF invoices."
|
1409 |
msgstr "Weitere PDF-Dateien anhängen."
|
1410 |
|
1411 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1412 |
-
msgid "Send
|
1413 |
-
msgstr "
|
1414 |
|
1415 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1416 |
#, php-format
|
1417 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1418 |
msgstr "Rechnungen an <a href=\"%s\">WooCommerce Subscriptions</a> anhängen."
|
1419 |
|
1420 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1421 |
msgid "Learn more"
|
1422 |
msgstr "Mehr erfahren"
|
1423 |
|
1424 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1425 |
msgid "Stay up-to-date"
|
1426 |
msgstr "Bleiben Sie up-to-date"
|
1427 |
|
1428 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1429 |
msgid ""
|
1430 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1431 |
"our newsletter."
|
1432 |
msgstr "Bleiben Sie mit unserem Newsletter up-to-date über neue Funktionen."
|
1433 |
|
1434 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1435 |
msgid "Your email address"
|
1436 |
msgstr "Ihre E-Mail"
|
1437 |
|
1438 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1439 |
msgid "Signup"
|
1440 |
msgstr "Registrieren"
|
1441 |
|
1442 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1443 |
msgid "No spam, ever. Unsubscribe at any time"
|
1444 |
msgstr ""
|
1445 |
"Einwilligung kann jederzeit widerrufen werden, keine Weitergabe der Daten, "
|
1446 |
"kein Spam."
|
1447 |
|
1448 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1449 |
msgid "About"
|
1450 |
msgstr "Über Uns"
|
1451 |
|
1452 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1453 |
msgid ""
|
1454 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1455 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1458,17 +1489,17 @@ msgstr ""
|
|
1458 |
"automatisierter PDF-Rechnungen in <a href=\"http://www.woothemes.com/"
|
1459 |
"woocommerce\">WooCommerce</a> zu schließen."
|
1460 |
|
1461 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1462 |
#, php-format
|
1463 |
msgid "Version: %s"
|
1464 |
msgstr "Version: %s"
|
1465 |
|
1466 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1467 |
#, php-format
|
1468 |
msgid "Author: %s"
|
1469 |
msgstr "Autor: %s"
|
1470 |
|
1471 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1472 |
#, php-format
|
1473 |
msgid ""
|
1474 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1478,25 +1509,25 @@ msgstr ""
|
|
1478 |
"Bitte unterstützen Sie mit einem Rating <a href=\"%1$s\">★★★★★</a><a href="
|
1479 |
"\"%2$s\">unsere Arbeit</a>."
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1482 |
msgid ""
|
1483 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1484 |
msgstr ""
|
1485 |
"Testen sie das kostenlose WooCommerce PDF Invoices plugin for WordPress!"
|
1486 |
|
1487 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1488 |
msgid "Need Help?"
|
1489 |
msgstr "Benötigen Sie Hilfe?"
|
1490 |
|
1491 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1492 |
msgid "Frequently Asked Questions"
|
1493 |
msgstr "FAQ"
|
1494 |
|
1495 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1496 |
msgid "Support forum"
|
1497 |
msgstr "Support forum"
|
1498 |
|
1499 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1500 |
msgid "Request a feature"
|
1501 |
msgstr "Feature Request"
|
1502 |
|
@@ -1537,65 +1568,68 @@ msgstr "Lieferschein"
|
|
1537 |
msgid "Shipping Method: %s"
|
1538 |
msgstr "Versand: %s"
|
1539 |
|
1540 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1541 |
msgid "Invoice No."
|
1542 |
msgstr "Rechnungsnummer"
|
1543 |
|
1544 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1545 |
msgid "View invoice"
|
1546 |
msgstr "Rechnung anzeigen"
|
1547 |
|
1548 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1549 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1550 |
msgid "PDF Invoice"
|
1551 |
msgstr "PDF Rechnung"
|
1552 |
|
1553 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1554 |
msgid "Create"
|
1555 |
msgstr "Erstellen"
|
1556 |
|
1557 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1558 |
#, fuzzy
|
1559 |
#| msgid "Order Date: %s"
|
1560 |
msgid "Date:"
|
1561 |
msgstr "Lieferdatum: %s"
|
1562 |
|
1563 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1564 |
#, fuzzy
|
1565 |
#| msgid "VAT Number: %s"
|
1566 |
msgid "Number:"
|
1567 |
msgstr "USt-IdNr.: %s"
|
1568 |
|
1569 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1570 |
msgid "Sent?"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1574 |
msgid "View"
|
1575 |
msgstr "Anzeigen"
|
1576 |
|
1577 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1578 |
msgid "Update"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1582 |
#, fuzzy
|
1583 |
#| msgid "Are you sure to delete the invoice?"
|
1584 |
msgid "Are you sure to delete the PDF invoice?"
|
1585 |
msgstr "Rechnung wirklich löschen?"
|
1586 |
|
1587 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1588 |
#, php-format
|
1589 |
msgid ""
|
1590 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1591 |
"an accounting gap!"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1595 |
#, php-format
|
1596 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1597 |
msgstr ""
|
1598 |
|
|
|
|
|
|
|
1599 |
#~ msgid "Visible Columns"
|
1600 |
#~ msgstr "Sichtbare Spalten"
|
1601 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
7 |
"Last-Translator: Julius Reich <shop@koerner-musik.de>\n"
|
8 |
"Language-Team: German (Formal)\n"
|
9 |
"Language: de_DE\n"
|
360 |
msgstr ""
|
361 |
|
362 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
363 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
364 |
msgid "Delete"
|
365 |
msgstr ""
|
366 |
|
413 |
msgstr "Wählen Sie mehr als eine Bestellung für eine Sammelrechnung aus."
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
417 |
msgid "Yes"
|
418 |
msgstr "Ja"
|
419 |
|
420 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
421 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
422 |
msgid "No"
|
423 |
msgstr "Nein"
|
424 |
|
450 |
msgid ""
|
451 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
452 |
"and total rows. When enabled the standard Table Content settings will be "
|
453 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
454 |
+
"template is not supported."
|
455 |
msgstr ""
|
456 |
|
457 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
567 |
msgid "Qty"
|
568 |
msgstr "Stück"
|
569 |
|
570 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
571 |
#, fuzzy, php-format
|
572 |
#| msgid "Subtotal"
|
573 |
msgid "Subtotal %s"
|
574 |
msgstr "Zwischensumme"
|
575 |
|
576 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
577 |
#, fuzzy, php-format
|
578 |
#| msgid "Discount"
|
579 |
msgid "Discount %s"
|
580 |
msgstr "Rabatt"
|
581 |
|
582 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
583 |
#, fuzzy, php-format
|
584 |
#| msgid "Shipping"
|
585 |
msgid "Shipping %s"
|
586 |
msgstr "Versand"
|
587 |
|
588 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
589 |
#, fuzzy, php-format
|
590 |
#| msgid "%1$s of %2$s"
|
591 |
msgid "%1$s %2$s"
|
592 |
msgstr "%1$s von %2$s"
|
593 |
|
594 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
595 |
#, fuzzy, php-format
|
596 |
#| msgid "Total"
|
597 |
msgid "Total %s"
|
598 |
msgstr "Gesamt"
|
599 |
|
600 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
601 |
msgid "Request invoice"
|
602 |
msgstr "Rechnung anfordern"
|
603 |
|
839 |
msgstr "Einstellungen"
|
840 |
|
841 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
842 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
843 |
msgid "Support"
|
844 |
msgstr "Support"
|
845 |
|
1224 |
msgstr "Ändern Sie den Namen der Rechnung."
|
1225 |
|
1226 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1227 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1228 |
msgid "Invoice"
|
1229 |
msgstr "Rechnung"
|
1230 |
|
1383 |
msgstr "Dieses Plugin gibt es als Premiumversion mit folgenden Features:"
|
1384 |
|
1385 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1386 |
+
msgid ""
|
1387 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1391 |
+
msgid ""
|
1392 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1393 |
+
"order."
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1397 |
+
msgid ""
|
1398 |
+
"Fully customize the table content by modifying line item columns and total "
|
1399 |
+
"rows."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1403 |
+
msgid ""
|
1404 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1405 |
+
"period of time."
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1409 |
+
#, fuzzy
|
1410 |
+
#| msgid "Let customers generate a global invoice from their account"
|
1411 |
+
msgid ""
|
1412 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1413 |
+
msgstr "Kunden können eine Sammelrechnung in ihrem Konto erstellen"
|
1414 |
+
|
1415 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1416 |
msgid "Change the font of the PDF invoices."
|
1417 |
msgstr "Schriftart ändern."
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1420 |
msgid ""
|
1421 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1422 |
msgstr ""
|
1423 |
"Rechnungen in unterschiedlichen Sprachen generieren (WPML and Polylang "
|
1424 |
"compatible)."
|
1425 |
|
1426 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1427 |
msgid "Bulk generate PDF invoices."
|
1428 |
msgstr "Mehrere Rechnungen gleichzeitig generieren."
|
1429 |
|
1430 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1431 |
msgid "Bulk export and/or download PDF invoices."
|
1432 |
msgstr "Download/Export mehrerer Rechnungen gleichzeitig."
|
1433 |
|
1434 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1435 |
msgid "Bill periodically by generating and sending global invoices."
|
1436 |
msgstr "Periodische Sammelrechnungen verschicken."
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1439 |
msgid "Add additional PDF's to PDF invoices."
|
1440 |
msgstr "Weitere PDF-Dateien anhängen."
|
1441 |
|
1442 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1443 |
+
msgid "Send PDF invoices to multiple recipients."
|
1444 |
+
msgstr ""
|
1445 |
|
1446 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1447 |
#, php-format
|
1448 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1449 |
msgstr "Rechnungen an <a href=\"%s\">WooCommerce Subscriptions</a> anhängen."
|
1450 |
|
1451 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1452 |
msgid "Learn more"
|
1453 |
msgstr "Mehr erfahren"
|
1454 |
|
1455 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1456 |
msgid "Stay up-to-date"
|
1457 |
msgstr "Bleiben Sie up-to-date"
|
1458 |
|
1459 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1460 |
msgid ""
|
1461 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1462 |
"our newsletter."
|
1463 |
msgstr "Bleiben Sie mit unserem Newsletter up-to-date über neue Funktionen."
|
1464 |
|
1465 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1466 |
msgid "Your email address"
|
1467 |
msgstr "Ihre E-Mail"
|
1468 |
|
1469 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1470 |
msgid "Signup"
|
1471 |
msgstr "Registrieren"
|
1472 |
|
1473 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1474 |
msgid "No spam, ever. Unsubscribe at any time"
|
1475 |
msgstr ""
|
1476 |
"Einwilligung kann jederzeit widerrufen werden, keine Weitergabe der Daten, "
|
1477 |
"kein Spam."
|
1478 |
|
1479 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1480 |
msgid "About"
|
1481 |
msgstr "Über Uns"
|
1482 |
|
1483 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1484 |
msgid ""
|
1485 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1486 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1489 |
"automatisierter PDF-Rechnungen in <a href=\"http://www.woothemes.com/"
|
1490 |
"woocommerce\">WooCommerce</a> zu schließen."
|
1491 |
|
1492 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1493 |
#, php-format
|
1494 |
msgid "Version: %s"
|
1495 |
msgstr "Version: %s"
|
1496 |
|
1497 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1498 |
#, php-format
|
1499 |
msgid "Author: %s"
|
1500 |
msgstr "Autor: %s"
|
1501 |
|
1502 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1503 |
#, php-format
|
1504 |
msgid ""
|
1505 |
"We will never ask for donations, but to guarantee future development, we do "
|
1509 |
"Bitte unterstützen Sie mit einem Rating <a href=\"%1$s\">★★★★★</a><a href="
|
1510 |
"\"%2$s\">unsere Arbeit</a>."
|
1511 |
|
1512 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1513 |
msgid ""
|
1514 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1515 |
msgstr ""
|
1516 |
"Testen sie das kostenlose WooCommerce PDF Invoices plugin for WordPress!"
|
1517 |
|
1518 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1519 |
msgid "Need Help?"
|
1520 |
msgstr "Benötigen Sie Hilfe?"
|
1521 |
|
1522 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1523 |
msgid "Frequently Asked Questions"
|
1524 |
msgstr "FAQ"
|
1525 |
|
1526 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1527 |
msgid "Support forum"
|
1528 |
msgstr "Support forum"
|
1529 |
|
1530 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1531 |
msgid "Request a feature"
|
1532 |
msgstr "Feature Request"
|
1533 |
|
1568 |
msgid "Shipping Method: %s"
|
1569 |
msgstr "Versand: %s"
|
1570 |
|
1571 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1572 |
msgid "Invoice No."
|
1573 |
msgstr "Rechnungsnummer"
|
1574 |
|
1575 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1576 |
msgid "View invoice"
|
1577 |
msgstr "Rechnung anzeigen"
|
1578 |
|
|
|
1579 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1580 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1581 |
msgid "PDF Invoice"
|
1582 |
msgstr "PDF Rechnung"
|
1583 |
|
1584 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1585 |
msgid "Create"
|
1586 |
msgstr "Erstellen"
|
1587 |
|
1588 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1589 |
#, fuzzy
|
1590 |
#| msgid "Order Date: %s"
|
1591 |
msgid "Date:"
|
1592 |
msgstr "Lieferdatum: %s"
|
1593 |
|
1594 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1595 |
#, fuzzy
|
1596 |
#| msgid "VAT Number: %s"
|
1597 |
msgid "Number:"
|
1598 |
msgstr "USt-IdNr.: %s"
|
1599 |
|
1600 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1601 |
msgid "Sent?"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1605 |
msgid "View"
|
1606 |
msgstr "Anzeigen"
|
1607 |
|
1608 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1609 |
msgid "Update"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1613 |
#, fuzzy
|
1614 |
#| msgid "Are you sure to delete the invoice?"
|
1615 |
msgid "Are you sure to delete the PDF invoice?"
|
1616 |
msgstr "Rechnung wirklich löschen?"
|
1617 |
|
1618 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1619 |
#, php-format
|
1620 |
msgid ""
|
1621 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1622 |
"an accounting gap!"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1626 |
#, php-format
|
1627 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1631 |
+
#~ msgstr "Rechnungen direkt an Lieferanten und weitere versenden.\n"
|
1632 |
+
|
1633 |
#~ msgid "Visible Columns"
|
1634 |
#~ msgstr "Sichtbare Spalten"
|
1635 |
|
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -361,7 +361,7 @@ msgid "created on %1$s at %2$s"
|
|
361 |
msgstr ""
|
362 |
|
363 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
364 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
365 |
msgid "Delete"
|
366 |
msgstr ""
|
367 |
|
@@ -418,12 +418,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
418 |
msgstr "Selecciona más de un pedido para poder generar una factura global."
|
419 |
|
420 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
421 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
422 |
msgid "Yes"
|
423 |
msgstr "Sí"
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
426 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
427 |
msgid "No"
|
428 |
msgstr "No"
|
429 |
|
@@ -455,7 +455,8 @@ msgstr ""
|
|
455 |
msgid ""
|
456 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
457 |
"and total rows. When enabled the standard Table Content settings will be "
|
458 |
-
"ignored."
|
|
|
459 |
msgstr ""
|
460 |
|
461 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -571,37 +572,37 @@ msgstr ""
|
|
571 |
msgid "Qty"
|
572 |
msgstr "Cant."
|
573 |
|
574 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
575 |
#, fuzzy, php-format
|
576 |
#| msgid "Subtotal"
|
577 |
msgid "Subtotal %s"
|
578 |
msgstr "Subtotal"
|
579 |
|
580 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
581 |
#, fuzzy, php-format
|
582 |
#| msgid "Discount"
|
583 |
msgid "Discount %s"
|
584 |
msgstr "Descuento"
|
585 |
|
586 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
587 |
#, fuzzy, php-format
|
588 |
#| msgid "Shipping"
|
589 |
msgid "Shipping %s"
|
590 |
msgstr "Envío"
|
591 |
|
592 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
593 |
#, fuzzy, php-format
|
594 |
#| msgid "%1$s of %2$s"
|
595 |
msgid "%1$s %2$s"
|
596 |
msgstr "%1$s de %2$s"
|
597 |
|
598 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
599 |
#, fuzzy, php-format
|
600 |
#| msgid "Total"
|
601 |
msgid "Total %s"
|
602 |
msgstr "Total"
|
603 |
|
604 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
605 |
msgid "Request invoice"
|
606 |
msgstr ""
|
607 |
|
@@ -833,7 +834,7 @@ msgid "Settings"
|
|
833 |
msgstr "Ajustes"
|
834 |
|
835 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
836 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
837 |
msgid "Support"
|
838 |
msgstr "Soporte"
|
839 |
|
@@ -1224,7 +1225,7 @@ msgid "Change the name of the invoice."
|
|
1224 |
msgstr "Cambia el nombre de la factura."
|
1225 |
|
1226 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1227 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1228 |
msgid "Invoice"
|
1229 |
msgstr "Factura"
|
1230 |
|
@@ -1387,52 +1388,82 @@ msgstr ""
|
|
1387 |
"características:"
|
1388 |
|
1389 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1390 |
msgid "Change the font of the PDF invoices."
|
1391 |
msgstr "Cambiar el tipo de letra de las facturas PDF."
|
1392 |
|
1393 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1394 |
msgid ""
|
1395 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1396 |
msgstr ""
|
1397 |
"Generar facturas PDF en múltiples lenguajes (Compatible con WPML y Polylang)."
|
1398 |
|
1399 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1400 |
msgid "Bulk generate PDF invoices."
|
1401 |
msgstr "Generar facturas PDF en lote."
|
1402 |
|
1403 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1404 |
msgid "Bulk export and/or download PDF invoices."
|
1405 |
msgstr "Exportar o descargar facturas PDF en lote."
|
1406 |
|
1407 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1408 |
msgid "Bill periodically by generating and sending global invoices."
|
1409 |
msgstr ""
|
1410 |
"Facturar periódicamente mediante generación y envío de facturas globales."
|
1411 |
|
1412 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1413 |
msgid "Add additional PDF's to PDF invoices."
|
1414 |
msgstr "Añadir PDFs adicionales a las facturas PDF."
|
1415 |
|
1416 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1417 |
-
msgid "Send
|
1418 |
-
msgstr "
|
1419 |
|
1420 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1421 |
#, php-format
|
1422 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1423 |
msgstr ""
|
1424 |
"Adjuntar facturas a e-mails de <a href=\"%s\">suscripciones de WooCommerce</"
|
1425 |
"a>."
|
1426 |
|
1427 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1428 |
msgid "Learn more"
|
1429 |
msgstr "Descubre más"
|
1430 |
|
1431 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1432 |
msgid "Stay up-to-date"
|
1433 |
msgstr "Mantente al día"
|
1434 |
|
1435 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1436 |
msgid ""
|
1437 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1438 |
"our newsletter."
|
@@ -1440,23 +1471,23 @@ msgstr ""
|
|
1440 |
"Estamos desarrollando nuevas características constantemente, mantente al día "
|
1441 |
"suscribiéndote a nuestra lista de correo."
|
1442 |
|
1443 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1444 |
msgid "Your email address"
|
1445 |
msgstr "Tu dirección de e-mail"
|
1446 |
|
1447 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1448 |
msgid "Signup"
|
1449 |
msgstr "Alta"
|
1450 |
|
1451 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1452 |
msgid "No spam, ever. Unsubscribe at any time"
|
1453 |
msgstr "Nunca mandamos spam. Date de baja en cualquier momento"
|
1454 |
|
1455 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1456 |
msgid "About"
|
1457 |
msgstr "Acerca de"
|
1458 |
|
1459 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1460 |
msgid ""
|
1461 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1462 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1465,17 +1496,17 @@ msgstr ""
|
|
1465 |
"torno a la facturación de <a href=\"http://www.woothemes.com/woocommerce"
|
1466 |
"\">WooCommerce</a>."
|
1467 |
|
1468 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1469 |
#, php-format
|
1470 |
msgid "Version: %s"
|
1471 |
msgstr "Versión: %s"
|
1472 |
|
1473 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1474 |
#, php-format
|
1475 |
msgid "Author: %s"
|
1476 |
msgstr "Autor: %s"
|
1477 |
|
1478 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1479 |
#, php-format
|
1480 |
msgid ""
|
1481 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1487,26 +1518,26 @@ msgstr ""
|
|
1487 |
"una valoración <a href=\"%1$s\">★★★★★</a> y votando por nuestro <a href="
|
1488 |
"\"%2$s\">trabajo</a>."
|
1489 |
|
1490 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1491 |
msgid ""
|
1492 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1493 |
msgstr ""
|
1494 |
"¡Échale un vistazo a este increíble plugin gratuito de facturas PDF para "
|
1495 |
"Wordpress y WooCommerce!"
|
1496 |
|
1497 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1498 |
msgid "Need Help?"
|
1499 |
msgstr "¿Necesitas ayuda?"
|
1500 |
|
1501 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1502 |
msgid "Frequently Asked Questions"
|
1503 |
msgstr "Preguntas Frecuentes"
|
1504 |
|
1505 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1506 |
msgid "Support forum"
|
1507 |
msgstr "Foro de soporte"
|
1508 |
|
1509 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1510 |
msgid "Request a feature"
|
1511 |
msgstr "Pide una funcionalidad"
|
1512 |
|
@@ -1547,65 +1578,68 @@ msgstr "Nota Empaquetado"
|
|
1547 |
msgid "Shipping Method: %s"
|
1548 |
msgstr "Método de envío: %s"
|
1549 |
|
1550 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1551 |
msgid "Invoice No."
|
1552 |
msgstr "Factura nº"
|
1553 |
|
1554 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1555 |
msgid "View invoice"
|
1556 |
msgstr "Ver factura"
|
1557 |
|
1558 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1559 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1560 |
msgid "PDF Invoice"
|
1561 |
msgstr "PDF Factura"
|
1562 |
|
1563 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1564 |
msgid "Create"
|
1565 |
msgstr "Crear"
|
1566 |
|
1567 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1568 |
#, fuzzy
|
1569 |
#| msgid "Order Date: %s"
|
1570 |
msgid "Date:"
|
1571 |
msgstr "Fecha Pedido: %s"
|
1572 |
|
1573 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1574 |
#, fuzzy
|
1575 |
#| msgid "VAT Number: %s"
|
1576 |
msgid "Number:"
|
1577 |
msgstr "VAT Number: %s"
|
1578 |
|
1579 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1580 |
msgid "Sent?"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1584 |
msgid "View"
|
1585 |
msgstr "Ver"
|
1586 |
|
1587 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1588 |
msgid "Update"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1592 |
#, fuzzy
|
1593 |
#| msgid "Are you sure to delete the invoice?"
|
1594 |
msgid "Are you sure to delete the PDF invoice?"
|
1595 |
msgstr "¿Está seguro de eliminar la factura?"
|
1596 |
|
1597 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1598 |
#, php-format
|
1599 |
msgid ""
|
1600 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1601 |
"an accounting gap!"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1605 |
#, php-format
|
1606 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1607 |
msgstr ""
|
1608 |
|
|
|
|
|
|
|
1609 |
#~ msgid "Visible Columns"
|
1610 |
#~ msgstr "Columnas visibles"
|
1611 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
361 |
msgstr ""
|
362 |
|
363 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
364 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
365 |
msgid "Delete"
|
366 |
msgstr ""
|
367 |
|
418 |
msgstr "Selecciona más de un pedido para poder generar una factura global."
|
419 |
|
420 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
421 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
422 |
msgid "Yes"
|
423 |
msgstr "Sí"
|
424 |
|
425 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
426 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
427 |
msgid "No"
|
428 |
msgstr "No"
|
429 |
|
455 |
msgid ""
|
456 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
457 |
"and total rows. When enabled the standard Table Content settings will be "
|
458 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
459 |
+
"template is not supported."
|
460 |
msgstr ""
|
461 |
|
462 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
572 |
msgid "Qty"
|
573 |
msgstr "Cant."
|
574 |
|
575 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
576 |
#, fuzzy, php-format
|
577 |
#| msgid "Subtotal"
|
578 |
msgid "Subtotal %s"
|
579 |
msgstr "Subtotal"
|
580 |
|
581 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
582 |
#, fuzzy, php-format
|
583 |
#| msgid "Discount"
|
584 |
msgid "Discount %s"
|
585 |
msgstr "Descuento"
|
586 |
|
587 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
588 |
#, fuzzy, php-format
|
589 |
#| msgid "Shipping"
|
590 |
msgid "Shipping %s"
|
591 |
msgstr "Envío"
|
592 |
|
593 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
594 |
#, fuzzy, php-format
|
595 |
#| msgid "%1$s of %2$s"
|
596 |
msgid "%1$s %2$s"
|
597 |
msgstr "%1$s de %2$s"
|
598 |
|
599 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
600 |
#, fuzzy, php-format
|
601 |
#| msgid "Total"
|
602 |
msgid "Total %s"
|
603 |
msgstr "Total"
|
604 |
|
605 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
606 |
msgid "Request invoice"
|
607 |
msgstr ""
|
608 |
|
834 |
msgstr "Ajustes"
|
835 |
|
836 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
837 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
838 |
msgid "Support"
|
839 |
msgstr "Soporte"
|
840 |
|
1225 |
msgstr "Cambia el nombre de la factura."
|
1226 |
|
1227 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1228 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1229 |
msgid "Invoice"
|
1230 |
msgstr "Factura"
|
1231 |
|
1388 |
"características:"
|
1389 |
|
1390 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1391 |
+
msgid ""
|
1392 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1396 |
+
msgid ""
|
1397 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1398 |
+
"order."
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1402 |
+
msgid ""
|
1403 |
+
"Fully customize the table content by modifying line item columns and total "
|
1404 |
+
"rows."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1408 |
+
msgid ""
|
1409 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1410 |
+
"period of time."
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1414 |
+
#, fuzzy
|
1415 |
+
#| msgid "Let customers generate a global invoice from their account"
|
1416 |
+
msgid ""
|
1417 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1418 |
+
msgstr "Permitir a los clientes generar una factura global desde su cuenta"
|
1419 |
+
|
1420 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1421 |
msgid "Change the font of the PDF invoices."
|
1422 |
msgstr "Cambiar el tipo de letra de las facturas PDF."
|
1423 |
|
1424 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1425 |
msgid ""
|
1426 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1427 |
msgstr ""
|
1428 |
"Generar facturas PDF en múltiples lenguajes (Compatible con WPML y Polylang)."
|
1429 |
|
1430 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1431 |
msgid "Bulk generate PDF invoices."
|
1432 |
msgstr "Generar facturas PDF en lote."
|
1433 |
|
1434 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1435 |
msgid "Bulk export and/or download PDF invoices."
|
1436 |
msgstr "Exportar o descargar facturas PDF en lote."
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1439 |
msgid "Bill periodically by generating and sending global invoices."
|
1440 |
msgstr ""
|
1441 |
"Facturar periódicamente mediante generación y envío de facturas globales."
|
1442 |
|
1443 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1444 |
msgid "Add additional PDF's to PDF invoices."
|
1445 |
msgstr "Añadir PDFs adicionales a las facturas PDF."
|
1446 |
|
1447 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1448 |
+
msgid "Send PDF invoices to multiple recipients."
|
1449 |
+
msgstr ""
|
1450 |
|
1451 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1452 |
#, php-format
|
1453 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1454 |
msgstr ""
|
1455 |
"Adjuntar facturas a e-mails de <a href=\"%s\">suscripciones de WooCommerce</"
|
1456 |
"a>."
|
1457 |
|
1458 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1459 |
msgid "Learn more"
|
1460 |
msgstr "Descubre más"
|
1461 |
|
1462 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1463 |
msgid "Stay up-to-date"
|
1464 |
msgstr "Mantente al día"
|
1465 |
|
1466 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1467 |
msgid ""
|
1468 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1469 |
"our newsletter."
|
1471 |
"Estamos desarrollando nuevas características constantemente, mantente al día "
|
1472 |
"suscribiéndote a nuestra lista de correo."
|
1473 |
|
1474 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1475 |
msgid "Your email address"
|
1476 |
msgstr "Tu dirección de e-mail"
|
1477 |
|
1478 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1479 |
msgid "Signup"
|
1480 |
msgstr "Alta"
|
1481 |
|
1482 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1483 |
msgid "No spam, ever. Unsubscribe at any time"
|
1484 |
msgstr "Nunca mandamos spam. Date de baja en cualquier momento"
|
1485 |
|
1486 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1487 |
msgid "About"
|
1488 |
msgstr "Acerca de"
|
1489 |
|
1490 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1491 |
msgid ""
|
1492 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1493 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1496 |
"torno a la facturación de <a href=\"http://www.woothemes.com/woocommerce"
|
1497 |
"\">WooCommerce</a>."
|
1498 |
|
1499 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1500 |
#, php-format
|
1501 |
msgid "Version: %s"
|
1502 |
msgstr "Versión: %s"
|
1503 |
|
1504 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1505 |
#, php-format
|
1506 |
msgid "Author: %s"
|
1507 |
msgstr "Autor: %s"
|
1508 |
|
1509 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1510 |
#, php-format
|
1511 |
msgid ""
|
1512 |
"We will never ask for donations, but to guarantee future development, we do "
|
1518 |
"una valoración <a href=\"%1$s\">★★★★★</a> y votando por nuestro <a href="
|
1519 |
"\"%2$s\">trabajo</a>."
|
1520 |
|
1521 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1522 |
msgid ""
|
1523 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1524 |
msgstr ""
|
1525 |
"¡Échale un vistazo a este increíble plugin gratuito de facturas PDF para "
|
1526 |
"Wordpress y WooCommerce!"
|
1527 |
|
1528 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1529 |
msgid "Need Help?"
|
1530 |
msgstr "¿Necesitas ayuda?"
|
1531 |
|
1532 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1533 |
msgid "Frequently Asked Questions"
|
1534 |
msgstr "Preguntas Frecuentes"
|
1535 |
|
1536 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1537 |
msgid "Support forum"
|
1538 |
msgstr "Foro de soporte"
|
1539 |
|
1540 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1541 |
msgid "Request a feature"
|
1542 |
msgstr "Pide una funcionalidad"
|
1543 |
|
1578 |
msgid "Shipping Method: %s"
|
1579 |
msgstr "Método de envío: %s"
|
1580 |
|
1581 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1582 |
msgid "Invoice No."
|
1583 |
msgstr "Factura nº"
|
1584 |
|
1585 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1586 |
msgid "View invoice"
|
1587 |
msgstr "Ver factura"
|
1588 |
|
|
|
1589 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1590 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1591 |
msgid "PDF Invoice"
|
1592 |
msgstr "PDF Factura"
|
1593 |
|
1594 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1595 |
msgid "Create"
|
1596 |
msgstr "Crear"
|
1597 |
|
1598 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1599 |
#, fuzzy
|
1600 |
#| msgid "Order Date: %s"
|
1601 |
msgid "Date:"
|
1602 |
msgstr "Fecha Pedido: %s"
|
1603 |
|
1604 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1605 |
#, fuzzy
|
1606 |
#| msgid "VAT Number: %s"
|
1607 |
msgid "Number:"
|
1608 |
msgstr "VAT Number: %s"
|
1609 |
|
1610 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1611 |
msgid "Sent?"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1615 |
msgid "View"
|
1616 |
msgstr "Ver"
|
1617 |
|
1618 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1619 |
msgid "Update"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1623 |
#, fuzzy
|
1624 |
#| msgid "Are you sure to delete the invoice?"
|
1625 |
msgid "Are you sure to delete the PDF invoice?"
|
1626 |
msgstr "¿Está seguro de eliminar la factura?"
|
1627 |
|
1628 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1629 |
#, php-format
|
1630 |
msgid ""
|
1631 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1632 |
"an accounting gap!"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1636 |
#, php-format
|
1637 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1641 |
+
#~ msgstr "Mandar facturas de cliente directamente a proveedores y otros."
|
1642 |
+
|
1643 |
#~ msgid "Visible Columns"
|
1644 |
#~ msgstr "Columnas visibles"
|
1645 |
|
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: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: Jüri Laur <jyri@jyrilaur.com>\n"
|
13 |
"Language-Team: Jüri Laur\n"
|
14 |
"Language: et\n"
|
@@ -346,7 +346,7 @@ msgid "created on %1$s at %2$s"
|
|
346 |
msgstr ""
|
347 |
|
348 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
349 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
350 |
msgid "Delete"
|
351 |
msgstr ""
|
352 |
|
@@ -399,12 +399,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
403 |
msgid "Yes"
|
404 |
msgstr ""
|
405 |
|
406 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
407 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
408 |
msgid "No"
|
409 |
msgstr ""
|
410 |
|
@@ -430,7 +430,8 @@ msgstr ""
|
|
430 |
msgid ""
|
431 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
432 |
"and total rows. When enabled the standard Table Content settings will be "
|
433 |
-
"ignored."
|
|
|
434 |
msgstr ""
|
435 |
|
436 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -542,36 +543,36 @@ msgstr "Vahesumma"
|
|
542 |
msgid "Qty"
|
543 |
msgstr "TK"
|
544 |
|
545 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
546 |
#, fuzzy, php-format
|
547 |
#| msgid "Subtotal"
|
548 |
msgid "Subtotal %s"
|
549 |
msgstr "Vahesumma"
|
550 |
|
551 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
552 |
#, fuzzy, php-format
|
553 |
#| msgid "Discount"
|
554 |
msgid "Discount %s"
|
555 |
msgstr "Allahindlus"
|
556 |
|
557 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
558 |
#, fuzzy, php-format
|
559 |
#| msgid "Shipping"
|
560 |
msgid "Shipping %s"
|
561 |
msgstr "Postikulu"
|
562 |
|
563 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
564 |
#, php-format
|
565 |
msgid "%1$s %2$s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
569 |
#, fuzzy, php-format
|
570 |
#| msgid "Total"
|
571 |
msgid "Total %s"
|
572 |
msgstr "Kokku"
|
573 |
|
574 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
575 |
msgid "Request invoice"
|
576 |
msgstr ""
|
577 |
|
@@ -800,7 +801,7 @@ msgid "Settings"
|
|
800 |
msgstr "Seaded"
|
801 |
|
802 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
803 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
804 |
msgid "Support"
|
805 |
msgstr "Abi"
|
806 |
|
@@ -1145,7 +1146,7 @@ msgid "Change the name of the invoice."
|
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1148 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1149 |
msgid "Invoice"
|
1150 |
msgstr "Arve"
|
1151 |
|
@@ -1285,48 +1286,76 @@ msgstr ""
|
|
1285 |
"See plugin pakub preemium-versiooni mis sisaldab järgnevaid funktsioone:"
|
1286 |
|
1287 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1288 |
-
msgid "
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1292 |
msgid ""
|
1293 |
-
"
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1297 |
-
msgid "
|
|
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1301 |
-
msgid "
|
|
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
msgid "Bill periodically by generating and sending global invoices."
|
1306 |
msgstr "Saada perioodilisi arveid - genereerides ja saates globaalseid arveid."
|
1307 |
|
1308 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1309 |
msgid "Add additional PDF's to PDF invoices."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1313 |
-
msgid "Send
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1317 |
#, php-format
|
1318 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1322 |
msgid "Learn more"
|
1323 |
msgstr "Loe lisaks"
|
1324 |
|
1325 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1326 |
msgid "Stay up-to-date"
|
1327 |
msgstr "Hoia ennast kursis"
|
1328 |
|
1329 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1330 |
msgid ""
|
1331 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1332 |
"our newsletter."
|
@@ -1334,23 +1363,23 @@ msgstr ""
|
|
1334 |
"Me oleme pidevalt arendamas uut funktsionaalsust. Ole meie tegemistega "
|
1335 |
"kursis - registreeri ennast meie uudiskirja."
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "Your email address"
|
1339 |
msgstr "Sinu e-maili aadress"
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "Signup"
|
1343 |
msgstr "Registreeri"
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "No spam, ever. Unsubscribe at any time"
|
1347 |
msgstr "Ei mingit rämpsposti. Loobu millal iganes soovid."
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid "About"
|
1351 |
msgstr "Meist"
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
msgid ""
|
1355 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1356 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1358,17 +1387,17 @@ msgstr ""
|
|
1358 |
"See plugin on vabavaraline projekt mis üritab täita lünka <a href=\"http://"
|
1359 |
"www.woothemes.com/woocommerce\">WooCommerce</a> süsteemis."
|
1360 |
|
1361 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1362 |
#, php-format
|
1363 |
msgid "Version: %s"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1367 |
#, php-format
|
1368 |
msgid "Author: %s"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1372 |
#, php-format
|
1373 |
msgid ""
|
1374 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1376,26 +1405,26 @@ msgid ""
|
|
1376 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1380 |
msgid ""
|
1381 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1382 |
msgstr ""
|
1383 |
"Proovi seda tasuta ja uskumatult head WooCommerce PDF Arve pluginat "
|
1384 |
"WordPressile!"
|
1385 |
|
1386 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1387 |
msgid "Need Help?"
|
1388 |
msgstr "Vajad abi?"
|
1389 |
|
1390 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1391 |
msgid "Frequently Asked Questions"
|
1392 |
msgstr "Korduma Kippuvad Küsimused"
|
1393 |
|
1394 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1395 |
msgid "Support forum"
|
1396 |
msgstr "Tugifoorum"
|
1397 |
|
1398 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1399 |
msgid "Request a feature"
|
1400 |
msgstr "Küsi lisafunktsionaalsust"
|
1401 |
|
@@ -1436,65 +1465,68 @@ msgstr ""
|
|
1436 |
msgid "Shipping Method: %s"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1440 |
msgid "Invoice No."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1444 |
msgid "View invoice"
|
1445 |
msgstr "Vaata arvet"
|
1446 |
|
1447 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1448 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1449 |
msgid "PDF Invoice"
|
1450 |
msgstr "PDF Arve"
|
1451 |
|
1452 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1453 |
msgid "Create"
|
1454 |
msgstr "Loo"
|
1455 |
|
1456 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1457 |
#, fuzzy
|
1458 |
#| msgid "Order Date: %s"
|
1459 |
msgid "Date:"
|
1460 |
msgstr "Tellimuse kuupäev %s"
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
#, fuzzy
|
1464 |
#| msgid "VAT Number: %s"
|
1465 |
msgid "Number:"
|
1466 |
msgstr "KMKR nr: %s"
|
1467 |
|
1468 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1469 |
msgid "Sent?"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1473 |
msgid "View"
|
1474 |
msgstr "Vaata"
|
1475 |
|
1476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1477 |
msgid "Update"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1481 |
#, fuzzy
|
1482 |
#| msgid "Are you sure to delete the invoice?"
|
1483 |
msgid "Are you sure to delete the PDF invoice?"
|
1484 |
msgstr "Oled sa kindel, et soovid arvet kustutada?"
|
1485 |
|
1486 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1487 |
#, php-format
|
1488 |
msgid ""
|
1489 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1490 |
"an accounting gap!"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1494 |
#, php-format
|
1495 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1496 |
msgstr ""
|
1497 |
|
|
|
|
|
|
|
1498 |
#, fuzzy
|
1499 |
#~| msgid "Cancel"
|
1500 |
#~ msgid "Cancelled"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
12 |
"Last-Translator: Jüri Laur <jyri@jyrilaur.com>\n"
|
13 |
"Language-Team: Jüri Laur\n"
|
14 |
"Language: et\n"
|
346 |
msgstr ""
|
347 |
|
348 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
349 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
350 |
msgid "Delete"
|
351 |
msgstr ""
|
352 |
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
403 |
msgid "Yes"
|
404 |
msgstr ""
|
405 |
|
406 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
407 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
408 |
msgid "No"
|
409 |
msgstr ""
|
410 |
|
430 |
msgid ""
|
431 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
432 |
"and total rows. When enabled the standard Table Content settings will be "
|
433 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
434 |
+
"template is not supported."
|
435 |
msgstr ""
|
436 |
|
437 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
543 |
msgid "Qty"
|
544 |
msgstr "TK"
|
545 |
|
546 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
547 |
#, fuzzy, php-format
|
548 |
#| msgid "Subtotal"
|
549 |
msgid "Subtotal %s"
|
550 |
msgstr "Vahesumma"
|
551 |
|
552 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
553 |
#, fuzzy, php-format
|
554 |
#| msgid "Discount"
|
555 |
msgid "Discount %s"
|
556 |
msgstr "Allahindlus"
|
557 |
|
558 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
559 |
#, fuzzy, php-format
|
560 |
#| msgid "Shipping"
|
561 |
msgid "Shipping %s"
|
562 |
msgstr "Postikulu"
|
563 |
|
564 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
565 |
#, php-format
|
566 |
msgid "%1$s %2$s"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
570 |
#, fuzzy, php-format
|
571 |
#| msgid "Total"
|
572 |
msgid "Total %s"
|
573 |
msgstr "Kokku"
|
574 |
|
575 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
576 |
msgid "Request invoice"
|
577 |
msgstr ""
|
578 |
|
801 |
msgstr "Seaded"
|
802 |
|
803 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
804 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
805 |
msgid "Support"
|
806 |
msgstr "Abi"
|
807 |
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1149 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1150 |
msgid "Invoice"
|
1151 |
msgstr "Arve"
|
1152 |
|
1286 |
"See plugin pakub preemium-versiooni mis sisaldab järgnevaid funktsioone:"
|
1287 |
|
1288 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1289 |
+
msgid ""
|
1290 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1294 |
msgid ""
|
1295 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1296 |
+
"order."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1300 |
+
msgid ""
|
1301 |
+
"Fully customize the table content by modifying line item columns and total "
|
1302 |
+
"rows."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1306 |
+
msgid ""
|
1307 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1308 |
+
"period of time."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1312 |
+
msgid ""
|
1313 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1317 |
+
msgid "Change the font of the PDF invoices."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1321 |
+
msgid ""
|
1322 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1326 |
+
msgid "Bulk generate PDF invoices."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1330 |
+
msgid "Bulk export and/or download PDF invoices."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1334 |
msgid "Bill periodically by generating and sending global invoices."
|
1335 |
msgstr "Saada perioodilisi arveid - genereerides ja saates globaalseid arveid."
|
1336 |
|
1337 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1338 |
msgid "Add additional PDF's to PDF invoices."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1342 |
+
msgid "Send PDF invoices to multiple recipients."
|
1343 |
+
msgstr ""
|
1344 |
|
1345 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1346 |
#, php-format
|
1347 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1351 |
msgid "Learn more"
|
1352 |
msgstr "Loe lisaks"
|
1353 |
|
1354 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1355 |
msgid "Stay up-to-date"
|
1356 |
msgstr "Hoia ennast kursis"
|
1357 |
|
1358 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1359 |
msgid ""
|
1360 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1361 |
"our newsletter."
|
1363 |
"Me oleme pidevalt arendamas uut funktsionaalsust. Ole meie tegemistega "
|
1364 |
"kursis - registreeri ennast meie uudiskirja."
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1367 |
msgid "Your email address"
|
1368 |
msgstr "Sinu e-maili aadress"
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1371 |
msgid "Signup"
|
1372 |
msgstr "Registreeri"
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1375 |
msgid "No spam, ever. Unsubscribe at any time"
|
1376 |
msgstr "Ei mingit rämpsposti. Loobu millal iganes soovid."
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1379 |
msgid "About"
|
1380 |
msgstr "Meist"
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1383 |
msgid ""
|
1384 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1385 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1387 |
"See plugin on vabavaraline projekt mis üritab täita lünka <a href=\"http://"
|
1388 |
"www.woothemes.com/woocommerce\">WooCommerce</a> süsteemis."
|
1389 |
|
1390 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1391 |
#, php-format
|
1392 |
msgid "Version: %s"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1396 |
#, php-format
|
1397 |
msgid "Author: %s"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1401 |
#, php-format
|
1402 |
msgid ""
|
1403 |
"We will never ask for donations, but to guarantee future development, we do "
|
1405 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1409 |
msgid ""
|
1410 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1411 |
msgstr ""
|
1412 |
"Proovi seda tasuta ja uskumatult head WooCommerce PDF Arve pluginat "
|
1413 |
"WordPressile!"
|
1414 |
|
1415 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1416 |
msgid "Need Help?"
|
1417 |
msgstr "Vajad abi?"
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1420 |
msgid "Frequently Asked Questions"
|
1421 |
msgstr "Korduma Kippuvad Küsimused"
|
1422 |
|
1423 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1424 |
msgid "Support forum"
|
1425 |
msgstr "Tugifoorum"
|
1426 |
|
1427 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1428 |
msgid "Request a feature"
|
1429 |
msgstr "Küsi lisafunktsionaalsust"
|
1430 |
|
1465 |
msgid "Shipping Method: %s"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1469 |
msgid "Invoice No."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1473 |
msgid "View invoice"
|
1474 |
msgstr "Vaata arvet"
|
1475 |
|
|
|
1476 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1477 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1478 |
msgid "PDF Invoice"
|
1479 |
msgstr "PDF Arve"
|
1480 |
|
1481 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1482 |
msgid "Create"
|
1483 |
msgstr "Loo"
|
1484 |
|
1485 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Order Date: %s"
|
1488 |
msgid "Date:"
|
1489 |
msgstr "Tellimuse kuupäev %s"
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1492 |
#, fuzzy
|
1493 |
#| msgid "VAT Number: %s"
|
1494 |
msgid "Number:"
|
1495 |
msgstr "KMKR nr: %s"
|
1496 |
|
1497 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1498 |
msgid "Sent?"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1502 |
msgid "View"
|
1503 |
msgstr "Vaata"
|
1504 |
|
1505 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1506 |
msgid "Update"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1510 |
#, fuzzy
|
1511 |
#| msgid "Are you sure to delete the invoice?"
|
1512 |
msgid "Are you sure to delete the PDF invoice?"
|
1513 |
msgstr "Oled sa kindel, et soovid arvet kustutada?"
|
1514 |
|
1515 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1516 |
#, php-format
|
1517 |
msgid ""
|
1518 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1519 |
"an accounting gap!"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1523 |
#, php-format
|
1524 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1528 |
+
#~ msgstr "Saada kliendi arveid otse tarnijatele ja teistele."
|
1529 |
+
|
1530 |
#, fuzzy
|
1531 |
#~| msgid "Cancel"
|
1532 |
#~ msgid "Cancelled"
|
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Nicolas Bernier <nicolas.bernier@synagila.com>\n"
|
8 |
"Language-Team: Pierre SAIKALI <pierre@mosaika.fr>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -358,7 +358,7 @@ msgid "created on %1$s at %2$s"
|
|
358 |
msgstr ""
|
359 |
|
360 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
361 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
362 |
msgid "Delete"
|
363 |
msgstr ""
|
364 |
|
@@ -411,12 +411,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
411 |
msgstr ""
|
412 |
|
413 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
414 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
415 |
msgid "Yes"
|
416 |
msgstr ""
|
417 |
|
418 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
419 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
420 |
msgid "No"
|
421 |
msgstr ""
|
422 |
|
@@ -448,7 +448,8 @@ msgstr ""
|
|
448 |
msgid ""
|
449 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
450 |
"and total rows. When enabled the standard Table Content settings will be "
|
451 |
-
"ignored."
|
|
|
452 |
msgstr ""
|
453 |
|
454 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -564,36 +565,36 @@ msgstr ""
|
|
564 |
msgid "Qty"
|
565 |
msgstr "Qté"
|
566 |
|
567 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
568 |
#, fuzzy, php-format
|
569 |
#| msgid "Subtotal"
|
570 |
msgid "Subtotal %s"
|
571 |
msgstr "Sous-total"
|
572 |
|
573 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
574 |
#, fuzzy, php-format
|
575 |
#| msgid "Discount"
|
576 |
msgid "Discount %s"
|
577 |
msgstr "Réduction"
|
578 |
|
579 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
580 |
#, fuzzy, php-format
|
581 |
#| msgid "Shipping"
|
582 |
msgid "Shipping %s"
|
583 |
msgstr "Livraison"
|
584 |
|
585 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
586 |
#, php-format
|
587 |
msgid "%1$s %2$s"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
591 |
#, fuzzy, php-format
|
592 |
#| msgid "Total"
|
593 |
msgid "Total %s"
|
594 |
msgstr "Total"
|
595 |
|
596 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
597 |
msgid "Request invoice"
|
598 |
msgstr ""
|
599 |
|
@@ -823,7 +824,7 @@ msgid "Settings"
|
|
823 |
msgstr "Réglages"
|
824 |
|
825 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
826 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
827 |
msgid "Support"
|
828 |
msgstr "Support"
|
829 |
|
@@ -1184,7 +1185,7 @@ msgid "Change the name of the invoice."
|
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1187 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1188 |
msgid "Invoice"
|
1189 |
msgstr "Facture"
|
1190 |
|
@@ -1325,49 +1326,77 @@ msgstr ""
|
|
1325 |
"suivantes :"
|
1326 |
|
1327 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1328 |
-
msgid "
|
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1332 |
msgid ""
|
1333 |
-
"
|
|
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1337 |
-
msgid "
|
|
|
|
|
1338 |
msgstr ""
|
1339 |
|
1340 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1341 |
-
msgid "
|
|
|
|
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1345 |
msgid "Bill periodically by generating and sending global invoices."
|
1346 |
msgstr ""
|
1347 |
"Facturer périodiquement par la génération et l'envoi de factures globales."
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid "Add additional PDF's to PDF invoices."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
-
msgid "Send
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1358 |
#, php-format
|
1359 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
msgid "Learn more"
|
1364 |
msgstr "En savoir plus"
|
1365 |
|
1366 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1367 |
msgid "Stay up-to-date"
|
1368 |
msgstr "Restez informé"
|
1369 |
|
1370 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1371 |
msgid ""
|
1372 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1373 |
"our newsletter."
|
@@ -1375,23 +1404,23 @@ msgstr ""
|
|
1375 |
"Nous développons constamment de nouvelles fonctionnalités, restez informés "
|
1376 |
"en vous inscrivant à notre newsletter."
|
1377 |
|
1378 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1379 |
msgid "Your email address"
|
1380 |
msgstr "Votre adresse e-mail"
|
1381 |
|
1382 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1383 |
msgid "Signup"
|
1384 |
msgstr "Inscription"
|
1385 |
|
1386 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1387 |
msgid "No spam, ever. Unsubscribe at any time"
|
1388 |
msgstr "Pas de spam, jamais. Désabonnez-vous à tout moment"
|
1389 |
|
1390 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1391 |
msgid "About"
|
1392 |
msgstr "À propos"
|
1393 |
|
1394 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1395 |
msgid ""
|
1396 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1397 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1400,17 +1429,17 @@ msgstr ""
|
|
1400 |
"facturation de <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</"
|
1401 |
"a>."
|
1402 |
|
1403 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1404 |
#, php-format
|
1405 |
msgid "Version: %s"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1409 |
#, php-format
|
1410 |
msgid "Author: %s"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1414 |
#, php-format
|
1415 |
msgid ""
|
1416 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1418,26 +1447,26 @@ msgid ""
|
|
1418 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1422 |
msgid ""
|
1423 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1424 |
msgstr ""
|
1425 |
"Essayez cet incroyable plugin gratuit WooCommerce PDF Invoices pour "
|
1426 |
"WordPress !"
|
1427 |
|
1428 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1429 |
msgid "Need Help?"
|
1430 |
msgstr "Besoin d’aide ?"
|
1431 |
|
1432 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1433 |
msgid "Frequently Asked Questions"
|
1434 |
msgstr "Foire aux questions"
|
1435 |
|
1436 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1437 |
msgid "Support forum"
|
1438 |
msgstr "Forum d’aide"
|
1439 |
|
1440 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1441 |
msgid "Request a feature"
|
1442 |
msgstr "Demander une fonctionnalité"
|
1443 |
|
@@ -1478,65 +1507,69 @@ msgstr ""
|
|
1478 |
msgid "Shipping Method: %s"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1482 |
msgid "Invoice No."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1486 |
msgid "View invoice"
|
1487 |
msgstr " Voir la facture"
|
1488 |
|
1489 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1490 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1491 |
msgid "PDF Invoice"
|
1492 |
msgstr "Facture PDF"
|
1493 |
|
1494 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1495 |
msgid "Create"
|
1496 |
msgstr "créer"
|
1497 |
|
1498 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1499 |
#, fuzzy
|
1500 |
#| msgid "Order Date: %s"
|
1501 |
msgid "Date:"
|
1502 |
msgstr "Date de commande : %s"
|
1503 |
|
1504 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1505 |
#, fuzzy
|
1506 |
#| msgid "VAT Number: %s"
|
1507 |
msgid "Number:"
|
1508 |
msgstr "Numéro de TVA :%s"
|
1509 |
|
1510 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1511 |
msgid "Sent?"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1515 |
msgid "View"
|
1516 |
msgstr "Voir"
|
1517 |
|
1518 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1519 |
msgid "Update"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1523 |
#, fuzzy
|
1524 |
#| msgid "Are you sure to delete the invoice?"
|
1525 |
msgid "Are you sure to delete the PDF invoice?"
|
1526 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
1527 |
|
1528 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1529 |
#, php-format
|
1530 |
msgid ""
|
1531 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1532 |
"an accounting gap!"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1536 |
#, php-format
|
1537 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1538 |
msgstr ""
|
1539 |
|
|
|
|
|
|
|
|
|
1540 |
#~ msgid "Visible Columns"
|
1541 |
#~ msgstr "Colonnes Visibles"
|
1542 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+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"
|
358 |
msgstr ""
|
359 |
|
360 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
361 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
362 |
msgid "Delete"
|
363 |
msgstr ""
|
364 |
|
411 |
msgstr ""
|
412 |
|
413 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
414 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
415 |
msgid "Yes"
|
416 |
msgstr ""
|
417 |
|
418 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
419 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
420 |
msgid "No"
|
421 |
msgstr ""
|
422 |
|
448 |
msgid ""
|
449 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
450 |
"and total rows. When enabled the standard Table Content settings will be "
|
451 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
452 |
+
"template is not supported."
|
453 |
msgstr ""
|
454 |
|
455 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
565 |
msgid "Qty"
|
566 |
msgstr "Qté"
|
567 |
|
568 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
569 |
#, fuzzy, php-format
|
570 |
#| msgid "Subtotal"
|
571 |
msgid "Subtotal %s"
|
572 |
msgstr "Sous-total"
|
573 |
|
574 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
575 |
#, fuzzy, php-format
|
576 |
#| msgid "Discount"
|
577 |
msgid "Discount %s"
|
578 |
msgstr "Réduction"
|
579 |
|
580 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
581 |
#, fuzzy, php-format
|
582 |
#| msgid "Shipping"
|
583 |
msgid "Shipping %s"
|
584 |
msgstr "Livraison"
|
585 |
|
586 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
587 |
#, php-format
|
588 |
msgid "%1$s %2$s"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
592 |
#, fuzzy, php-format
|
593 |
#| msgid "Total"
|
594 |
msgid "Total %s"
|
595 |
msgstr "Total"
|
596 |
|
597 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
598 |
msgid "Request invoice"
|
599 |
msgstr ""
|
600 |
|
824 |
msgstr "Réglages"
|
825 |
|
826 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
827 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
828 |
msgid "Support"
|
829 |
msgstr "Support"
|
830 |
|
1185 |
msgstr ""
|
1186 |
|
1187 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1188 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1189 |
msgid "Invoice"
|
1190 |
msgstr "Facture"
|
1191 |
|
1326 |
"suivantes :"
|
1327 |
|
1328 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1329 |
+
msgid ""
|
1330 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1334 |
msgid ""
|
1335 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1336 |
+
"order."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1340 |
+
msgid ""
|
1341 |
+
"Fully customize the table content by modifying line item columns and total "
|
1342 |
+
"rows."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1346 |
+
msgid ""
|
1347 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1348 |
+
"period of time."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1352 |
+
msgid ""
|
1353 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1357 |
+
msgid "Change the font of the PDF invoices."
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1361 |
+
msgid ""
|
1362 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1366 |
+
msgid "Bulk generate PDF invoices."
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1370 |
+
msgid "Bulk export and/or download PDF invoices."
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1374 |
msgid "Bill periodically by generating and sending global invoices."
|
1375 |
msgstr ""
|
1376 |
"Facturer périodiquement par la génération et l'envoi de factures globales."
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1379 |
msgid "Add additional PDF's to PDF invoices."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1383 |
+
msgid "Send PDF invoices to multiple recipients."
|
1384 |
+
msgstr ""
|
1385 |
|
1386 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1387 |
#, php-format
|
1388 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1392 |
msgid "Learn more"
|
1393 |
msgstr "En savoir plus"
|
1394 |
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1396 |
msgid "Stay up-to-date"
|
1397 |
msgstr "Restez informé"
|
1398 |
|
1399 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1400 |
msgid ""
|
1401 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1402 |
"our newsletter."
|
1404 |
"Nous développons constamment de nouvelles fonctionnalités, restez informés "
|
1405 |
"en vous inscrivant à notre newsletter."
|
1406 |
|
1407 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1408 |
msgid "Your email address"
|
1409 |
msgstr "Votre adresse e-mail"
|
1410 |
|
1411 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1412 |
msgid "Signup"
|
1413 |
msgstr "Inscription"
|
1414 |
|
1415 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1416 |
msgid "No spam, ever. Unsubscribe at any time"
|
1417 |
msgstr "Pas de spam, jamais. Désabonnez-vous à tout moment"
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1420 |
msgid "About"
|
1421 |
msgstr "À propos"
|
1422 |
|
1423 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1424 |
msgid ""
|
1425 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1426 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1429 |
"facturation de <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</"
|
1430 |
"a>."
|
1431 |
|
1432 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1433 |
#, php-format
|
1434 |
msgid "Version: %s"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1438 |
#, php-format
|
1439 |
msgid "Author: %s"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1443 |
#, php-format
|
1444 |
msgid ""
|
1445 |
"We will never ask for donations, but to guarantee future development, we do "
|
1447 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1451 |
msgid ""
|
1452 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1453 |
msgstr ""
|
1454 |
"Essayez cet incroyable plugin gratuit WooCommerce PDF Invoices pour "
|
1455 |
"WordPress !"
|
1456 |
|
1457 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1458 |
msgid "Need Help?"
|
1459 |
msgstr "Besoin d’aide ?"
|
1460 |
|
1461 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1462 |
msgid "Frequently Asked Questions"
|
1463 |
msgstr "Foire aux questions"
|
1464 |
|
1465 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1466 |
msgid "Support forum"
|
1467 |
msgstr "Forum d’aide"
|
1468 |
|
1469 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1470 |
msgid "Request a feature"
|
1471 |
msgstr "Demander une fonctionnalité"
|
1472 |
|
1507 |
msgid "Shipping Method: %s"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1511 |
msgid "Invoice No."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1515 |
msgid "View invoice"
|
1516 |
msgstr " Voir la facture"
|
1517 |
|
|
|
1518 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1519 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1520 |
msgid "PDF Invoice"
|
1521 |
msgstr "Facture PDF"
|
1522 |
|
1523 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1524 |
msgid "Create"
|
1525 |
msgstr "créer"
|
1526 |
|
1527 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1528 |
#, fuzzy
|
1529 |
#| msgid "Order Date: %s"
|
1530 |
msgid "Date:"
|
1531 |
msgstr "Date de commande : %s"
|
1532 |
|
1533 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1534 |
#, fuzzy
|
1535 |
#| msgid "VAT Number: %s"
|
1536 |
msgid "Number:"
|
1537 |
msgstr "Numéro de TVA :%s"
|
1538 |
|
1539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1540 |
msgid "Sent?"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1544 |
msgid "View"
|
1545 |
msgstr "Voir"
|
1546 |
|
1547 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1548 |
msgid "Update"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1552 |
#, fuzzy
|
1553 |
#| msgid "Are you sure to delete the invoice?"
|
1554 |
msgid "Are you sure to delete the PDF invoice?"
|
1555 |
msgstr "Êtes-vous certain de vouloir supprimer la facture? "
|
1556 |
|
1557 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1558 |
#, php-format
|
1559 |
msgid ""
|
1560 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1561 |
"an accounting gap!"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1565 |
#, php-format
|
1566 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1570 |
+
#~ msgstr ""
|
1571 |
+
#~ "Envoyer des factures clients directement aux fournisseurs et autres."
|
1572 |
+
|
1573 |
#~ msgid "Visible Columns"
|
1574 |
#~ msgstr "Colonnes Visibles"
|
1575 |
|
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
@@ -355,7 +355,7 @@ msgid "created on %1$s at %2$s"
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
358 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
359 |
msgid "Delete"
|
360 |
msgstr ""
|
361 |
|
@@ -408,12 +408,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
408 |
msgstr ""
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
412 |
msgid "Yes"
|
413 |
msgstr ""
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
417 |
msgid "No"
|
418 |
msgstr ""
|
419 |
|
@@ -445,7 +445,8 @@ msgstr ""
|
|
445 |
msgid ""
|
446 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
447 |
"and total rows. When enabled the standard Table Content settings will be "
|
448 |
-
"ignored."
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -561,36 +562,36 @@ msgstr ""
|
|
561 |
msgid "Qty"
|
562 |
msgstr "Q.tà"
|
563 |
|
564 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
565 |
#, fuzzy, php-format
|
566 |
#| msgid "Subtotal"
|
567 |
msgid "Subtotal %s"
|
568 |
msgstr "Subtotale"
|
569 |
|
570 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
571 |
#, fuzzy, php-format
|
572 |
#| msgid "Discount"
|
573 |
msgid "Discount %s"
|
574 |
msgstr "Sconto"
|
575 |
|
576 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
577 |
#, fuzzy, php-format
|
578 |
#| msgid "Shipping"
|
579 |
msgid "Shipping %s"
|
580 |
msgstr "Spedizione"
|
581 |
|
582 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
583 |
#, php-format
|
584 |
msgid "%1$s %2$s"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
588 |
#, fuzzy, php-format
|
589 |
#| msgid "Total"
|
590 |
msgid "Total %s"
|
591 |
msgstr "Totale"
|
592 |
|
593 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
594 |
msgid "Request invoice"
|
595 |
msgstr ""
|
596 |
|
@@ -820,7 +821,7 @@ msgid "Settings"
|
|
820 |
msgstr "Impostazioni"
|
821 |
|
822 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
823 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
824 |
msgid "Support"
|
825 |
msgstr "Supporto"
|
826 |
|
@@ -1177,7 +1178,7 @@ msgid "Change the name of the invoice."
|
|
1177 |
msgstr ""
|
1178 |
|
1179 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1180 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1181 |
msgid "Invoice"
|
1182 |
msgstr "Fattura"
|
1183 |
|
@@ -1316,70 +1317,98 @@ msgid ""
|
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1319 |
-
msgid "
|
|
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1323 |
msgid ""
|
1324 |
-
"
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1328 |
-
msgid "
|
|
|
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1332 |
-
msgid "
|
|
|
|
|
1333 |
msgstr ""
|
1334 |
|
1335 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1336 |
-
msgid "
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1340 |
msgid "Add additional PDF's to PDF invoices."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1344 |
-
msgid "Send
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1348 |
#, php-format
|
1349 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1353 |
msgid "Learn more"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1357 |
msgid "Stay up-to-date"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1361 |
msgid ""
|
1362 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1363 |
"our newsletter."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1367 |
msgid "Your email address"
|
1368 |
msgstr "Il tuo indirizzo email"
|
1369 |
|
1370 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1371 |
msgid "Signup"
|
1372 |
msgstr "Registrati"
|
1373 |
|
1374 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1375 |
msgid "No spam, ever. Unsubscribe at any time"
|
1376 |
msgstr "Niente spam. Puoi disdire in qualsiasi momento"
|
1377 |
|
1378 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1379 |
msgid "About"
|
1380 |
msgstr "Informazioni su"
|
1381 |
|
1382 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1383 |
msgid ""
|
1384 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1385 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1388,17 +1417,17 @@ msgstr ""
|
|
1388 |
"fatturazione <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</"
|
1389 |
"a>."
|
1390 |
|
1391 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1392 |
#, php-format
|
1393 |
msgid "Version: %s"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1397 |
#, php-format
|
1398 |
msgid "Author: %s"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1402 |
#, php-format
|
1403 |
msgid ""
|
1404 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1406,25 +1435,25 @@ msgid ""
|
|
1406 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1410 |
msgid ""
|
1411 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1412 |
msgstr ""
|
1413 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1414 |
|
1415 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1416 |
msgid "Need Help?"
|
1417 |
msgstr "Ho bisogno di aiuto?"
|
1418 |
|
1419 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1420 |
msgid "Frequently Asked Questions"
|
1421 |
msgstr "Domande frequenti"
|
1422 |
|
1423 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1424 |
msgid "Support forum"
|
1425 |
msgstr "Forum di supporto"
|
1426 |
|
1427 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1428 |
msgid "Request a feature"
|
1429 |
msgstr "Richiedi una funzione"
|
1430 |
|
@@ -1465,61 +1494,61 @@ msgstr ""
|
|
1465 |
msgid "Shipping Method: %s"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1469 |
msgid "Invoice No."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1473 |
msgid "View invoice"
|
1474 |
msgstr "Vedi fattura"
|
1475 |
|
1476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1477 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1478 |
msgid "PDF Invoice"
|
1479 |
msgstr "PDF Invoice"
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1482 |
msgid "Create"
|
1483 |
msgstr "Crea"
|
1484 |
|
1485 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Order Date: %s"
|
1488 |
msgid "Date:"
|
1489 |
msgstr "Data Ordine: %s"
|
1490 |
|
1491 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1492 |
#, fuzzy
|
1493 |
#| msgid "Order Number: %s"
|
1494 |
msgid "Number:"
|
1495 |
msgstr "Ordine Numero: %s"
|
1496 |
|
1497 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1498 |
msgid "Sent?"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1502 |
msgid "View"
|
1503 |
msgstr "Mostra"
|
1504 |
|
1505 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1506 |
msgid "Update"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1510 |
#, fuzzy
|
1511 |
#| msgid "Are you sure to delete the invoice?"
|
1512 |
msgid "Are you sure to delete the PDF invoice?"
|
1513 |
msgstr "Sei sicuro di voler eliminare la fattura?"
|
1514 |
|
1515 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1516 |
#, php-format
|
1517 |
msgid ""
|
1518 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1519 |
"an accounting gap!"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1523 |
#, php-format
|
1524 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1525 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
7 |
"Last-Translator: iduran <iduran@solucionesc2.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it_IT\n"
|
355 |
msgstr ""
|
356 |
|
357 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
358 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
359 |
msgid "Delete"
|
360 |
msgstr ""
|
361 |
|
408 |
msgstr ""
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
412 |
msgid "Yes"
|
413 |
msgstr ""
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
417 |
msgid "No"
|
418 |
msgstr ""
|
419 |
|
445 |
msgid ""
|
446 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
447 |
"and total rows. When enabled the standard Table Content settings will be "
|
448 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
449 |
+
"template is not supported."
|
450 |
msgstr ""
|
451 |
|
452 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
562 |
msgid "Qty"
|
563 |
msgstr "Q.tà"
|
564 |
|
565 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
566 |
#, fuzzy, php-format
|
567 |
#| msgid "Subtotal"
|
568 |
msgid "Subtotal %s"
|
569 |
msgstr "Subtotale"
|
570 |
|
571 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
572 |
#, fuzzy, php-format
|
573 |
#| msgid "Discount"
|
574 |
msgid "Discount %s"
|
575 |
msgstr "Sconto"
|
576 |
|
577 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
578 |
#, fuzzy, php-format
|
579 |
#| msgid "Shipping"
|
580 |
msgid "Shipping %s"
|
581 |
msgstr "Spedizione"
|
582 |
|
583 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
584 |
#, php-format
|
585 |
msgid "%1$s %2$s"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
589 |
#, fuzzy, php-format
|
590 |
#| msgid "Total"
|
591 |
msgid "Total %s"
|
592 |
msgstr "Totale"
|
593 |
|
594 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
595 |
msgid "Request invoice"
|
596 |
msgstr ""
|
597 |
|
821 |
msgstr "Impostazioni"
|
822 |
|
823 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
824 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
825 |
msgid "Support"
|
826 |
msgstr "Supporto"
|
827 |
|
1178 |
msgstr ""
|
1179 |
|
1180 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1181 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1182 |
msgid "Invoice"
|
1183 |
msgstr "Fattura"
|
1184 |
|
1317 |
msgstr ""
|
1318 |
|
1319 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1320 |
+
msgid ""
|
1321 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1325 |
msgid ""
|
1326 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1327 |
+
"order."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1331 |
+
msgid ""
|
1332 |
+
"Fully customize the table content by modifying line item columns and total "
|
1333 |
+
"rows."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1337 |
+
msgid ""
|
1338 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1339 |
+
"period of time."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1343 |
+
msgid ""
|
1344 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1348 |
+
msgid "Change the font of the PDF invoices."
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1352 |
+
msgid ""
|
1353 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1357 |
+
msgid "Bulk generate PDF invoices."
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1361 |
+
msgid "Bulk export and/or download PDF invoices."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1365 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1369 |
msgid "Add additional PDF's to PDF invoices."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1373 |
+
msgid "Send PDF invoices to multiple recipients."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1377 |
#, php-format
|
1378 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1382 |
msgid "Learn more"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1386 |
msgid "Stay up-to-date"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1390 |
msgid ""
|
1391 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1392 |
"our newsletter."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1396 |
msgid "Your email address"
|
1397 |
msgstr "Il tuo indirizzo email"
|
1398 |
|
1399 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1400 |
msgid "Signup"
|
1401 |
msgstr "Registrati"
|
1402 |
|
1403 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1404 |
msgid "No spam, ever. Unsubscribe at any time"
|
1405 |
msgstr "Niente spam. Puoi disdire in qualsiasi momento"
|
1406 |
|
1407 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1408 |
msgid "About"
|
1409 |
msgstr "Informazioni su"
|
1410 |
|
1411 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1412 |
msgid ""
|
1413 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1414 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1417 |
"fatturazione <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</"
|
1418 |
"a>."
|
1419 |
|
1420 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1421 |
#, php-format
|
1422 |
msgid "Version: %s"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1426 |
#, php-format
|
1427 |
msgid "Author: %s"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1431 |
#, php-format
|
1432 |
msgid ""
|
1433 |
"We will never ask for donations, but to guarantee future development, we do "
|
1435 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1439 |
msgid ""
|
1440 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1441 |
msgstr ""
|
1442 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1443 |
|
1444 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1445 |
msgid "Need Help?"
|
1446 |
msgstr "Ho bisogno di aiuto?"
|
1447 |
|
1448 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1449 |
msgid "Frequently Asked Questions"
|
1450 |
msgstr "Domande frequenti"
|
1451 |
|
1452 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1453 |
msgid "Support forum"
|
1454 |
msgstr "Forum di supporto"
|
1455 |
|
1456 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1457 |
msgid "Request a feature"
|
1458 |
msgstr "Richiedi una funzione"
|
1459 |
|
1494 |
msgid "Shipping Method: %s"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1498 |
msgid "Invoice No."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1502 |
msgid "View invoice"
|
1503 |
msgstr "Vedi fattura"
|
1504 |
|
|
|
1505 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1506 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1507 |
msgid "PDF Invoice"
|
1508 |
msgstr "PDF Invoice"
|
1509 |
|
1510 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1511 |
msgid "Create"
|
1512 |
msgstr "Crea"
|
1513 |
|
1514 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1515 |
#, fuzzy
|
1516 |
#| msgid "Order Date: %s"
|
1517 |
msgid "Date:"
|
1518 |
msgstr "Data Ordine: %s"
|
1519 |
|
1520 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1521 |
#, fuzzy
|
1522 |
#| msgid "Order Number: %s"
|
1523 |
msgid "Number:"
|
1524 |
msgstr "Ordine Numero: %s"
|
1525 |
|
1526 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1527 |
msgid "Sent?"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1531 |
msgid "View"
|
1532 |
msgstr "Mostra"
|
1533 |
|
1534 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1535 |
msgid "Update"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1539 |
#, fuzzy
|
1540 |
#| msgid "Are you sure to delete the invoice?"
|
1541 |
msgid "Are you sure to delete the PDF invoice?"
|
1542 |
msgstr "Sei sicuro di voler eliminare la fattura?"
|
1543 |
|
1544 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1545 |
#, php-format
|
1546 |
msgid ""
|
1547 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1548 |
"an accounting gap!"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1552 |
#, php-format
|
1553 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1554 |
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Denisas <setasss@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: lt\n"
|
@@ -354,7 +354,7 @@ msgid "created on %1$s at %2$s"
|
|
354 |
msgstr ""
|
355 |
|
356 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
357 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
358 |
msgid "Delete"
|
359 |
msgstr ""
|
360 |
|
@@ -407,12 +407,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
407 |
msgstr ""
|
408 |
|
409 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
410 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
411 |
msgid "Yes"
|
412 |
msgstr ""
|
413 |
|
414 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
415 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
416 |
msgid "No"
|
417 |
msgstr ""
|
418 |
|
@@ -444,7 +444,8 @@ msgstr ""
|
|
444 |
msgid ""
|
445 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
446 |
"and total rows. When enabled the standard Table Content settings will be "
|
447 |
-
"ignored."
|
|
|
448 |
msgstr ""
|
449 |
|
450 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -558,36 +559,36 @@ msgstr ""
|
|
558 |
msgid "Qty"
|
559 |
msgstr "Kiekis"
|
560 |
|
561 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
562 |
#, fuzzy, php-format
|
563 |
#| msgid "Subtotal"
|
564 |
msgid "Subtotal %s"
|
565 |
msgstr "Viso"
|
566 |
|
567 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
568 |
#, fuzzy, php-format
|
569 |
#| msgid "Discount"
|
570 |
msgid "Discount %s"
|
571 |
msgstr "Nuolaida"
|
572 |
|
573 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
574 |
#, fuzzy, php-format
|
575 |
#| msgid "Shipping"
|
576 |
msgid "Shipping %s"
|
577 |
msgstr "Siuntimas"
|
578 |
|
579 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
580 |
#, php-format
|
581 |
msgid "%1$s %2$s"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
585 |
#, fuzzy, php-format
|
586 |
#| msgid "Total"
|
587 |
msgid "Total %s"
|
588 |
msgstr "Viso"
|
589 |
|
590 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
591 |
msgid "Request invoice"
|
592 |
msgstr ""
|
593 |
|
@@ -817,7 +818,7 @@ msgid "Settings"
|
|
817 |
msgstr "Nustatymai"
|
818 |
|
819 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
820 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
821 |
msgid "Support"
|
822 |
msgstr "Palaikymas"
|
823 |
|
@@ -1169,7 +1170,7 @@ msgid "Change the name of the invoice."
|
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1172 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1173 |
msgid "Invoice"
|
1174 |
msgstr "Sąskaita"
|
1175 |
|
@@ -1308,86 +1309,114 @@ msgid ""
|
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1311 |
-
msgid "
|
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1315 |
msgid ""
|
1316 |
-
"
|
|
|
1317 |
msgstr ""
|
1318 |
|
1319 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1320 |
-
msgid "
|
|
|
|
|
1321 |
msgstr ""
|
1322 |
|
1323 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1324 |
-
msgid "
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1328 |
-
msgid "
|
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1332 |
msgid "Add additional PDF's to PDF invoices."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1336 |
-
msgid "Send
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1340 |
#, php-format
|
1341 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1345 |
msgid "Learn more"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1349 |
msgid "Stay up-to-date"
|
1350 |
msgstr "Sekite naujienas"
|
1351 |
|
1352 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1353 |
msgid ""
|
1354 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1355 |
"our newsletter."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1359 |
msgid "Your email address"
|
1360 |
msgstr "Jūsų el. paštas"
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
msgid "Signup"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1367 |
msgid "No spam, ever. Unsubscribe at any time"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1371 |
msgid "About"
|
1372 |
msgstr "Apie"
|
1373 |
|
1374 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1375 |
msgid ""
|
1376 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1377 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
#, php-format
|
1382 |
msgid "Version: %s"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1386 |
#, php-format
|
1387 |
msgid "Author: %s"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1391 |
#, php-format
|
1392 |
msgid ""
|
1393 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1395,24 +1424,24 @@ msgid ""
|
|
1395 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1399 |
msgid ""
|
1400 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1404 |
msgid "Need Help?"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1408 |
msgid "Frequently Asked Questions"
|
1409 |
msgstr "Dažnai užduodami klausimai"
|
1410 |
|
1411 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1412 |
msgid "Support forum"
|
1413 |
msgstr "Aplankyti pagalbos forumą"
|
1414 |
|
1415 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1416 |
msgid "Request a feature"
|
1417 |
msgstr "Pasiūlyti galimybę"
|
1418 |
|
@@ -1453,61 +1482,61 @@ msgstr ""
|
|
1453 |
msgid "Shipping Method: %s"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1457 |
msgid "Invoice No."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1461 |
msgid "View invoice"
|
1462 |
msgstr "Peržiūrėti sąskaitą faktūrą"
|
1463 |
|
1464 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1465 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1466 |
msgid "PDF Invoice"
|
1467 |
msgstr "Sąskaita-faktūra pdf formatu"
|
1468 |
|
1469 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1470 |
msgid "Create"
|
1471 |
msgstr "Sukurti"
|
1472 |
|
1473 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1474 |
#, fuzzy
|
1475 |
#| msgid "Order Date: %s"
|
1476 |
msgid "Date:"
|
1477 |
msgstr "Užsakymo data: %s"
|
1478 |
|
1479 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1480 |
#, fuzzy
|
1481 |
#| msgid "Order Number: %s"
|
1482 |
msgid "Number:"
|
1483 |
msgstr "Užsaymo numeris: %s"
|
1484 |
|
1485 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1486 |
msgid "Sent?"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1490 |
msgid "View"
|
1491 |
msgstr "Peržiūrėti"
|
1492 |
|
1493 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1494 |
msgid "Update"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1498 |
#, fuzzy
|
1499 |
#| msgid "Are you sure to delete the invoice?"
|
1500 |
msgid "Are you sure to delete the PDF invoice?"
|
1501 |
msgstr "Ar Jūs esate tikras, kad norite ištrinti sąskaitą faktūrą?"
|
1502 |
|
1503 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1504 |
#, php-format
|
1505 |
msgid ""
|
1506 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1507 |
"an accounting gap!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1511 |
#, php-format
|
1512 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1513 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
7 |
"Last-Translator: Denisas <setasss@yahoo.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: lt\n"
|
354 |
msgstr ""
|
355 |
|
356 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
357 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
358 |
msgid "Delete"
|
359 |
msgstr ""
|
360 |
|
407 |
msgstr ""
|
408 |
|
409 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
410 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
411 |
msgid "Yes"
|
412 |
msgstr ""
|
413 |
|
414 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
415 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
416 |
msgid "No"
|
417 |
msgstr ""
|
418 |
|
444 |
msgid ""
|
445 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
446 |
"and total rows. When enabled the standard Table Content settings will be "
|
447 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
448 |
+
"template is not supported."
|
449 |
msgstr ""
|
450 |
|
451 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
559 |
msgid "Qty"
|
560 |
msgstr "Kiekis"
|
561 |
|
562 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
563 |
#, fuzzy, php-format
|
564 |
#| msgid "Subtotal"
|
565 |
msgid "Subtotal %s"
|
566 |
msgstr "Viso"
|
567 |
|
568 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
569 |
#, fuzzy, php-format
|
570 |
#| msgid "Discount"
|
571 |
msgid "Discount %s"
|
572 |
msgstr "Nuolaida"
|
573 |
|
574 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
575 |
#, fuzzy, php-format
|
576 |
#| msgid "Shipping"
|
577 |
msgid "Shipping %s"
|
578 |
msgstr "Siuntimas"
|
579 |
|
580 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
581 |
#, php-format
|
582 |
msgid "%1$s %2$s"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
586 |
#, fuzzy, php-format
|
587 |
#| msgid "Total"
|
588 |
msgid "Total %s"
|
589 |
msgstr "Viso"
|
590 |
|
591 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
592 |
msgid "Request invoice"
|
593 |
msgstr ""
|
594 |
|
818 |
msgstr "Nustatymai"
|
819 |
|
820 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
821 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
822 |
msgid "Support"
|
823 |
msgstr "Palaikymas"
|
824 |
|
1170 |
msgstr ""
|
1171 |
|
1172 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1173 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1174 |
msgid "Invoice"
|
1175 |
msgstr "Sąskaita"
|
1176 |
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1312 |
+
msgid ""
|
1313 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1317 |
msgid ""
|
1318 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1319 |
+
"order."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1323 |
+
msgid ""
|
1324 |
+
"Fully customize the table content by modifying line item columns and total "
|
1325 |
+
"rows."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1329 |
+
msgid ""
|
1330 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1331 |
+
"period of time."
|
1332 |
msgstr ""
|
1333 |
|
1334 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1335 |
+
msgid ""
|
1336 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1340 |
+
msgid "Change the font of the PDF invoices."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1344 |
+
msgid ""
|
1345 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1349 |
+
msgid "Bulk generate PDF invoices."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1353 |
+
msgid "Bulk export and/or download PDF invoices."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1357 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1361 |
msgid "Add additional PDF's to PDF invoices."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1365 |
+
msgid "Send PDF invoices to multiple recipients."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1369 |
#, php-format
|
1370 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1374 |
msgid "Learn more"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1378 |
msgid "Stay up-to-date"
|
1379 |
msgstr "Sekite naujienas"
|
1380 |
|
1381 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1382 |
msgid ""
|
1383 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1384 |
"our newsletter."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1388 |
msgid "Your email address"
|
1389 |
msgstr "Jūsų el. paštas"
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1392 |
msgid "Signup"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1396 |
msgid "No spam, ever. Unsubscribe at any time"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1400 |
msgid "About"
|
1401 |
msgstr "Apie"
|
1402 |
|
1403 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1404 |
msgid ""
|
1405 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1406 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1410 |
#, php-format
|
1411 |
msgid "Version: %s"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1415 |
#, php-format
|
1416 |
msgid "Author: %s"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1420 |
#, php-format
|
1421 |
msgid ""
|
1422 |
"We will never ask for donations, but to guarantee future development, we do "
|
1424 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1428 |
msgid ""
|
1429 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1433 |
msgid "Need Help?"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1437 |
msgid "Frequently Asked Questions"
|
1438 |
msgstr "Dažnai užduodami klausimai"
|
1439 |
|
1440 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1441 |
msgid "Support forum"
|
1442 |
msgstr "Aplankyti pagalbos forumą"
|
1443 |
|
1444 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1445 |
msgid "Request a feature"
|
1446 |
msgstr "Pasiūlyti galimybę"
|
1447 |
|
1482 |
msgid "Shipping Method: %s"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1486 |
msgid "Invoice No."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1490 |
msgid "View invoice"
|
1491 |
msgstr "Peržiūrėti sąskaitą faktūrą"
|
1492 |
|
|
|
1493 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1494 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1495 |
msgid "PDF Invoice"
|
1496 |
msgstr "Sąskaita-faktūra pdf formatu"
|
1497 |
|
1498 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1499 |
msgid "Create"
|
1500 |
msgstr "Sukurti"
|
1501 |
|
1502 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1503 |
#, fuzzy
|
1504 |
#| msgid "Order Date: %s"
|
1505 |
msgid "Date:"
|
1506 |
msgstr "Užsakymo data: %s"
|
1507 |
|
1508 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1509 |
#, fuzzy
|
1510 |
#| msgid "Order Number: %s"
|
1511 |
msgid "Number:"
|
1512 |
msgstr "Užsaymo numeris: %s"
|
1513 |
|
1514 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1515 |
msgid "Sent?"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1519 |
msgid "View"
|
1520 |
msgstr "Peržiūrėti"
|
1521 |
|
1522 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1523 |
msgid "Update"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1527 |
#, fuzzy
|
1528 |
#| msgid "Are you sure to delete the invoice?"
|
1529 |
msgid "Are you sure to delete the PDF invoice?"
|
1530 |
msgstr "Ar Jūs esate tikras, kad norite ištrinti sąskaitą faktūrą?"
|
1531 |
|
1532 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1533 |
#, php-format
|
1534 |
msgid ""
|
1535 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1536 |
"an accounting gap!"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1540 |
#, php-format
|
1541 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1542 |
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: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
@@ -355,7 +355,7 @@ msgid "created on %1$s at %2$s"
|
|
355 |
msgstr ""
|
356 |
|
357 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
358 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
359 |
msgid "Delete"
|
360 |
msgstr ""
|
361 |
|
@@ -408,12 +408,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
408 |
msgstr ""
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
412 |
msgid "Yes"
|
413 |
msgstr ""
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
417 |
msgid "No"
|
418 |
msgstr ""
|
419 |
|
@@ -445,7 +445,8 @@ msgstr ""
|
|
445 |
msgid ""
|
446 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
447 |
"and total rows. When enabled the standard Table Content settings will be "
|
448 |
-
"ignored."
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -561,36 +562,36 @@ msgstr ""
|
|
561 |
msgid "Qty"
|
562 |
msgstr "Ant"
|
563 |
|
564 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
565 |
#, fuzzy, php-format
|
566 |
#| msgid "Subtotal"
|
567 |
msgid "Subtotal %s"
|
568 |
msgstr "Delsum"
|
569 |
|
570 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
571 |
#, fuzzy, php-format
|
572 |
#| msgid "Discount"
|
573 |
msgid "Discount %s"
|
574 |
msgstr "Rabatt"
|
575 |
|
576 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
577 |
#, fuzzy, php-format
|
578 |
#| msgid "Shipping"
|
579 |
msgid "Shipping %s"
|
580 |
msgstr "Frakt"
|
581 |
|
582 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
583 |
#, php-format
|
584 |
msgid "%1$s %2$s"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
588 |
#, fuzzy, php-format
|
589 |
#| msgid "Total"
|
590 |
msgid "Total %s"
|
591 |
msgstr "Totalt"
|
592 |
|
593 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
594 |
msgid "Request invoice"
|
595 |
msgstr ""
|
596 |
|
@@ -820,7 +821,7 @@ msgid "Settings"
|
|
820 |
msgstr "Innstillinger"
|
821 |
|
822 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
823 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
824 |
msgid "Support"
|
825 |
msgstr "Hjelp"
|
826 |
|
@@ -1181,7 +1182,7 @@ msgid "Change the name of the invoice."
|
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1184 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1185 |
msgid "Invoice"
|
1186 |
msgstr "Faktura"
|
1187 |
|
@@ -1322,48 +1323,76 @@ msgstr ""
|
|
1322 |
"funksjoner:"
|
1323 |
|
1324 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1325 |
-
msgid "
|
|
|
1326 |
msgstr ""
|
1327 |
|
1328 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1329 |
msgid ""
|
1330 |
-
"
|
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1334 |
-
msgid "
|
|
|
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1338 |
-
msgid "
|
|
|
|
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1342 |
msgid "Bill periodically by generating and sending global invoices."
|
1343 |
msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "Add additional PDF's to PDF invoices."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
-
msgid "Send
|
1351 |
-
msgstr "
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
#, php-format
|
1355 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1359 |
msgid "Learn more"
|
1360 |
msgstr "Les mer"
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
msgid "Stay up-to-date"
|
1364 |
msgstr "Hold deg oppdatert"
|
1365 |
|
1366 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1367 |
msgid ""
|
1368 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1369 |
"our newsletter."
|
@@ -1371,23 +1400,23 @@ msgstr ""
|
|
1371 |
"Vi jobber kontinuerlig med å utvikle nye funksjoner, så hold deg oppdatert "
|
1372 |
"ved å melde deg på nyhetsbrevet vårt."
|
1373 |
|
1374 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1375 |
msgid "Your email address"
|
1376 |
msgstr "Din e-post adresse"
|
1377 |
|
1378 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1379 |
msgid "Signup"
|
1380 |
msgstr "Registrer"
|
1381 |
|
1382 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1383 |
msgid "No spam, ever. Unsubscribe at any time"
|
1384 |
msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
|
1385 |
|
1386 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1387 |
msgid "About"
|
1388 |
msgstr "Om"
|
1389 |
|
1390 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1391 |
msgid ""
|
1392 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1393 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1396,17 +1425,17 @@ msgstr ""
|
|
1396 |
"funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
|
1397 |
"com/woocommerce\">WooCommerce</a>."
|
1398 |
|
1399 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1400 |
#, php-format
|
1401 |
msgid "Version: %s"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1405 |
#, php-format
|
1406 |
msgid "Author: %s"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1410 |
#, php-format
|
1411 |
msgid ""
|
1412 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1414,26 +1443,26 @@ msgid ""
|
|
1414 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1418 |
msgid ""
|
1419 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1420 |
msgstr ""
|
1421 |
"Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
|
1422 |
"for WordPress!"
|
1423 |
|
1424 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1425 |
msgid "Need Help?"
|
1426 |
msgstr "Trenger du hjelp?"
|
1427 |
|
1428 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1429 |
msgid "Frequently Asked Questions"
|
1430 |
msgstr "Ofte stilte spørsmål"
|
1431 |
|
1432 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1433 |
msgid "Support forum"
|
1434 |
msgstr "Supportforum"
|
1435 |
|
1436 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1437 |
msgid "Request a feature"
|
1438 |
msgstr "Foreslå en ny funksjon"
|
1439 |
|
@@ -1474,65 +1503,68 @@ msgstr ""
|
|
1474 |
msgid "Shipping Method: %s"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1478 |
msgid "Invoice No."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1482 |
msgid "View invoice"
|
1483 |
msgstr "Vis faktura"
|
1484 |
|
1485 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1486 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1487 |
msgid "PDF Invoice"
|
1488 |
msgstr "PDF Faktura"
|
1489 |
|
1490 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1491 |
msgid "Create"
|
1492 |
msgstr "Opprett"
|
1493 |
|
1494 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1495 |
#, fuzzy
|
1496 |
#| msgid "Order Date: %s"
|
1497 |
msgid "Date:"
|
1498 |
msgstr "Ordre dato: %s"
|
1499 |
|
1500 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1501 |
#, fuzzy
|
1502 |
#| msgid "VAT Number: %s"
|
1503 |
msgid "Number:"
|
1504 |
msgstr "MVA nummber: %s"
|
1505 |
|
1506 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1507 |
msgid "Sent?"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1511 |
msgid "View"
|
1512 |
msgstr "Vis"
|
1513 |
|
1514 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1515 |
msgid "Update"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1519 |
#, fuzzy
|
1520 |
#| msgid "Are you sure to delete the invoice?"
|
1521 |
msgid "Are you sure to delete the PDF invoice?"
|
1522 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
1523 |
|
1524 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1525 |
#, php-format
|
1526 |
msgid ""
|
1527 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1528 |
"an accounting gap!"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1532 |
#, php-format
|
1533 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1534 |
msgstr ""
|
1535 |
|
|
|
|
|
|
|
1536 |
#~ msgid "Visible Columns"
|
1537 |
#~ msgstr "Synlige kolonner"
|
1538 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
6 |
"Last-Translator: Anders Sorensen <anders@zorensen.no>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nb\n"
|
355 |
msgstr ""
|
356 |
|
357 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
358 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
359 |
msgid "Delete"
|
360 |
msgstr ""
|
361 |
|
408 |
msgstr ""
|
409 |
|
410 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
411 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
412 |
msgid "Yes"
|
413 |
msgstr ""
|
414 |
|
415 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
416 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
417 |
msgid "No"
|
418 |
msgstr ""
|
419 |
|
445 |
msgid ""
|
446 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
447 |
"and total rows. When enabled the standard Table Content settings will be "
|
448 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
449 |
+
"template is not supported."
|
450 |
msgstr ""
|
451 |
|
452 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
562 |
msgid "Qty"
|
563 |
msgstr "Ant"
|
564 |
|
565 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
566 |
#, fuzzy, php-format
|
567 |
#| msgid "Subtotal"
|
568 |
msgid "Subtotal %s"
|
569 |
msgstr "Delsum"
|
570 |
|
571 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
572 |
#, fuzzy, php-format
|
573 |
#| msgid "Discount"
|
574 |
msgid "Discount %s"
|
575 |
msgstr "Rabatt"
|
576 |
|
577 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
578 |
#, fuzzy, php-format
|
579 |
#| msgid "Shipping"
|
580 |
msgid "Shipping %s"
|
581 |
msgstr "Frakt"
|
582 |
|
583 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
584 |
#, php-format
|
585 |
msgid "%1$s %2$s"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
589 |
#, fuzzy, php-format
|
590 |
#| msgid "Total"
|
591 |
msgid "Total %s"
|
592 |
msgstr "Totalt"
|
593 |
|
594 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
595 |
msgid "Request invoice"
|
596 |
msgstr ""
|
597 |
|
821 |
msgstr "Innstillinger"
|
822 |
|
823 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
824 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
825 |
msgid "Support"
|
826 |
msgstr "Hjelp"
|
827 |
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1185 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1186 |
msgid "Invoice"
|
1187 |
msgstr "Faktura"
|
1188 |
|
1323 |
"funksjoner:"
|
1324 |
|
1325 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1326 |
+
msgid ""
|
1327 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1331 |
msgid ""
|
1332 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1333 |
+
"order."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1337 |
+
msgid ""
|
1338 |
+
"Fully customize the table content by modifying line item columns and total "
|
1339 |
+
"rows."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1343 |
+
msgid ""
|
1344 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1345 |
+
"period of time."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1349 |
+
msgid ""
|
1350 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1354 |
+
msgid "Change the font of the PDF invoices."
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1358 |
+
msgid ""
|
1359 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1363 |
+
msgid "Bulk generate PDF invoices."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1367 |
+
msgid "Bulk export and/or download PDF invoices."
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1371 |
msgid "Bill periodically by generating and sending global invoices."
|
1372 |
msgstr "Fakturer periodisk ved å generere og sende globale fakturaer."
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1375 |
msgid "Add additional PDF's to PDF invoices."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1379 |
+
msgid "Send PDF invoices to multiple recipients."
|
1380 |
+
msgstr ""
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1383 |
#, php-format
|
1384 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1388 |
msgid "Learn more"
|
1389 |
msgstr "Les mer"
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1392 |
msgid "Stay up-to-date"
|
1393 |
msgstr "Hold deg oppdatert"
|
1394 |
|
1395 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1396 |
msgid ""
|
1397 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1398 |
"our newsletter."
|
1400 |
"Vi jobber kontinuerlig med å utvikle nye funksjoner, så hold deg oppdatert "
|
1401 |
"ved å melde deg på nyhetsbrevet vårt."
|
1402 |
|
1403 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1404 |
msgid "Your email address"
|
1405 |
msgstr "Din e-post adresse"
|
1406 |
|
1407 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1408 |
msgid "Signup"
|
1409 |
msgstr "Registrer"
|
1410 |
|
1411 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1412 |
msgid "No spam, ever. Unsubscribe at any time"
|
1413 |
msgstr "Ingen spam, aldri. Du kan melde deg av når som helst."
|
1414 |
|
1415 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1416 |
msgid "About"
|
1417 |
msgstr "Om"
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1420 |
msgid ""
|
1421 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1422 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1425 |
"funksonaliteten med fakturering som mangler i <a href=\"http://www.woothemes."
|
1426 |
"com/woocommerce\">WooCommerce</a>."
|
1427 |
|
1428 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1429 |
#, php-format
|
1430 |
msgid "Version: %s"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1434 |
#, php-format
|
1435 |
msgid "Author: %s"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1439 |
#, php-format
|
1440 |
msgid ""
|
1441 |
"We will never ask for donations, but to guarantee future development, we do "
|
1443 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1447 |
msgid ""
|
1448 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1449 |
msgstr ""
|
1450 |
"Sjekk ut denne fantastiske og helt gratis utvidelsen WooCommerce PDF Faktura "
|
1451 |
"for WordPress!"
|
1452 |
|
1453 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1454 |
msgid "Need Help?"
|
1455 |
msgstr "Trenger du hjelp?"
|
1456 |
|
1457 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1458 |
msgid "Frequently Asked Questions"
|
1459 |
msgstr "Ofte stilte spørsmål"
|
1460 |
|
1461 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1462 |
msgid "Support forum"
|
1463 |
msgstr "Supportforum"
|
1464 |
|
1465 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1466 |
msgid "Request a feature"
|
1467 |
msgstr "Foreslå en ny funksjon"
|
1468 |
|
1503 |
msgid "Shipping Method: %s"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1507 |
msgid "Invoice No."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1511 |
msgid "View invoice"
|
1512 |
msgstr "Vis faktura"
|
1513 |
|
|
|
1514 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1515 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1516 |
msgid "PDF Invoice"
|
1517 |
msgstr "PDF Faktura"
|
1518 |
|
1519 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1520 |
msgid "Create"
|
1521 |
msgstr "Opprett"
|
1522 |
|
1523 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1524 |
#, fuzzy
|
1525 |
#| msgid "Order Date: %s"
|
1526 |
msgid "Date:"
|
1527 |
msgstr "Ordre dato: %s"
|
1528 |
|
1529 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1530 |
#, fuzzy
|
1531 |
#| msgid "VAT Number: %s"
|
1532 |
msgid "Number:"
|
1533 |
msgstr "MVA nummber: %s"
|
1534 |
|
1535 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1536 |
msgid "Sent?"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1540 |
msgid "View"
|
1541 |
msgstr "Vis"
|
1542 |
|
1543 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1544 |
msgid "Update"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1548 |
#, fuzzy
|
1549 |
#| msgid "Are you sure to delete the invoice?"
|
1550 |
msgid "Are you sure to delete the PDF invoice?"
|
1551 |
msgstr "Er du sikker på at du vil slette fakturaen?"
|
1552 |
|
1553 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1554 |
#, php-format
|
1555 |
msgid ""
|
1556 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1557 |
"an accounting gap!"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1561 |
#, php-format
|
1562 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1566 |
+
#~ msgstr "Send kundefakturaer direkte til leverandører og andre."
|
1567 |
+
|
1568 |
#~ msgid "Visible Columns"
|
1569 |
#~ msgstr "Synlige kolonner"
|
1570 |
|
lang/woocommerce-pdf-invoices-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
-
"POT-Creation-Date: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -353,7 +353,7 @@ msgid "created on %1$s at %2$s"
|
|
353 |
msgstr ""
|
354 |
|
355 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
356 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
357 |
msgid "Delete"
|
358 |
msgstr ""
|
359 |
|
@@ -409,12 +409,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
409 |
msgstr "Selecteer meer dan één bestelling om een global factuur te genereren."
|
410 |
|
411 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
412 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
413 |
msgid "Yes"
|
414 |
msgstr "Ja"
|
415 |
|
416 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
417 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
418 |
msgid "No"
|
419 |
msgstr "Nee"
|
420 |
|
@@ -446,7 +446,8 @@ msgstr ""
|
|
446 |
msgid ""
|
447 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
448 |
"and total rows. When enabled the standard Table Content settings will be "
|
449 |
-
"ignored."
|
|
|
450 |
msgstr ""
|
451 |
|
452 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -562,37 +563,37 @@ msgstr ""
|
|
562 |
msgid "Qty"
|
563 |
msgstr "Aantal"
|
564 |
|
565 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
566 |
#, fuzzy, php-format
|
567 |
#| msgid "Subtotal"
|
568 |
msgid "Subtotal %s"
|
569 |
msgstr "Subtotaal"
|
570 |
|
571 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
572 |
#, fuzzy, php-format
|
573 |
#| msgid "Discount"
|
574 |
msgid "Discount %s"
|
575 |
msgstr "Korting"
|
576 |
|
577 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
578 |
#, fuzzy, php-format
|
579 |
#| msgid "Shipping"
|
580 |
msgid "Shipping %s"
|
581 |
msgstr "Verzending"
|
582 |
|
583 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
584 |
#, fuzzy, php-format
|
585 |
#| msgid "%1$s of %2$s"
|
586 |
msgid "%1$s %2$s"
|
587 |
msgstr "%1$s van %2$s"
|
588 |
|
589 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
590 |
#, fuzzy, php-format
|
591 |
#| msgid "Total"
|
592 |
msgid "Total %s"
|
593 |
msgstr "Totaal"
|
594 |
|
595 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
596 |
msgid "Request invoice"
|
597 |
msgstr ""
|
598 |
|
@@ -822,7 +823,7 @@ msgid "Settings"
|
|
822 |
msgstr "Opties"
|
823 |
|
824 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
825 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
826 |
msgid "Support"
|
827 |
msgstr "Ondersteuning"
|
828 |
|
@@ -1209,7 +1210,7 @@ msgid "Change the name of the invoice."
|
|
1209 |
msgstr "Verander de naam van de factuur."
|
1210 |
|
1211 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1212 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1213 |
msgid "Invoice"
|
1214 |
msgstr "Factuur"
|
1215 |
|
@@ -1368,52 +1369,82 @@ msgstr ""
|
|
1368 |
"volgende functies: "
|
1369 |
|
1370 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1371 |
msgid "Change the font of the PDF invoices."
|
1372 |
msgstr "Verander de lettertype van de PDF facturen."
|
1373 |
|
1374 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1375 |
msgid ""
|
1376 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1377 |
msgstr ""
|
1378 |
"Genereer PDF facturen in verschillende talen (WPML en Polylang compatibel)."
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
msgid "Bulk generate PDF invoices."
|
1382 |
msgstr "Bulk genereer PDF facturen."
|
1383 |
|
1384 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1385 |
msgid "Bulk export and/or download PDF invoices."
|
1386 |
msgstr "Bulk exporter en/of download PDF facturen."
|
1387 |
|
1388 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1389 |
msgid "Bill periodically by generating and sending global invoices."
|
1390 |
msgstr ""
|
1391 |
"Factureer periodiek door globale facturen te genereren en te verzenden."
|
1392 |
|
1393 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1394 |
msgid "Add additional PDF's to PDF invoices."
|
1395 |
msgstr "Voeg additionele PDF bestanden aan de PDF factuur."
|
1396 |
|
1397 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1398 |
-
msgid "Send
|
1399 |
-
msgstr "
|
1400 |
|
1401 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1402 |
#, php-format
|
1403 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1404 |
msgstr ""
|
1405 |
"Bevestig PDF facturen aan <a href=\"%s\">WooCommerce Subscriptions</a> "
|
1406 |
"emails."
|
1407 |
|
1408 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1409 |
msgid "Learn more"
|
1410 |
msgstr "Kom meer te weten"
|
1411 |
|
1412 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1413 |
msgid "Stay up-to-date"
|
1414 |
msgstr "Blijf op de hoogte"
|
1415 |
|
1416 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1417 |
msgid ""
|
1418 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1419 |
"our newsletter."
|
@@ -1421,23 +1452,23 @@ msgstr ""
|
|
1421 |
"Wij ontwikkelen in korte periodes veel nieuwe functionaliteiten, blijf up-to-"
|
1422 |
"date door je in te schrijven op de nieuwsbrief."
|
1423 |
|
1424 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1425 |
msgid "Your email address"
|
1426 |
msgstr "Jouw emailadres"
|
1427 |
|
1428 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1429 |
msgid "Signup"
|
1430 |
msgstr "Inschrijven"
|
1431 |
|
1432 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1433 |
msgid "No spam, ever. Unsubscribe at any time"
|
1434 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
1435 |
|
1436 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1437 |
msgid "About"
|
1438 |
msgstr "Over"
|
1439 |
|
1440 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1441 |
msgid ""
|
1442 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1443 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1445,17 +1476,17 @@ msgstr ""
|
|
1445 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
1446 |
"WooCommerce op te vullen."
|
1447 |
|
1448 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1449 |
#, php-format
|
1450 |
msgid "Version: %s"
|
1451 |
msgstr "Versie: %s"
|
1452 |
|
1453 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1454 |
#, php-format
|
1455 |
msgid "Author: %s"
|
1456 |
msgstr "Auteur: %s"
|
1457 |
|
1458 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1459 |
#, php-format
|
1460 |
msgid ""
|
1461 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1467,26 +1498,26 @@ msgstr ""
|
|
1467 |
"door een <a href=\"%1$s\">★★★★★</a> beoordeling achter te laten en stem <a "
|
1468 |
"href=\"%2$s\">werkt</a>."
|
1469 |
|
1470 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1471 |
msgid ""
|
1472 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1473 |
msgstr ""
|
1474 |
"Bekijk nu deze veel gewaardeerde gratis WooCommerce PDF Invoices plugin voor "
|
1475 |
"WordPress!"
|
1476 |
|
1477 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1478 |
msgid "Need Help?"
|
1479 |
msgstr "Hulp Nodig?"
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1482 |
msgid "Frequently Asked Questions"
|
1483 |
msgstr "Veel gestelde vragen"
|
1484 |
|
1485 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1486 |
msgid "Support forum"
|
1487 |
msgstr "Support Forum"
|
1488 |
|
1489 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1490 |
msgid "Request a feature"
|
1491 |
msgstr "Verzoek een nieuwe functionaliteit"
|
1492 |
|
@@ -1527,65 +1558,68 @@ msgstr "Pakbon"
|
|
1527 |
msgid "Shipping Method: %s"
|
1528 |
msgstr "Verzendmethode: %s"
|
1529 |
|
1530 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1531 |
msgid "Invoice No."
|
1532 |
msgstr "Factuurnr."
|
1533 |
|
1534 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1535 |
msgid "View invoice"
|
1536 |
msgstr "Toon factuur"
|
1537 |
|
1538 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1539 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1540 |
msgid "PDF Invoice"
|
1541 |
msgstr "PDF Factuur"
|
1542 |
|
1543 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1544 |
msgid "Create"
|
1545 |
msgstr "Genereer"
|
1546 |
|
1547 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1548 |
#, fuzzy
|
1549 |
#| msgid "Order Date: %s"
|
1550 |
msgid "Date:"
|
1551 |
msgstr "Besteldatum: %s"
|
1552 |
|
1553 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1554 |
#, fuzzy
|
1555 |
#| msgid "VAT Number: %s"
|
1556 |
msgid "Number:"
|
1557 |
msgstr "BTW nummer: %s"
|
1558 |
|
1559 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1560 |
msgid "Sent?"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1564 |
msgid "View"
|
1565 |
msgstr "Bekijk"
|
1566 |
|
1567 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1568 |
msgid "Update"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1572 |
#, fuzzy
|
1573 |
#| msgid "Are you sure to delete the invoice?"
|
1574 |
msgid "Are you sure to delete the PDF invoice?"
|
1575 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
1576 |
|
1577 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1578 |
#, php-format
|
1579 |
msgid ""
|
1580 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1581 |
"an accounting gap!"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1585 |
#, php-format
|
1586 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1587 |
msgstr ""
|
1588 |
|
|
|
|
|
|
|
1589 |
#~ msgid "Visible Columns"
|
1590 |
#~ msgstr "Zichtbare Kolommen"
|
1591 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
353 |
msgstr ""
|
354 |
|
355 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
356 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
357 |
msgid "Delete"
|
358 |
msgstr ""
|
359 |
|
409 |
msgstr "Selecteer meer dan één bestelling om een global factuur te genereren."
|
410 |
|
411 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
412 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
413 |
msgid "Yes"
|
414 |
msgstr "Ja"
|
415 |
|
416 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
417 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
418 |
msgid "No"
|
419 |
msgstr "Nee"
|
420 |
|
446 |
msgid ""
|
447 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
448 |
"and total rows. When enabled the standard Table Content settings will be "
|
449 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
450 |
+
"template is not supported."
|
451 |
msgstr ""
|
452 |
|
453 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
563 |
msgid "Qty"
|
564 |
msgstr "Aantal"
|
565 |
|
566 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
567 |
#, fuzzy, php-format
|
568 |
#| msgid "Subtotal"
|
569 |
msgid "Subtotal %s"
|
570 |
msgstr "Subtotaal"
|
571 |
|
572 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
573 |
#, fuzzy, php-format
|
574 |
#| msgid "Discount"
|
575 |
msgid "Discount %s"
|
576 |
msgstr "Korting"
|
577 |
|
578 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
579 |
#, fuzzy, php-format
|
580 |
#| msgid "Shipping"
|
581 |
msgid "Shipping %s"
|
582 |
msgstr "Verzending"
|
583 |
|
584 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
585 |
#, fuzzy, php-format
|
586 |
#| msgid "%1$s of %2$s"
|
587 |
msgid "%1$s %2$s"
|
588 |
msgstr "%1$s van %2$s"
|
589 |
|
590 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
591 |
#, fuzzy, php-format
|
592 |
#| msgid "Total"
|
593 |
msgid "Total %s"
|
594 |
msgstr "Totaal"
|
595 |
|
596 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
597 |
msgid "Request invoice"
|
598 |
msgstr ""
|
599 |
|
823 |
msgstr "Opties"
|
824 |
|
825 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
826 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
827 |
msgid "Support"
|
828 |
msgstr "Ondersteuning"
|
829 |
|
1210 |
msgstr "Verander de naam van de factuur."
|
1211 |
|
1212 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1213 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1214 |
msgid "Invoice"
|
1215 |
msgstr "Factuur"
|
1216 |
|
1369 |
"volgende functies: "
|
1370 |
|
1371 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1372 |
+
msgid ""
|
1373 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1377 |
+
msgid ""
|
1378 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1379 |
+
"order."
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1383 |
+
msgid ""
|
1384 |
+
"Fully customize the table content by modifying line item columns and total "
|
1385 |
+
"rows."
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1389 |
+
msgid ""
|
1390 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1391 |
+
"period of time."
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1395 |
+
#, fuzzy
|
1396 |
+
#| msgid "Let customers generate a global invoice from their account"
|
1397 |
+
msgid ""
|
1398 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1399 |
+
msgstr "Laat klaten global PDF facturen genereren vanaf de account pagina."
|
1400 |
+
|
1401 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1402 |
msgid "Change the font of the PDF invoices."
|
1403 |
msgstr "Verander de lettertype van de PDF facturen."
|
1404 |
|
1405 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1406 |
msgid ""
|
1407 |
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1408 |
msgstr ""
|
1409 |
"Genereer PDF facturen in verschillende talen (WPML en Polylang compatibel)."
|
1410 |
|
1411 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1412 |
msgid "Bulk generate PDF invoices."
|
1413 |
msgstr "Bulk genereer PDF facturen."
|
1414 |
|
1415 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1416 |
msgid "Bulk export and/or download PDF invoices."
|
1417 |
msgstr "Bulk exporter en/of download PDF facturen."
|
1418 |
|
1419 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1420 |
msgid "Bill periodically by generating and sending global invoices."
|
1421 |
msgstr ""
|
1422 |
"Factureer periodiek door globale facturen te genereren en te verzenden."
|
1423 |
|
1424 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1425 |
msgid "Add additional PDF's to PDF invoices."
|
1426 |
msgstr "Voeg additionele PDF bestanden aan de PDF factuur."
|
1427 |
|
1428 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1429 |
+
msgid "Send PDF invoices to multiple recipients."
|
1430 |
+
msgstr ""
|
1431 |
|
1432 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1433 |
#, php-format
|
1434 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1435 |
msgstr ""
|
1436 |
"Bevestig PDF facturen aan <a href=\"%s\">WooCommerce Subscriptions</a> "
|
1437 |
"emails."
|
1438 |
|
1439 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1440 |
msgid "Learn more"
|
1441 |
msgstr "Kom meer te weten"
|
1442 |
|
1443 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1444 |
msgid "Stay up-to-date"
|
1445 |
msgstr "Blijf op de hoogte"
|
1446 |
|
1447 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1448 |
msgid ""
|
1449 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1450 |
"our newsletter."
|
1452 |
"Wij ontwikkelen in korte periodes veel nieuwe functionaliteiten, blijf up-to-"
|
1453 |
"date door je in te schrijven op de nieuwsbrief."
|
1454 |
|
1455 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1456 |
msgid "Your email address"
|
1457 |
msgstr "Jouw emailadres"
|
1458 |
|
1459 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1460 |
msgid "Signup"
|
1461 |
msgstr "Inschrijven"
|
1462 |
|
1463 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1464 |
msgid "No spam, ever. Unsubscribe at any time"
|
1465 |
msgstr "Geen spam, ooit. Uitschrijven wanneer gewenst."
|
1466 |
|
1467 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1468 |
msgid "About"
|
1469 |
msgstr "Over"
|
1470 |
|
1471 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1472 |
msgid ""
|
1473 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1474 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1476 |
"Deze plugin is een opensource project met als doel, het facturen gat van "
|
1477 |
"WooCommerce op te vullen."
|
1478 |
|
1479 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1480 |
#, php-format
|
1481 |
msgid "Version: %s"
|
1482 |
msgstr "Versie: %s"
|
1483 |
|
1484 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1485 |
#, php-format
|
1486 |
msgid "Author: %s"
|
1487 |
msgstr "Auteur: %s"
|
1488 |
|
1489 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1490 |
#, php-format
|
1491 |
msgid ""
|
1492 |
"We will never ask for donations, but to guarantee future development, we do "
|
1498 |
"door een <a href=\"%1$s\">★★★★★</a> beoordeling achter te laten en stem <a "
|
1499 |
"href=\"%2$s\">werkt</a>."
|
1500 |
|
1501 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1502 |
msgid ""
|
1503 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1504 |
msgstr ""
|
1505 |
"Bekijk nu deze veel gewaardeerde gratis WooCommerce PDF Invoices plugin voor "
|
1506 |
"WordPress!"
|
1507 |
|
1508 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1509 |
msgid "Need Help?"
|
1510 |
msgstr "Hulp Nodig?"
|
1511 |
|
1512 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1513 |
msgid "Frequently Asked Questions"
|
1514 |
msgstr "Veel gestelde vragen"
|
1515 |
|
1516 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1517 |
msgid "Support forum"
|
1518 |
msgstr "Support Forum"
|
1519 |
|
1520 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1521 |
msgid "Request a feature"
|
1522 |
msgstr "Verzoek een nieuwe functionaliteit"
|
1523 |
|
1558 |
msgid "Shipping Method: %s"
|
1559 |
msgstr "Verzendmethode: %s"
|
1560 |
|
1561 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1562 |
msgid "Invoice No."
|
1563 |
msgstr "Factuurnr."
|
1564 |
|
1565 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1566 |
msgid "View invoice"
|
1567 |
msgstr "Toon factuur"
|
1568 |
|
|
|
1569 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1570 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1571 |
msgid "PDF Invoice"
|
1572 |
msgstr "PDF Factuur"
|
1573 |
|
1574 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1575 |
msgid "Create"
|
1576 |
msgstr "Genereer"
|
1577 |
|
1578 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1579 |
#, fuzzy
|
1580 |
#| msgid "Order Date: %s"
|
1581 |
msgid "Date:"
|
1582 |
msgstr "Besteldatum: %s"
|
1583 |
|
1584 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1585 |
#, fuzzy
|
1586 |
#| msgid "VAT Number: %s"
|
1587 |
msgid "Number:"
|
1588 |
msgstr "BTW nummer: %s"
|
1589 |
|
1590 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1591 |
msgid "Sent?"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1595 |
msgid "View"
|
1596 |
msgstr "Bekijk"
|
1597 |
|
1598 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1599 |
msgid "Update"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1603 |
#, fuzzy
|
1604 |
#| msgid "Are you sure to delete the invoice?"
|
1605 |
msgid "Are you sure to delete the PDF invoice?"
|
1606 |
msgstr "Weet u zeker dat u de factuur wilt verwijderen?"
|
1607 |
|
1608 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1609 |
#, php-format
|
1610 |
msgid ""
|
1611 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1612 |
"an accounting gap!"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1616 |
#, php-format
|
1617 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1621 |
+
#~ msgstr "Verzend klantfacturen direct naar leveranciers en anderen."
|
1622 |
+
|
1623 |
#~ msgid "Visible Columns"
|
1624 |
#~ msgstr "Zichtbare Kolommen"
|
1625 |
|
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: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: info@wcpdfinvoices.com\n"
|
14 |
"Language: pl_PL\n"
|
@@ -346,7 +346,7 @@ msgid "created on %1$s at %2$s"
|
|
346 |
msgstr ""
|
347 |
|
348 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
349 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
350 |
msgid "Delete"
|
351 |
msgstr ""
|
352 |
|
@@ -399,12 +399,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
403 |
msgid "Yes"
|
404 |
msgstr ""
|
405 |
|
406 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
407 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
408 |
msgid "No"
|
409 |
msgstr ""
|
410 |
|
@@ -430,7 +430,8 @@ msgstr ""
|
|
430 |
msgid ""
|
431 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
432 |
"and total rows. When enabled the standard Table Content settings will be "
|
433 |
-
"ignored."
|
|
|
434 |
msgstr ""
|
435 |
|
436 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -542,36 +543,36 @@ msgstr "Podsuma"
|
|
542 |
msgid "Qty"
|
543 |
msgstr "Ilość"
|
544 |
|
545 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
546 |
#, fuzzy, php-format
|
547 |
#| msgid "Subtotal"
|
548 |
msgid "Subtotal %s"
|
549 |
msgstr "Podsuma"
|
550 |
|
551 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
552 |
#, fuzzy, php-format
|
553 |
#| msgid "Discount"
|
554 |
msgid "Discount %s"
|
555 |
msgstr "Zniżka"
|
556 |
|
557 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
558 |
#, fuzzy, php-format
|
559 |
#| msgid "Shipping"
|
560 |
msgid "Shipping %s"
|
561 |
msgstr "Wysyłka"
|
562 |
|
563 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
564 |
#, php-format
|
565 |
msgid "%1$s %2$s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
569 |
#, fuzzy, php-format
|
570 |
#| msgid "Total"
|
571 |
msgid "Total %s"
|
572 |
msgstr "Razem"
|
573 |
|
574 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
575 |
msgid "Request invoice"
|
576 |
msgstr ""
|
577 |
|
@@ -800,7 +801,7 @@ msgid "Settings"
|
|
800 |
msgstr "Ustawienia"
|
801 |
|
802 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
803 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
804 |
msgid "Support"
|
805 |
msgstr "Wsparcie / Pomoc"
|
806 |
|
@@ -1146,7 +1147,7 @@ msgid "Change the name of the invoice."
|
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1149 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1150 |
msgid "Invoice"
|
1151 |
msgstr "Faktura"
|
1152 |
|
@@ -1285,48 +1286,76 @@ msgid ""
|
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1288 |
-
msgid "
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1292 |
msgid ""
|
1293 |
-
"
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1297 |
-
msgid "
|
|
|
|
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1301 |
-
msgid "
|
|
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
msgid "Bill periodically by generating and sending global invoices."
|
1306 |
msgstr "Naliczaj okresowo generując i wysyłając globalne faktury."
|
1307 |
|
1308 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1309 |
msgid "Add additional PDF's to PDF invoices."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1313 |
-
msgid "Send
|
1314 |
-
msgstr "
|
1315 |
|
1316 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1317 |
#, php-format
|
1318 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1322 |
msgid "Learn more"
|
1323 |
msgstr "Dowiedz się więcej"
|
1324 |
|
1325 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1326 |
msgid "Stay up-to-date"
|
1327 |
msgstr "Bądź na bieżąco"
|
1328 |
|
1329 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1330 |
msgid ""
|
1331 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1332 |
"our newsletter."
|
@@ -1334,23 +1363,23 @@ msgstr ""
|
|
1334 |
"Wciąż udoskonalamy funkcjonalności, bądź na bieżąco zapisując się do "
|
1335 |
"newslettera."
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "Your email address"
|
1339 |
msgstr "Twój adres e-mail"
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "Signup"
|
1343 |
msgstr "Zapisz się"
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "No spam, ever. Unsubscribe at any time"
|
1347 |
msgstr "Bez spamu, zawsze. Wypisz się z listy kiedy chcesz."
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid "About"
|
1351 |
msgstr "O wtyczce"
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
msgid ""
|
1355 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1356 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1359,17 +1388,17 @@ msgstr ""
|
|
1359 |
"luki <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a> w "
|
1360 |
"zakresie faktur."
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
#, php-format
|
1364 |
msgid "Version: %s"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1368 |
#, php-format
|
1369 |
msgid "Author: %s"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1373 |
#, php-format
|
1374 |
msgid ""
|
1375 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1377,24 +1406,24 @@ msgid ""
|
|
1377 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
msgid ""
|
1382 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1386 |
msgid "Need Help?"
|
1387 |
msgstr "Potrzebujesz pomocy?"
|
1388 |
|
1389 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1390 |
msgid "Frequently Asked Questions"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1394 |
msgid "Support forum"
|
1395 |
msgstr "Forum wsparcia"
|
1396 |
|
1397 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1398 |
msgid "Request a feature"
|
1399 |
msgstr "Zaproponuj funkcjonalność"
|
1400 |
|
@@ -1436,65 +1465,68 @@ msgstr ""
|
|
1436 |
msgid "Shipping Method: %s"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1440 |
msgid "Invoice No."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1444 |
msgid "View invoice"
|
1445 |
msgstr "Zobacz fakturę"
|
1446 |
|
1447 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1448 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1449 |
msgid "PDF Invoice"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1453 |
msgid "Create"
|
1454 |
msgstr "Stwórz"
|
1455 |
|
1456 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1457 |
#, fuzzy
|
1458 |
#| msgid "Order Date: %s"
|
1459 |
msgid "Date:"
|
1460 |
msgstr "Data zamówienia: %s"
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
#, fuzzy
|
1464 |
#| msgid "Order Number: %s"
|
1465 |
msgid "Number:"
|
1466 |
msgstr "Numer zamówienia: %s"
|
1467 |
|
1468 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1469 |
msgid "Sent?"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1473 |
msgid "View"
|
1474 |
msgstr "Zobacz"
|
1475 |
|
1476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1477 |
msgid "Update"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1481 |
#, fuzzy
|
1482 |
#| msgid "Are you sure to delete the invoice?"
|
1483 |
msgid "Are you sure to delete the PDF invoice?"
|
1484 |
msgstr "Czy na pewno chcesz usunąć fakturę?"
|
1485 |
|
1486 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1487 |
#, php-format
|
1488 |
msgid ""
|
1489 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1490 |
"an accounting gap!"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1494 |
#, php-format
|
1495 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1496 |
msgstr ""
|
1497 |
|
|
|
|
|
|
|
1498 |
#, fuzzy
|
1499 |
#~| msgid "Cancel"
|
1500 |
#~ msgid "Cancelled"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: info@wcpdfinvoices.com\n"
|
14 |
"Language: pl_PL\n"
|
346 |
msgstr ""
|
347 |
|
348 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
349 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
350 |
msgid "Delete"
|
351 |
msgstr ""
|
352 |
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
403 |
msgid "Yes"
|
404 |
msgstr ""
|
405 |
|
406 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
407 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
408 |
msgid "No"
|
409 |
msgstr ""
|
410 |
|
430 |
msgid ""
|
431 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
432 |
"and total rows. When enabled the standard Table Content settings will be "
|
433 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
434 |
+
"template is not supported."
|
435 |
msgstr ""
|
436 |
|
437 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
543 |
msgid "Qty"
|
544 |
msgstr "Ilość"
|
545 |
|
546 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
547 |
#, fuzzy, php-format
|
548 |
#| msgid "Subtotal"
|
549 |
msgid "Subtotal %s"
|
550 |
msgstr "Podsuma"
|
551 |
|
552 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
553 |
#, fuzzy, php-format
|
554 |
#| msgid "Discount"
|
555 |
msgid "Discount %s"
|
556 |
msgstr "Zniżka"
|
557 |
|
558 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
559 |
#, fuzzy, php-format
|
560 |
#| msgid "Shipping"
|
561 |
msgid "Shipping %s"
|
562 |
msgstr "Wysyłka"
|
563 |
|
564 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
565 |
#, php-format
|
566 |
msgid "%1$s %2$s"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
570 |
#, fuzzy, php-format
|
571 |
#| msgid "Total"
|
572 |
msgid "Total %s"
|
573 |
msgstr "Razem"
|
574 |
|
575 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
576 |
msgid "Request invoice"
|
577 |
msgstr ""
|
578 |
|
801 |
msgstr "Ustawienia"
|
802 |
|
803 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
804 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
805 |
msgid "Support"
|
806 |
msgstr "Wsparcie / Pomoc"
|
807 |
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1150 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1151 |
msgid "Invoice"
|
1152 |
msgstr "Faktura"
|
1153 |
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1289 |
+
msgid ""
|
1290 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1294 |
msgid ""
|
1295 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1296 |
+
"order."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1300 |
+
msgid ""
|
1301 |
+
"Fully customize the table content by modifying line item columns and total "
|
1302 |
+
"rows."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1306 |
+
msgid ""
|
1307 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1308 |
+
"period of time."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1312 |
+
msgid ""
|
1313 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1317 |
+
msgid "Change the font of the PDF invoices."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1321 |
+
msgid ""
|
1322 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1326 |
+
msgid "Bulk generate PDF invoices."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1330 |
+
msgid "Bulk export and/or download PDF invoices."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1334 |
msgid "Bill periodically by generating and sending global invoices."
|
1335 |
msgstr "Naliczaj okresowo generując i wysyłając globalne faktury."
|
1336 |
|
1337 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1338 |
msgid "Add additional PDF's to PDF invoices."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1342 |
+
msgid "Send PDF invoices to multiple recipients."
|
1343 |
+
msgstr ""
|
1344 |
|
1345 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1346 |
#, php-format
|
1347 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1351 |
msgid "Learn more"
|
1352 |
msgstr "Dowiedz się więcej"
|
1353 |
|
1354 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1355 |
msgid "Stay up-to-date"
|
1356 |
msgstr "Bądź na bieżąco"
|
1357 |
|
1358 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1359 |
msgid ""
|
1360 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1361 |
"our newsletter."
|
1363 |
"Wciąż udoskonalamy funkcjonalności, bądź na bieżąco zapisując się do "
|
1364 |
"newslettera."
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1367 |
msgid "Your email address"
|
1368 |
msgstr "Twój adres e-mail"
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1371 |
msgid "Signup"
|
1372 |
msgstr "Zapisz się"
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1375 |
msgid "No spam, ever. Unsubscribe at any time"
|
1376 |
msgstr "Bez spamu, zawsze. Wypisz się z listy kiedy chcesz."
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1379 |
msgid "About"
|
1380 |
msgstr "O wtyczce"
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1383 |
msgid ""
|
1384 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1385 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1388 |
"luki <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a> w "
|
1389 |
"zakresie faktur."
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1392 |
#, php-format
|
1393 |
msgid "Version: %s"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1397 |
#, php-format
|
1398 |
msgid "Author: %s"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1402 |
#, php-format
|
1403 |
msgid ""
|
1404 |
"We will never ask for donations, but to guarantee future development, we do "
|
1406 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1410 |
msgid ""
|
1411 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1415 |
msgid "Need Help?"
|
1416 |
msgstr "Potrzebujesz pomocy?"
|
1417 |
|
1418 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1419 |
msgid "Frequently Asked Questions"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1423 |
msgid "Support forum"
|
1424 |
msgstr "Forum wsparcia"
|
1425 |
|
1426 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1427 |
msgid "Request a feature"
|
1428 |
msgstr "Zaproponuj funkcjonalność"
|
1429 |
|
1465 |
msgid "Shipping Method: %s"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1469 |
msgid "Invoice No."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1473 |
msgid "View invoice"
|
1474 |
msgstr "Zobacz fakturę"
|
1475 |
|
|
|
1476 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1477 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1478 |
msgid "PDF Invoice"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1482 |
msgid "Create"
|
1483 |
msgstr "Stwórz"
|
1484 |
|
1485 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Order Date: %s"
|
1488 |
msgid "Date:"
|
1489 |
msgstr "Data zamówienia: %s"
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1492 |
#, fuzzy
|
1493 |
#| msgid "Order Number: %s"
|
1494 |
msgid "Number:"
|
1495 |
msgstr "Numer zamówienia: %s"
|
1496 |
|
1497 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1498 |
msgid "Sent?"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1502 |
msgid "View"
|
1503 |
msgstr "Zobacz"
|
1504 |
|
1505 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1506 |
msgid "Update"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1510 |
#, fuzzy
|
1511 |
#| msgid "Are you sure to delete the invoice?"
|
1512 |
msgid "Are you sure to delete the PDF invoice?"
|
1513 |
msgstr "Czy na pewno chcesz usunąć fakturę?"
|
1514 |
|
1515 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1516 |
#, php-format
|
1517 |
msgid ""
|
1518 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1519 |
"an accounting gap!"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1523 |
#, php-format
|
1524 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1528 |
+
#~ msgstr "Wysyłaj faktury bezpośrednio do dostawców i innych."
|
1529 |
+
|
1530 |
#, fuzzy
|
1531 |
#~| msgid "Cancel"
|
1532 |
#~ msgid "Cancelled"
|
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: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ro\n"
|
@@ -347,7 +347,7 @@ msgid "created on %1$s at %2$s"
|
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
@@ -400,12 +400,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
@@ -431,7 +431,8 @@ msgstr ""
|
|
431 |
msgid ""
|
432 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
433 |
"and total rows. When enabled the standard Table Content settings will be "
|
434 |
-
"ignored."
|
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -543,36 +544,36 @@ msgstr "Subtotal"
|
|
543 |
msgid "Qty"
|
544 |
msgstr "Cantitate"
|
545 |
|
546 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
547 |
#, fuzzy, php-format
|
548 |
#| msgid "Subtotal"
|
549 |
msgid "Subtotal %s"
|
550 |
msgstr "Subtotal"
|
551 |
|
552 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
553 |
#, fuzzy, php-format
|
554 |
#| msgid "Discount"
|
555 |
msgid "Discount %s"
|
556 |
msgstr "Reducere"
|
557 |
|
558 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
559 |
#, fuzzy, php-format
|
560 |
#| msgid "Shipping"
|
561 |
msgid "Shipping %s"
|
562 |
msgstr "Costuri de livrare"
|
563 |
|
564 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
565 |
#, php-format
|
566 |
msgid "%1$s %2$s"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
570 |
#, fuzzy, php-format
|
571 |
#| msgid "Total"
|
572 |
msgid "Total %s"
|
573 |
msgstr "Total"
|
574 |
|
575 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
576 |
msgid "Request invoice"
|
577 |
msgstr ""
|
578 |
|
@@ -801,7 +802,7 @@ msgid "Settings"
|
|
801 |
msgstr "Setări"
|
802 |
|
803 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
804 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
805 |
msgid "Support"
|
806 |
msgstr "Suport"
|
807 |
|
@@ -1146,7 +1147,7 @@ msgid "Change the name of the invoice."
|
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1149 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1150 |
msgid "Invoice"
|
1151 |
msgstr "Factură"
|
1152 |
|
@@ -1286,71 +1287,99 @@ msgstr ""
|
|
1286 |
"Acest plugin oferă o versiune premium care vine cu următoarele facilitați:"
|
1287 |
|
1288 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1289 |
-
msgid "
|
|
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1293 |
msgid ""
|
1294 |
-
"
|
|
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1298 |
-
msgid "
|
|
|
|
|
1299 |
msgstr ""
|
1300 |
|
1301 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1302 |
-
msgid "
|
|
|
|
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1306 |
msgid "Bill periodically by generating and sending global invoices."
|
1307 |
msgstr "Facturează periodic generând și trimițând facturi globale."
|
1308 |
|
1309 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1310 |
msgid "Add additional PDF's to PDF invoices."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1314 |
-
msgid "Send
|
1315 |
-
msgstr "
|
1316 |
|
1317 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1318 |
#, php-format
|
1319 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1323 |
msgid "Learn more"
|
1324 |
msgstr "Află mai multe"
|
1325 |
|
1326 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1327 |
msgid "Stay up-to-date"
|
1328 |
msgstr "Află ultimele noutăți"
|
1329 |
|
1330 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1331 |
msgid ""
|
1332 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1333 |
"our newsletter."
|
1334 |
msgstr ""
|
1335 |
"Dezvoltăm noi opțiuni, aflați ultimele noutăți abonându-vă la newsletter."
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "Your email address"
|
1339 |
msgstr "Adresa dvs. email"
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "Signup"
|
1343 |
msgstr "Abonare"
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "No spam, ever. Unsubscribe at any time"
|
1347 |
msgstr "Niciodată spam. Anulare subscriere oricând."
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid "About"
|
1351 |
msgstr "Despre"
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
msgid ""
|
1355 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1356 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1359,17 +1388,17 @@ msgstr ""
|
|
1359 |
"facturărilor PDF din <a href=\"http://www.woothemes.com/woocommerce"
|
1360 |
"\">WooCommerce</a>."
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
#, php-format
|
1364 |
msgid "Version: %s"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1368 |
#, php-format
|
1369 |
msgid "Author: %s"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1373 |
#, php-format
|
1374 |
msgid ""
|
1375 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1377,26 +1406,26 @@ msgid ""
|
|
1377 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
msgid ""
|
1382 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1383 |
msgstr ""
|
1384 |
"Verificați acest nemaipomenit plugin gratuit WooCommerce Facturi PDF pentru "
|
1385 |
"WordPress!"
|
1386 |
|
1387 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1388 |
msgid "Need Help?"
|
1389 |
msgstr "Aveți nevoie de ajutor ?"
|
1390 |
|
1391 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1392 |
msgid "Frequently Asked Questions"
|
1393 |
msgstr "Întrebări frecvente"
|
1394 |
|
1395 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1396 |
msgid "Support forum"
|
1397 |
msgstr "Forum de suport"
|
1398 |
|
1399 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1400 |
msgid "Request a feature"
|
1401 |
msgstr "Cere o nouă opțiune"
|
1402 |
|
@@ -1437,65 +1466,68 @@ msgstr ""
|
|
1437 |
msgid "Shipping Method: %s"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1441 |
msgid "Invoice No."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1445 |
msgid "View invoice"
|
1446 |
msgstr "Vezi factura"
|
1447 |
|
1448 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1449 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1450 |
msgid "PDF Invoice"
|
1451 |
msgstr "Factură PDF"
|
1452 |
|
1453 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1454 |
msgid "Create"
|
1455 |
msgstr "Crează"
|
1456 |
|
1457 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1458 |
#, fuzzy
|
1459 |
#| msgid "Order Date: %s"
|
1460 |
msgid "Date:"
|
1461 |
msgstr "Dată comandă: %s"
|
1462 |
|
1463 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1464 |
#, fuzzy
|
1465 |
#| msgid "Order Number: %s"
|
1466 |
msgid "Number:"
|
1467 |
msgstr "Număr comandă: %s"
|
1468 |
|
1469 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1470 |
msgid "Sent?"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1474 |
msgid "View"
|
1475 |
msgstr "Vizualizare"
|
1476 |
|
1477 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1478 |
msgid "Update"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1482 |
#, fuzzy
|
1483 |
#| msgid "Are you sure to delete the invoice?"
|
1484 |
msgid "Are you sure to delete the PDF invoice?"
|
1485 |
msgstr "Ești sigur că vrei să ștergi factura ?"
|
1486 |
|
1487 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1488 |
#, php-format
|
1489 |
msgid ""
|
1490 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1491 |
"an accounting gap!"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1495 |
#, php-format
|
1496 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1497 |
msgstr ""
|
1498 |
|
|
|
|
|
|
|
1499 |
#, fuzzy
|
1500 |
#~| msgid "Cancel"
|
1501 |
#~ msgid "Cancelled"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ro\n"
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
431 |
msgid ""
|
432 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
433 |
"and total rows. When enabled the standard Table Content settings will be "
|
434 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
435 |
+
"template is not supported."
|
436 |
msgstr ""
|
437 |
|
438 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
544 |
msgid "Qty"
|
545 |
msgstr "Cantitate"
|
546 |
|
547 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
548 |
#, fuzzy, php-format
|
549 |
#| msgid "Subtotal"
|
550 |
msgid "Subtotal %s"
|
551 |
msgstr "Subtotal"
|
552 |
|
553 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
554 |
#, fuzzy, php-format
|
555 |
#| msgid "Discount"
|
556 |
msgid "Discount %s"
|
557 |
msgstr "Reducere"
|
558 |
|
559 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
560 |
#, fuzzy, php-format
|
561 |
#| msgid "Shipping"
|
562 |
msgid "Shipping %s"
|
563 |
msgstr "Costuri de livrare"
|
564 |
|
565 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
566 |
#, php-format
|
567 |
msgid "%1$s %2$s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
571 |
#, fuzzy, php-format
|
572 |
#| msgid "Total"
|
573 |
msgid "Total %s"
|
574 |
msgstr "Total"
|
575 |
|
576 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
577 |
msgid "Request invoice"
|
578 |
msgstr ""
|
579 |
|
802 |
msgstr "Setări"
|
803 |
|
804 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
805 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
806 |
msgid "Support"
|
807 |
msgstr "Suport"
|
808 |
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1150 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1151 |
msgid "Invoice"
|
1152 |
msgstr "Factură"
|
1153 |
|
1287 |
"Acest plugin oferă o versiune premium care vine cu următoarele facilitați:"
|
1288 |
|
1289 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1290 |
+
msgid ""
|
1291 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1295 |
msgid ""
|
1296 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1297 |
+
"order."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1301 |
+
msgid ""
|
1302 |
+
"Fully customize the table content by modifying line item columns and total "
|
1303 |
+
"rows."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1307 |
+
msgid ""
|
1308 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1309 |
+
"period of time."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1313 |
+
msgid ""
|
1314 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1318 |
+
msgid "Change the font of the PDF invoices."
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1322 |
+
msgid ""
|
1323 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1327 |
+
msgid "Bulk generate PDF invoices."
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1331 |
+
msgid "Bulk export and/or download PDF invoices."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1335 |
msgid "Bill periodically by generating and sending global invoices."
|
1336 |
msgstr "Facturează periodic generând și trimițând facturi globale."
|
1337 |
|
1338 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1339 |
msgid "Add additional PDF's to PDF invoices."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1343 |
+
msgid "Send PDF invoices to multiple recipients."
|
1344 |
+
msgstr ""
|
1345 |
|
1346 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1347 |
#, php-format
|
1348 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1352 |
msgid "Learn more"
|
1353 |
msgstr "Află mai multe"
|
1354 |
|
1355 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1356 |
msgid "Stay up-to-date"
|
1357 |
msgstr "Află ultimele noutăți"
|
1358 |
|
1359 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1360 |
msgid ""
|
1361 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1362 |
"our newsletter."
|
1363 |
msgstr ""
|
1364 |
"Dezvoltăm noi opțiuni, aflați ultimele noutăți abonându-vă la newsletter."
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1367 |
msgid "Your email address"
|
1368 |
msgstr "Adresa dvs. email"
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1371 |
msgid "Signup"
|
1372 |
msgstr "Abonare"
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1375 |
msgid "No spam, ever. Unsubscribe at any time"
|
1376 |
msgstr "Niciodată spam. Anulare subscriere oricând."
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1379 |
msgid "About"
|
1380 |
msgstr "Despre"
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1383 |
msgid ""
|
1384 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1385 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1388 |
"facturărilor PDF din <a href=\"http://www.woothemes.com/woocommerce"
|
1389 |
"\">WooCommerce</a>."
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1392 |
#, php-format
|
1393 |
msgid "Version: %s"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1397 |
#, php-format
|
1398 |
msgid "Author: %s"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1402 |
#, php-format
|
1403 |
msgid ""
|
1404 |
"We will never ask for donations, but to guarantee future development, we do "
|
1406 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1410 |
msgid ""
|
1411 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1412 |
msgstr ""
|
1413 |
"Verificați acest nemaipomenit plugin gratuit WooCommerce Facturi PDF pentru "
|
1414 |
"WordPress!"
|
1415 |
|
1416 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1417 |
msgid "Need Help?"
|
1418 |
msgstr "Aveți nevoie de ajutor ?"
|
1419 |
|
1420 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1421 |
msgid "Frequently Asked Questions"
|
1422 |
msgstr "Întrebări frecvente"
|
1423 |
|
1424 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1425 |
msgid "Support forum"
|
1426 |
msgstr "Forum de suport"
|
1427 |
|
1428 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1429 |
msgid "Request a feature"
|
1430 |
msgstr "Cere o nouă opțiune"
|
1431 |
|
1466 |
msgid "Shipping Method: %s"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1470 |
msgid "Invoice No."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1474 |
msgid "View invoice"
|
1475 |
msgstr "Vezi factura"
|
1476 |
|
|
|
1477 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1478 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1479 |
msgid "PDF Invoice"
|
1480 |
msgstr "Factură PDF"
|
1481 |
|
1482 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1483 |
msgid "Create"
|
1484 |
msgstr "Crează"
|
1485 |
|
1486 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1487 |
#, fuzzy
|
1488 |
#| msgid "Order Date: %s"
|
1489 |
msgid "Date:"
|
1490 |
msgstr "Dată comandă: %s"
|
1491 |
|
1492 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1493 |
#, fuzzy
|
1494 |
#| msgid "Order Number: %s"
|
1495 |
msgid "Number:"
|
1496 |
msgstr "Număr comandă: %s"
|
1497 |
|
1498 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1499 |
msgid "Sent?"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1503 |
msgid "View"
|
1504 |
msgstr "Vizualizare"
|
1505 |
|
1506 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1507 |
msgid "Update"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1511 |
#, fuzzy
|
1512 |
#| msgid "Are you sure to delete the invoice?"
|
1513 |
msgid "Are you sure to delete the PDF invoice?"
|
1514 |
msgstr "Ești sigur că vrei să ștergi factura ?"
|
1515 |
|
1516 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1517 |
#, php-format
|
1518 |
msgid ""
|
1519 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1520 |
"an accounting gap!"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1524 |
#, php-format
|
1525 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1529 |
+
#~ msgstr "Trimite facturi client direct la furnizori și terțe părți."
|
1530 |
+
|
1531 |
#, fuzzy
|
1532 |
#~| msgid "Cancel"
|
1533 |
#~ msgid "Cancelled"
|
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: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ru_RU\n"
|
@@ -347,7 +347,7 @@ msgid "created on %1$s at %2$s"
|
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
@@ -400,12 +400,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
@@ -431,7 +431,8 @@ msgstr ""
|
|
431 |
msgid ""
|
432 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
433 |
"and total rows. When enabled the standard Table Content settings will be "
|
434 |
-
"ignored."
|
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -543,36 +544,36 @@ msgstr "Подытог"
|
|
543 |
msgid "Qty"
|
544 |
msgstr "Кол-во"
|
545 |
|
546 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
547 |
#, fuzzy, php-format
|
548 |
#| msgid "Subtotal"
|
549 |
msgid "Subtotal %s"
|
550 |
msgstr "Подытог"
|
551 |
|
552 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
553 |
#, fuzzy, php-format
|
554 |
#| msgid "Discount"
|
555 |
msgid "Discount %s"
|
556 |
msgstr "Скидка"
|
557 |
|
558 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
559 |
#, fuzzy, php-format
|
560 |
#| msgid "Shipping"
|
561 |
msgid "Shipping %s"
|
562 |
msgstr "Доставка"
|
563 |
|
564 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
565 |
#, php-format
|
566 |
msgid "%1$s %2$s"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
570 |
#, fuzzy, php-format
|
571 |
#| msgid "Total"
|
572 |
msgid "Total %s"
|
573 |
msgstr "Всего:"
|
574 |
|
575 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
576 |
msgid "Request invoice"
|
577 |
msgstr ""
|
578 |
|
@@ -801,7 +802,7 @@ msgid "Settings"
|
|
801 |
msgstr "Настройки"
|
802 |
|
803 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
804 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
805 |
msgid "Support"
|
806 |
msgstr "Поддержка"
|
807 |
|
@@ -1144,7 +1145,7 @@ msgid "Change the name of the invoice."
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1147 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1148 |
msgid "Invoice"
|
1149 |
msgstr "Накладная"
|
1150 |
|
@@ -1283,70 +1284,98 @@ msgid ""
|
|
1283 |
msgstr "Плагин имеет коммерческую версию, которая предлагает:"
|
1284 |
|
1285 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1286 |
-
msgid "
|
|
|
1287 |
msgstr ""
|
1288 |
|
1289 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1290 |
msgid ""
|
1291 |
-
"
|
|
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1295 |
-
msgid "
|
|
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1299 |
-
msgid "
|
|
|
|
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1303 |
-
msgid "
|
|
|
1304 |
msgstr ""
|
1305 |
|
1306 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1307 |
msgid "Add additional PDF's to PDF invoices."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1311 |
-
msgid "Send
|
1312 |
-
msgstr "
|
1313 |
|
1314 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1315 |
#, php-format
|
1316 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1320 |
msgid "Learn more"
|
1321 |
msgstr "Узнать больше"
|
1322 |
|
1323 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1324 |
msgid "Stay up-to-date"
|
1325 |
msgstr "Проверять обновления"
|
1326 |
|
1327 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1328 |
msgid ""
|
1329 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1330 |
"our newsletter."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1334 |
msgid "Your email address"
|
1335 |
msgstr "Ваш email адрес"
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "Signup"
|
1339 |
msgstr "Подписаться"
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "No spam, ever. Unsubscribe at any time"
|
1343 |
msgstr "Никакого спама. Отпишитесь в любой момент."
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid "About"
|
1347 |
msgstr "О"
|
1348 |
|
1349 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1350 |
msgid ""
|
1351 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1352 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1354,17 +1383,17 @@ msgstr ""
|
|
1354 |
"Это плагин с открытым кодом который призван заполнить пробел в выставлении "
|
1355 |
"счетов <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1356 |
|
1357 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1358 |
#, php-format
|
1359 |
msgid "Version: %s"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1363 |
#, php-format
|
1364 |
msgid "Author: %s"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1368 |
#, php-format
|
1369 |
msgid ""
|
1370 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1372,24 +1401,24 @@ msgid ""
|
|
1372 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1376 |
msgid ""
|
1377 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
msgid "Need Help?"
|
1382 |
msgstr "Нужна помощь?"
|
1383 |
|
1384 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1385 |
msgid "Frequently Asked Questions"
|
1386 |
msgstr "Часто задаваемые вопросы"
|
1387 |
|
1388 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1389 |
msgid "Support forum"
|
1390 |
msgstr "Форум поддержки"
|
1391 |
|
1392 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1393 |
msgid "Request a feature"
|
1394 |
msgstr "Запросить функционал"
|
1395 |
|
@@ -1430,65 +1459,68 @@ msgstr ""
|
|
1430 |
msgid "Shipping Method: %s"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1434 |
msgid "Invoice No."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1438 |
msgid "View invoice"
|
1439 |
msgstr "Просмотреть накладную"
|
1440 |
|
1441 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1442 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1443 |
msgid "PDF Invoice"
|
1444 |
msgstr "Накладная в PDF"
|
1445 |
|
1446 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1447 |
msgid "Create"
|
1448 |
msgstr "Создать"
|
1449 |
|
1450 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1451 |
#, fuzzy
|
1452 |
#| msgid "Order Date: %s"
|
1453 |
msgid "Date:"
|
1454 |
msgstr "Дата заказа: %s"
|
1455 |
|
1456 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1457 |
#, fuzzy
|
1458 |
#| msgid "Order Number: %s"
|
1459 |
msgid "Number:"
|
1460 |
msgstr "Номер заказа: %s"
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
msgid "Sent?"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1467 |
msgid "View"
|
1468 |
msgstr "Просмотр"
|
1469 |
|
1470 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1471 |
msgid "Update"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1475 |
#, fuzzy
|
1476 |
#| msgid "Are you sure to delete the invoice?"
|
1477 |
msgid "Are you sure to delete the PDF invoice?"
|
1478 |
msgstr "Вы уверены что хотите удалить накладную?"
|
1479 |
|
1480 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1481 |
#, php-format
|
1482 |
msgid ""
|
1483 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1484 |
"an accounting gap!"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1488 |
#, php-format
|
1489 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1490 |
msgstr ""
|
1491 |
|
|
|
|
|
|
|
1492 |
#, fuzzy
|
1493 |
#~| msgid "Cancel"
|
1494 |
#~ msgid "Cancelled"
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
12 |
"Last-Translator: \n"
|
13 |
"Language-Team: \n"
|
14 |
"Language: ru_RU\n"
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
431 |
msgid ""
|
432 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
433 |
"and total rows. When enabled the standard Table Content settings will be "
|
434 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
435 |
+
"template is not supported."
|
436 |
msgstr ""
|
437 |
|
438 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
544 |
msgid "Qty"
|
545 |
msgstr "Кол-во"
|
546 |
|
547 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
548 |
#, fuzzy, php-format
|
549 |
#| msgid "Subtotal"
|
550 |
msgid "Subtotal %s"
|
551 |
msgstr "Подытог"
|
552 |
|
553 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
554 |
#, fuzzy, php-format
|
555 |
#| msgid "Discount"
|
556 |
msgid "Discount %s"
|
557 |
msgstr "Скидка"
|
558 |
|
559 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
560 |
#, fuzzy, php-format
|
561 |
#| msgid "Shipping"
|
562 |
msgid "Shipping %s"
|
563 |
msgstr "Доставка"
|
564 |
|
565 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
566 |
#, php-format
|
567 |
msgid "%1$s %2$s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
571 |
#, fuzzy, php-format
|
572 |
#| msgid "Total"
|
573 |
msgid "Total %s"
|
574 |
msgstr "Всего:"
|
575 |
|
576 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
577 |
msgid "Request invoice"
|
578 |
msgstr ""
|
579 |
|
802 |
msgstr "Настройки"
|
803 |
|
804 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
805 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
806 |
msgid "Support"
|
807 |
msgstr "Поддержка"
|
808 |
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1148 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1149 |
msgid "Invoice"
|
1150 |
msgstr "Накладная"
|
1151 |
|
1284 |
msgstr "Плагин имеет коммерческую версию, которая предлагает:"
|
1285 |
|
1286 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1287 |
+
msgid ""
|
1288 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1292 |
msgid ""
|
1293 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1294 |
+
"order."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1298 |
+
msgid ""
|
1299 |
+
"Fully customize the table content by modifying line item columns and total "
|
1300 |
+
"rows."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1304 |
+
msgid ""
|
1305 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1306 |
+
"period of time."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1310 |
+
msgid ""
|
1311 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1315 |
+
msgid "Change the font of the PDF invoices."
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1319 |
+
msgid ""
|
1320 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1324 |
+
msgid "Bulk generate PDF invoices."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1328 |
+
msgid "Bulk export and/or download PDF invoices."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1332 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1336 |
msgid "Add additional PDF's to PDF invoices."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1340 |
+
msgid "Send PDF invoices to multiple recipients."
|
1341 |
+
msgstr ""
|
1342 |
|
1343 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1344 |
#, php-format
|
1345 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1349 |
msgid "Learn more"
|
1350 |
msgstr "Узнать больше"
|
1351 |
|
1352 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1353 |
msgid "Stay up-to-date"
|
1354 |
msgstr "Проверять обновления"
|
1355 |
|
1356 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1357 |
msgid ""
|
1358 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1359 |
"our newsletter."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1363 |
msgid "Your email address"
|
1364 |
msgstr "Ваш email адрес"
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1367 |
msgid "Signup"
|
1368 |
msgstr "Подписаться"
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1371 |
msgid "No spam, ever. Unsubscribe at any time"
|
1372 |
msgstr "Никакого спама. Отпишитесь в любой момент."
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1375 |
msgid "About"
|
1376 |
msgstr "О"
|
1377 |
|
1378 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1379 |
msgid ""
|
1380 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1381 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1383 |
"Это плагин с открытым кодом который призван заполнить пробел в выставлении "
|
1384 |
"счетов <a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1385 |
|
1386 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1387 |
#, php-format
|
1388 |
msgid "Version: %s"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1392 |
#, php-format
|
1393 |
msgid "Author: %s"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1397 |
#, php-format
|
1398 |
msgid ""
|
1399 |
"We will never ask for donations, but to guarantee future development, we do "
|
1401 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1405 |
msgid ""
|
1406 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1410 |
msgid "Need Help?"
|
1411 |
msgstr "Нужна помощь?"
|
1412 |
|
1413 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1414 |
msgid "Frequently Asked Questions"
|
1415 |
msgstr "Часто задаваемые вопросы"
|
1416 |
|
1417 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1418 |
msgid "Support forum"
|
1419 |
msgstr "Форум поддержки"
|
1420 |
|
1421 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1422 |
msgid "Request a feature"
|
1423 |
msgstr "Запросить функционал"
|
1424 |
|
1459 |
msgid "Shipping Method: %s"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1463 |
msgid "Invoice No."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1467 |
msgid "View invoice"
|
1468 |
msgstr "Просмотреть накладную"
|
1469 |
|
|
|
1470 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1471 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1472 |
msgid "PDF Invoice"
|
1473 |
msgstr "Накладная в PDF"
|
1474 |
|
1475 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1476 |
msgid "Create"
|
1477 |
msgstr "Создать"
|
1478 |
|
1479 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1480 |
#, fuzzy
|
1481 |
#| msgid "Order Date: %s"
|
1482 |
msgid "Date:"
|
1483 |
msgstr "Дата заказа: %s"
|
1484 |
|
1485 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1486 |
#, fuzzy
|
1487 |
#| msgid "Order Number: %s"
|
1488 |
msgid "Number:"
|
1489 |
msgstr "Номер заказа: %s"
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1492 |
msgid "Sent?"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1496 |
msgid "View"
|
1497 |
msgstr "Просмотр"
|
1498 |
|
1499 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1500 |
msgid "Update"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1504 |
#, fuzzy
|
1505 |
#| msgid "Are you sure to delete the invoice?"
|
1506 |
msgid "Are you sure to delete the PDF invoice?"
|
1507 |
msgstr "Вы уверены что хотите удалить накладную?"
|
1508 |
|
1509 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1510 |
#, php-format
|
1511 |
msgid ""
|
1512 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1513 |
"an accounting gap!"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1517 |
#, php-format
|
1518 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#~ msgid "Send customer invoices directly to suppliers and others."
|
1522 |
+
#~ msgstr "Выслать накладную поставщику и другим."
|
1523 |
+
|
1524 |
#, fuzzy
|
1525 |
#~| msgid "Cancel"
|
1526 |
#~ msgid "Cancelled"
|
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: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
@@ -341,7 +341,7 @@ msgid "created on %1$s at %2$s"
|
|
341 |
msgstr ""
|
342 |
|
343 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
344 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
345 |
msgid "Delete"
|
346 |
msgstr ""
|
347 |
|
@@ -394,12 +394,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
394 |
msgstr ""
|
395 |
|
396 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
397 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
398 |
msgid "Yes"
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
403 |
msgid "No"
|
404 |
msgstr ""
|
405 |
|
@@ -425,7 +425,8 @@ msgstr ""
|
|
425 |
msgid ""
|
426 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
427 |
"and total rows. When enabled the standard Table Content settings will be "
|
428 |
-
"ignored."
|
|
|
429 |
msgstr ""
|
430 |
|
431 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -537,36 +538,36 @@ msgstr "Medzisúčet"
|
|
537 |
msgid "Qty"
|
538 |
msgstr "Ks"
|
539 |
|
540 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
541 |
#, fuzzy, php-format
|
542 |
#| msgid "Subtotal"
|
543 |
msgid "Subtotal %s"
|
544 |
msgstr "Medzisúčet"
|
545 |
|
546 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
547 |
#, fuzzy, php-format
|
548 |
#| msgid "Discount"
|
549 |
msgid "Discount %s"
|
550 |
msgstr "Zľava"
|
551 |
|
552 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
553 |
#, fuzzy, php-format
|
554 |
#| msgid "Shipping"
|
555 |
msgid "Shipping %s"
|
556 |
msgstr "Poštovné"
|
557 |
|
558 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
559 |
#, php-format
|
560 |
msgid "%1$s %2$s"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
564 |
#, fuzzy, php-format
|
565 |
#| msgid "Total"
|
566 |
msgid "Total %s"
|
567 |
msgstr "Celkom"
|
568 |
|
569 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
570 |
msgid "Request invoice"
|
571 |
msgstr ""
|
572 |
|
@@ -795,7 +796,7 @@ msgid "Settings"
|
|
795 |
msgstr "Nastavenia"
|
796 |
|
797 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
798 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
799 |
msgid "Support"
|
800 |
msgstr "Podpora"
|
801 |
|
@@ -1140,7 +1141,7 @@ msgid "Change the name of the invoice."
|
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1143 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1144 |
msgid "Invoice"
|
1145 |
msgstr "Faktúra"
|
1146 |
|
@@ -1279,70 +1280,98 @@ msgid ""
|
|
1279 |
msgstr ""
|
1280 |
|
1281 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1282 |
-
msgid "
|
|
|
1283 |
msgstr ""
|
1284 |
|
1285 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1286 |
msgid ""
|
1287 |
-
"
|
|
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1291 |
-
msgid "
|
|
|
|
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1295 |
-
msgid "
|
|
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1299 |
-
msgid "
|
|
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1303 |
msgid "Add additional PDF's to PDF invoices."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1307 |
-
msgid "Send
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1311 |
#, php-format
|
1312 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1316 |
msgid "Learn more"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1320 |
msgid "Stay up-to-date"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1324 |
msgid ""
|
1325 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1326 |
"our newsletter."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1330 |
msgid "Your email address"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1334 |
msgid "Signup"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "No spam, ever. Unsubscribe at any time"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "About"
|
1343 |
msgstr "O module"
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid ""
|
1347 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1348 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
@@ -1350,17 +1379,17 @@ msgstr ""
|
|
1350 |
"Tento modul je open source projekt, ktorého cieľom je doplniť do <a href="
|
1351 |
"\"http://www.woothemes.com/woocommerce\">WooCommerce</a> faktúrovanie."
|
1352 |
|
1353 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1354 |
#, php-format
|
1355 |
msgid "Version: %s"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1359 |
#, php-format
|
1360 |
msgid "Author: %s"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1364 |
#, php-format
|
1365 |
msgid ""
|
1366 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1368,24 +1397,24 @@ msgid ""
|
|
1368 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1372 |
msgid ""
|
1373 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1377 |
msgid "Need Help?"
|
1378 |
msgstr "Potrebujete pomoc?"
|
1379 |
|
1380 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1381 |
msgid "Frequently Asked Questions"
|
1382 |
msgstr "Často kladené otázky"
|
1383 |
|
1384 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1385 |
msgid "Support forum"
|
1386 |
msgstr "Fórum podpory"
|
1387 |
|
1388 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1389 |
msgid "Request a feature"
|
1390 |
msgstr "Navrhnuť novú funkčnosť"
|
1391 |
|
@@ -1426,61 +1455,61 @@ msgstr ""
|
|
1426 |
msgid "Shipping Method: %s"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1430 |
msgid "Invoice No."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1434 |
msgid "View invoice"
|
1435 |
msgstr "Zobraziť faktúru"
|
1436 |
|
1437 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1438 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1439 |
msgid "PDF Invoice"
|
1440 |
msgstr "PDF Faktúra"
|
1441 |
|
1442 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1443 |
msgid "Create"
|
1444 |
msgstr "Vytvoriť"
|
1445 |
|
1446 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1447 |
#, fuzzy
|
1448 |
#| msgid "Order Date: %s"
|
1449 |
msgid "Date:"
|
1450 |
msgstr "Dátum objednávky: %s"
|
1451 |
|
1452 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1453 |
#, fuzzy
|
1454 |
#| msgid "Order Number: %s"
|
1455 |
msgid "Number:"
|
1456 |
msgstr "Číslo objednávky: %s"
|
1457 |
|
1458 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1459 |
msgid "Sent?"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
msgid "View"
|
1464 |
msgstr "Zobraziť"
|
1465 |
|
1466 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1467 |
msgid "Update"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1471 |
#, fuzzy
|
1472 |
#| msgid "Are you sure to delete the invoice?"
|
1473 |
msgid "Are you sure to delete the PDF invoice?"
|
1474 |
msgstr "Ste si istý, že chcete faktúru zrušiť?"
|
1475 |
|
1476 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1477 |
#, php-format
|
1478 |
msgid ""
|
1479 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1480 |
"an accounting gap!"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1484 |
#, php-format
|
1485 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1486 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
7 |
"Last-Translator: Jaroslav Semančík\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: sk_SK\n"
|
341 |
msgstr ""
|
342 |
|
343 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
344 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
345 |
msgid "Delete"
|
346 |
msgstr ""
|
347 |
|
394 |
msgstr ""
|
395 |
|
396 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
397 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
398 |
msgid "Yes"
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
403 |
msgid "No"
|
404 |
msgstr ""
|
405 |
|
425 |
msgid ""
|
426 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
427 |
"and total rows. When enabled the standard Table Content settings will be "
|
428 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
429 |
+
"template is not supported."
|
430 |
msgstr ""
|
431 |
|
432 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
538 |
msgid "Qty"
|
539 |
msgstr "Ks"
|
540 |
|
541 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
542 |
#, fuzzy, php-format
|
543 |
#| msgid "Subtotal"
|
544 |
msgid "Subtotal %s"
|
545 |
msgstr "Medzisúčet"
|
546 |
|
547 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
548 |
#, fuzzy, php-format
|
549 |
#| msgid "Discount"
|
550 |
msgid "Discount %s"
|
551 |
msgstr "Zľava"
|
552 |
|
553 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
554 |
#, fuzzy, php-format
|
555 |
#| msgid "Shipping"
|
556 |
msgid "Shipping %s"
|
557 |
msgstr "Poštovné"
|
558 |
|
559 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
560 |
#, php-format
|
561 |
msgid "%1$s %2$s"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
565 |
#, fuzzy, php-format
|
566 |
#| msgid "Total"
|
567 |
msgid "Total %s"
|
568 |
msgstr "Celkom"
|
569 |
|
570 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
571 |
msgid "Request invoice"
|
572 |
msgstr ""
|
573 |
|
796 |
msgstr "Nastavenia"
|
797 |
|
798 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
799 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
800 |
msgid "Support"
|
801 |
msgstr "Podpora"
|
802 |
|
1141 |
msgstr ""
|
1142 |
|
1143 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1144 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1145 |
msgid "Invoice"
|
1146 |
msgstr "Faktúra"
|
1147 |
|
1280 |
msgstr ""
|
1281 |
|
1282 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1283 |
+
msgid ""
|
1284 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1288 |
msgid ""
|
1289 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1290 |
+
"order."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1294 |
+
msgid ""
|
1295 |
+
"Fully customize the table content by modifying line item columns and total "
|
1296 |
+
"rows."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1300 |
+
msgid ""
|
1301 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1302 |
+
"period of time."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1306 |
+
msgid ""
|
1307 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1311 |
+
msgid "Change the font of the PDF invoices."
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1315 |
+
msgid ""
|
1316 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1320 |
+
msgid "Bulk generate PDF invoices."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1324 |
+
msgid "Bulk export and/or download PDF invoices."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1328 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1332 |
msgid "Add additional PDF's to PDF invoices."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1336 |
+
msgid "Send PDF invoices to multiple recipients."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1340 |
#, php-format
|
1341 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1345 |
msgid "Learn more"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1349 |
msgid "Stay up-to-date"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1353 |
msgid ""
|
1354 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1355 |
"our newsletter."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1359 |
msgid "Your email address"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1363 |
msgid "Signup"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1367 |
msgid "No spam, ever. Unsubscribe at any time"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1371 |
msgid "About"
|
1372 |
msgstr "O module"
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1375 |
msgid ""
|
1376 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1377 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1379 |
"Tento modul je open source projekt, ktorého cieľom je doplniť do <a href="
|
1380 |
"\"http://www.woothemes.com/woocommerce\">WooCommerce</a> faktúrovanie."
|
1381 |
|
1382 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1383 |
#, php-format
|
1384 |
msgid "Version: %s"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1388 |
#, php-format
|
1389 |
msgid "Author: %s"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1393 |
#, php-format
|
1394 |
msgid ""
|
1395 |
"We will never ask for donations, but to guarantee future development, we do "
|
1397 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1401 |
msgid ""
|
1402 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1406 |
msgid "Need Help?"
|
1407 |
msgstr "Potrebujete pomoc?"
|
1408 |
|
1409 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1410 |
msgid "Frequently Asked Questions"
|
1411 |
msgstr "Často kladené otázky"
|
1412 |
|
1413 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1414 |
msgid "Support forum"
|
1415 |
msgstr "Fórum podpory"
|
1416 |
|
1417 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1418 |
msgid "Request a feature"
|
1419 |
msgstr "Navrhnuť novú funkčnosť"
|
1420 |
|
1455 |
msgid "Shipping Method: %s"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1459 |
msgid "Invoice No."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1463 |
msgid "View invoice"
|
1464 |
msgstr "Zobraziť faktúru"
|
1465 |
|
|
|
1466 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1467 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1468 |
msgid "PDF Invoice"
|
1469 |
msgstr "PDF Faktúra"
|
1470 |
|
1471 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1472 |
msgid "Create"
|
1473 |
msgstr "Vytvoriť"
|
1474 |
|
1475 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1476 |
#, fuzzy
|
1477 |
#| msgid "Order Date: %s"
|
1478 |
msgid "Date:"
|
1479 |
msgstr "Dátum objednávky: %s"
|
1480 |
|
1481 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1482 |
#, fuzzy
|
1483 |
#| msgid "Order Number: %s"
|
1484 |
msgid "Number:"
|
1485 |
msgstr "Číslo objednávky: %s"
|
1486 |
|
1487 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1488 |
msgid "Sent?"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1492 |
msgid "View"
|
1493 |
msgstr "Zobraziť"
|
1494 |
|
1495 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1496 |
msgid "Update"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1500 |
#, fuzzy
|
1501 |
#| msgid "Are you sure to delete the invoice?"
|
1502 |
msgid "Are you sure to delete the PDF invoice?"
|
1503 |
msgstr "Ste si istý, že chcete faktúru zrušiť?"
|
1504 |
|
1505 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1506 |
#, php-format
|
1507 |
msgid ""
|
1508 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1509 |
"an accounting gap!"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1513 |
#, php-format
|
1514 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1515 |
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: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
@@ -347,7 +347,7 @@ msgid "created on %1$s at %2$s"
|
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
@@ -400,12 +400,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
@@ -437,7 +437,8 @@ msgstr ""
|
|
437 |
msgid ""
|
438 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
439 |
"and total rows. When enabled the standard Table Content settings will be "
|
440 |
-
"ignored."
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -551,36 +552,36 @@ msgstr ""
|
|
551 |
msgid "Qty"
|
552 |
msgstr "Količina"
|
553 |
|
554 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
555 |
#, fuzzy, php-format
|
556 |
#| msgid "Subtotal"
|
557 |
msgid "Subtotal %s"
|
558 |
msgstr "Skupaj"
|
559 |
|
560 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
561 |
#, fuzzy, php-format
|
562 |
#| msgid "Discount"
|
563 |
msgid "Discount %s"
|
564 |
msgstr "Popust"
|
565 |
|
566 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
567 |
#, fuzzy, php-format
|
568 |
#| msgid "Shipping"
|
569 |
msgid "Shipping %s"
|
570 |
msgstr "Poštnina"
|
571 |
|
572 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
573 |
#, php-format
|
574 |
msgid "%1$s %2$s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
578 |
#, fuzzy, php-format
|
579 |
#| msgid "Total"
|
580 |
msgid "Total %s"
|
581 |
msgstr "Skupaj"
|
582 |
|
583 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
584 |
msgid "Request invoice"
|
585 |
msgstr ""
|
586 |
|
@@ -810,7 +811,7 @@ msgid "Settings"
|
|
810 |
msgstr ""
|
811 |
|
812 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
813 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
814 |
msgid "Support"
|
815 |
msgstr ""
|
816 |
|
@@ -1162,7 +1163,7 @@ msgid "Change the name of the invoice."
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1165 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1166 |
msgid "Invoice"
|
1167 |
msgstr "Račun"
|
1168 |
|
@@ -1301,86 +1302,114 @@ msgid ""
|
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1304 |
-
msgid "
|
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1308 |
msgid ""
|
1309 |
-
"
|
|
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1313 |
-
msgid "
|
|
|
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1317 |
-
msgid "
|
|
|
|
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1321 |
-
msgid "
|
|
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
msgid "Add additional PDF's to PDF invoices."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1329 |
-
msgid "Send
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1333 |
#, php-format
|
1334 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
msgid "Learn more"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
msgid "Stay up-to-date"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1346 |
msgid ""
|
1347 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1348 |
"our newsletter."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1352 |
msgid "Your email address"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1356 |
msgid "Signup"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1360 |
msgid "No spam, ever. Unsubscribe at any time"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1364 |
msgid "About"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1368 |
msgid ""
|
1369 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1370 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1374 |
#, php-format
|
1375 |
msgid "Version: %s"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1379 |
#, php-format
|
1380 |
msgid "Author: %s"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1384 |
#, php-format
|
1385 |
msgid ""
|
1386 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1388,24 +1417,24 @@ msgid ""
|
|
1388 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1392 |
msgid ""
|
1393 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1397 |
msgid "Need Help?"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1401 |
msgid "Frequently Asked Questions"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1405 |
msgid "Support forum"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1409 |
msgid "Request a feature"
|
1410 |
msgstr ""
|
1411 |
|
@@ -1446,59 +1475,59 @@ msgstr ""
|
|
1446 |
msgid "Shipping Method: %s"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1450 |
msgid "Invoice No."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1454 |
msgid "View invoice"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1458 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1459 |
msgid "PDF Invoice"
|
1460 |
msgstr "Račun PDF"
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
msgid "Create"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1467 |
#, fuzzy
|
1468 |
#| msgid "Order Date: %s"
|
1469 |
msgid "Date:"
|
1470 |
msgstr "Datum naročila: %s"
|
1471 |
|
1472 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1473 |
#, fuzzy
|
1474 |
#| msgid "VAT Number: %s"
|
1475 |
msgid "Number:"
|
1476 |
msgstr "Davčna številka: %s"
|
1477 |
|
1478 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1479 |
msgid "Sent?"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1483 |
msgid "View"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1487 |
msgid "Update"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1491 |
msgid "Are you sure to delete the PDF invoice?"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1495 |
#, php-format
|
1496 |
msgid ""
|
1497 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1498 |
"an accounting gap!"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1502 |
#, php-format
|
1503 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1504 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
347 |
msgstr ""
|
348 |
|
349 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
350 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
351 |
msgid "Delete"
|
352 |
msgstr ""
|
353 |
|
400 |
msgstr ""
|
401 |
|
402 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
403 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
404 |
msgid "Yes"
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
409 |
msgid "No"
|
410 |
msgstr ""
|
411 |
|
437 |
msgid ""
|
438 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
439 |
"and total rows. When enabled the standard Table Content settings will be "
|
440 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
441 |
+
"template is not supported."
|
442 |
msgstr ""
|
443 |
|
444 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
552 |
msgid "Qty"
|
553 |
msgstr "Količina"
|
554 |
|
555 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
556 |
#, fuzzy, php-format
|
557 |
#| msgid "Subtotal"
|
558 |
msgid "Subtotal %s"
|
559 |
msgstr "Skupaj"
|
560 |
|
561 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
562 |
#, fuzzy, php-format
|
563 |
#| msgid "Discount"
|
564 |
msgid "Discount %s"
|
565 |
msgstr "Popust"
|
566 |
|
567 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
568 |
#, fuzzy, php-format
|
569 |
#| msgid "Shipping"
|
570 |
msgid "Shipping %s"
|
571 |
msgstr "Poštnina"
|
572 |
|
573 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
574 |
#, php-format
|
575 |
msgid "%1$s %2$s"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
579 |
#, fuzzy, php-format
|
580 |
#| msgid "Total"
|
581 |
msgid "Total %s"
|
582 |
msgstr "Skupaj"
|
583 |
|
584 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
585 |
msgid "Request invoice"
|
586 |
msgstr ""
|
587 |
|
811 |
msgstr ""
|
812 |
|
813 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
814 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
815 |
msgid "Support"
|
816 |
msgstr ""
|
817 |
|
1163 |
msgstr ""
|
1164 |
|
1165 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1166 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1167 |
msgid "Invoice"
|
1168 |
msgstr "Račun"
|
1169 |
|
1302 |
msgstr ""
|
1303 |
|
1304 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1305 |
+
msgid ""
|
1306 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1310 |
msgid ""
|
1311 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1312 |
+
"order."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1316 |
+
msgid ""
|
1317 |
+
"Fully customize the table content by modifying line item columns and total "
|
1318 |
+
"rows."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1322 |
+
msgid ""
|
1323 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1324 |
+
"period of time."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1328 |
+
msgid ""
|
1329 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1333 |
+
msgid "Change the font of the PDF invoices."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1337 |
+
msgid ""
|
1338 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1339 |
+
msgstr ""
|
1340 |
+
|
1341 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1342 |
+
msgid "Bulk generate PDF invoices."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1346 |
+
msgid "Bulk export and/or download PDF invoices."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1350 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1354 |
msgid "Add additional PDF's to PDF invoices."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1358 |
+
msgid "Send PDF invoices to multiple recipients."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1362 |
#, php-format
|
1363 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1367 |
msgid "Learn more"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1371 |
msgid "Stay up-to-date"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1375 |
msgid ""
|
1376 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1377 |
"our newsletter."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1381 |
msgid "Your email address"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1385 |
msgid "Signup"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1389 |
msgid "No spam, ever. Unsubscribe at any time"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1393 |
msgid "About"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1397 |
msgid ""
|
1398 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1399 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1403 |
#, php-format
|
1404 |
msgid "Version: %s"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1408 |
#, php-format
|
1409 |
msgid "Author: %s"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1413 |
#, php-format
|
1414 |
msgid ""
|
1415 |
"We will never ask for donations, but to guarantee future development, we do "
|
1417 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1421 |
msgid ""
|
1422 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1426 |
msgid "Need Help?"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1430 |
msgid "Frequently Asked Questions"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1434 |
msgid "Support forum"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1438 |
msgid "Request a feature"
|
1439 |
msgstr ""
|
1440 |
|
1475 |
msgid "Shipping Method: %s"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1479 |
msgid "Invoice No."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1483 |
msgid "View invoice"
|
1484 |
msgstr ""
|
1485 |
|
|
|
1486 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1487 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1488 |
msgid "PDF Invoice"
|
1489 |
msgstr "Račun PDF"
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1492 |
msgid "Create"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1496 |
#, fuzzy
|
1497 |
#| msgid "Order Date: %s"
|
1498 |
msgid "Date:"
|
1499 |
msgstr "Datum naročila: %s"
|
1500 |
|
1501 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1502 |
#, fuzzy
|
1503 |
#| msgid "VAT Number: %s"
|
1504 |
msgid "Number:"
|
1505 |
msgstr "Davčna številka: %s"
|
1506 |
|
1507 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1508 |
msgid "Sent?"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1512 |
msgid "View"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1516 |
msgid "Update"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1520 |
msgid "Are you sure to delete the PDF invoice?"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1524 |
#, php-format
|
1525 |
msgid ""
|
1526 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1527 |
"an accounting gap!"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1531 |
#, php-format
|
1532 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1533 |
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: 2017-
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
@@ -352,7 +352,7 @@ msgid "created on %1$s at %2$s"
|
|
352 |
msgstr ""
|
353 |
|
354 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
355 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
356 |
msgid "Delete"
|
357 |
msgstr ""
|
358 |
|
@@ -405,12 +405,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
409 |
msgid "Yes"
|
410 |
msgstr ""
|
411 |
|
412 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
413 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
414 |
msgid "No"
|
415 |
msgstr ""
|
416 |
|
@@ -442,7 +442,8 @@ msgstr ""
|
|
442 |
msgid ""
|
443 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
444 |
"and total rows. When enabled the standard Table Content settings will be "
|
445 |
-
"ignored."
|
|
|
446 |
msgstr ""
|
447 |
|
448 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -558,36 +559,36 @@ msgstr ""
|
|
558 |
msgid "Qty"
|
559 |
msgstr "Antal"
|
560 |
|
561 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
562 |
#, fuzzy, php-format
|
563 |
#| msgid "Subtotal"
|
564 |
msgid "Subtotal %s"
|
565 |
msgstr "Delsumma"
|
566 |
|
567 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
568 |
#, fuzzy, php-format
|
569 |
#| msgid "Discount"
|
570 |
msgid "Discount %s"
|
571 |
msgstr "Rabatt"
|
572 |
|
573 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
574 |
#, fuzzy, php-format
|
575 |
#| msgid "Shipping"
|
576 |
msgid "Shipping %s"
|
577 |
msgstr "Frakt"
|
578 |
|
579 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
580 |
#, php-format
|
581 |
msgid "%1$s %2$s"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
585 |
#, fuzzy, php-format
|
586 |
#| msgid "Total"
|
587 |
msgid "Total %s"
|
588 |
msgstr "Total"
|
589 |
|
590 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
591 |
msgid "Request invoice"
|
592 |
msgstr ""
|
593 |
|
@@ -817,7 +818,7 @@ msgid "Settings"
|
|
817 |
msgstr ""
|
818 |
|
819 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
820 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
821 |
msgid "Support"
|
822 |
msgstr ""
|
823 |
|
@@ -1171,7 +1172,7 @@ msgid "Change the name of the invoice."
|
|
1171 |
msgstr ""
|
1172 |
|
1173 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1174 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1175 |
msgid "Invoice"
|
1176 |
msgstr "Faktura"
|
1177 |
|
@@ -1310,86 +1311,114 @@ msgid ""
|
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1313 |
-
msgid "
|
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1317 |
msgid ""
|
1318 |
-
"
|
|
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1322 |
-
msgid "
|
|
|
|
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1326 |
-
msgid "
|
|
|
|
|
1327 |
msgstr ""
|
1328 |
|
1329 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1330 |
-
msgid "
|
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1334 |
msgid "Add additional PDF's to PDF invoices."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1338 |
-
msgid "Send
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1342 |
#, php-format
|
1343 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1347 |
msgid "Learn more"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1351 |
msgid "Stay up-to-date"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1355 |
msgid ""
|
1356 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1357 |
"our newsletter."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1361 |
msgid "Your email address"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1365 |
msgid "Signup"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1369 |
msgid "No spam, ever. Unsubscribe at any time"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1373 |
msgid "About"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1377 |
msgid ""
|
1378 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1379 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1383 |
#, php-format
|
1384 |
msgid "Version: %s"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1388 |
#, php-format
|
1389 |
msgid "Author: %s"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1393 |
#, php-format
|
1394 |
msgid ""
|
1395 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1397,24 +1426,24 @@ msgid ""
|
|
1397 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1401 |
msgid ""
|
1402 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1406 |
msgid "Need Help?"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1410 |
msgid "Frequently Asked Questions"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1414 |
msgid "Support forum"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1418 |
msgid "Request a feature"
|
1419 |
msgstr ""
|
1420 |
|
@@ -1455,61 +1484,61 @@ msgstr ""
|
|
1455 |
msgid "Shipping Method: %s"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1459 |
msgid "Invoice No."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1463 |
msgid "View invoice"
|
1464 |
msgstr "Visa Faktura"
|
1465 |
|
1466 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1467 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1468 |
msgid "PDF Invoice"
|
1469 |
msgstr "PDF Faktura"
|
1470 |
|
1471 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1472 |
msgid "Create"
|
1473 |
msgstr "Skapa"
|
1474 |
|
1475 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1476 |
#, fuzzy
|
1477 |
#| msgid "Order Date: %s"
|
1478 |
msgid "Date:"
|
1479 |
msgstr "Orderdatum: %s"
|
1480 |
|
1481 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1482 |
#, fuzzy
|
1483 |
#| msgid "Order Number: %s"
|
1484 |
msgid "Number:"
|
1485 |
msgstr "Ordernummer: %s"
|
1486 |
|
1487 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1488 |
msgid "Sent?"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1492 |
msgid "View"
|
1493 |
msgstr "Visa"
|
1494 |
|
1495 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1496 |
msgid "Update"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1500 |
#, fuzzy
|
1501 |
#| msgid "Are you sure to delete the invoice?"
|
1502 |
msgid "Are you sure to delete the PDF invoice?"
|
1503 |
msgstr "Är du säker på att du vill radera fakturan?"
|
1504 |
|
1505 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1506 |
#, php-format
|
1507 |
msgid ""
|
1508 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1509 |
"an accounting gap!"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1513 |
#, php-format
|
1514 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1515 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
4 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
5 |
+
"PO-Revision-Date: 2017-10-10 12:19+0200\n"
|
6 |
"Last-Translator: Mikael Akerlund <mikael.akerlund@sponsorhjalpen.se>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sv\n"
|
352 |
msgstr ""
|
353 |
|
354 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
355 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
356 |
msgid "Delete"
|
357 |
msgstr ""
|
358 |
|
405 |
msgstr ""
|
406 |
|
407 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
408 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
409 |
msgid "Yes"
|
410 |
msgstr ""
|
411 |
|
412 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
413 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
414 |
msgid "No"
|
415 |
msgstr ""
|
416 |
|
442 |
msgid ""
|
443 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
444 |
"and total rows. When enabled the standard Table Content settings will be "
|
445 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
446 |
+
"template is not supported."
|
447 |
msgstr ""
|
448 |
|
449 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
559 |
msgid "Qty"
|
560 |
msgstr "Antal"
|
561 |
|
562 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
563 |
#, fuzzy, php-format
|
564 |
#| msgid "Subtotal"
|
565 |
msgid "Subtotal %s"
|
566 |
msgstr "Delsumma"
|
567 |
|
568 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
569 |
#, fuzzy, php-format
|
570 |
#| msgid "Discount"
|
571 |
msgid "Discount %s"
|
572 |
msgstr "Rabatt"
|
573 |
|
574 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
575 |
#, fuzzy, php-format
|
576 |
#| msgid "Shipping"
|
577 |
msgid "Shipping %s"
|
578 |
msgstr "Frakt"
|
579 |
|
580 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
581 |
#, php-format
|
582 |
msgid "%1$s %2$s"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
586 |
#, fuzzy, php-format
|
587 |
#| msgid "Total"
|
588 |
msgid "Total %s"
|
589 |
msgstr "Total"
|
590 |
|
591 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
592 |
msgid "Request invoice"
|
593 |
msgstr ""
|
594 |
|
818 |
msgstr ""
|
819 |
|
820 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
821 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
822 |
msgid "Support"
|
823 |
msgstr ""
|
824 |
|
1172 |
msgstr ""
|
1173 |
|
1174 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1175 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1176 |
msgid "Invoice"
|
1177 |
msgstr "Faktura"
|
1178 |
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1314 |
+
msgid ""
|
1315 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1319 |
msgid ""
|
1320 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1321 |
+
"order."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1325 |
+
msgid ""
|
1326 |
+
"Fully customize the table content by modifying line item columns and total "
|
1327 |
+
"rows."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1331 |
+
msgid ""
|
1332 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1333 |
+
"period of time."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1337 |
+
msgid ""
|
1338 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1342 |
+
msgid "Change the font of the PDF invoices."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1346 |
+
msgid ""
|
1347 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1351 |
+
msgid "Bulk generate PDF invoices."
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1355 |
+
msgid "Bulk export and/or download PDF invoices."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1359 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1363 |
msgid "Add additional PDF's to PDF invoices."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1367 |
+
msgid "Send PDF invoices to multiple recipients."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1371 |
#, php-format
|
1372 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1376 |
msgid "Learn more"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1380 |
msgid "Stay up-to-date"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1384 |
msgid ""
|
1385 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1386 |
"our newsletter."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1390 |
msgid "Your email address"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1394 |
msgid "Signup"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1398 |
msgid "No spam, ever. Unsubscribe at any time"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1402 |
msgid "About"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1406 |
msgid ""
|
1407 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1408 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1412 |
#, php-format
|
1413 |
msgid "Version: %s"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1417 |
#, php-format
|
1418 |
msgid "Author: %s"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1422 |
#, php-format
|
1423 |
msgid ""
|
1424 |
"We will never ask for donations, but to guarantee future development, we do "
|
1426 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1430 |
msgid ""
|
1431 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1435 |
msgid "Need Help?"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1439 |
msgid "Frequently Asked Questions"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1443 |
msgid "Support forum"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1447 |
msgid "Request a feature"
|
1448 |
msgstr ""
|
1449 |
|
1484 |
msgid "Shipping Method: %s"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1488 |
msgid "Invoice No."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1492 |
msgid "View invoice"
|
1493 |
msgstr "Visa Faktura"
|
1494 |
|
|
|
1495 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1496 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1497 |
msgid "PDF Invoice"
|
1498 |
msgstr "PDF Faktura"
|
1499 |
|
1500 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1501 |
msgid "Create"
|
1502 |
msgstr "Skapa"
|
1503 |
|
1504 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1505 |
#, fuzzy
|
1506 |
#| msgid "Order Date: %s"
|
1507 |
msgid "Date:"
|
1508 |
msgstr "Orderdatum: %s"
|
1509 |
|
1510 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1511 |
#, fuzzy
|
1512 |
#| msgid "Order Number: %s"
|
1513 |
msgid "Number:"
|
1514 |
msgstr "Ordernummer: %s"
|
1515 |
|
1516 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1517 |
msgid "Sent?"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1521 |
msgid "View"
|
1522 |
msgstr "Visa"
|
1523 |
|
1524 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1525 |
msgid "Update"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1529 |
#, fuzzy
|
1530 |
#| msgid "Are you sure to delete the invoice?"
|
1531 |
msgid "Are you sure to delete the PDF invoice?"
|
1532 |
msgstr "Är du säker på att du vill radera fakturan?"
|
1533 |
|
1534 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1535 |
#, php-format
|
1536 |
msgid ""
|
1537 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1538 |
"an accounting gap!"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1542 |
#, php-format
|
1543 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1544 |
msgstr ""
|
lang/woocommerce-pdf-invoices.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2017-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: \n"
|
@@ -341,7 +341,7 @@ msgid "created on %1$s at %2$s"
|
|
341 |
msgstr ""
|
342 |
|
343 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
344 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
345 |
msgid "Delete"
|
346 |
msgstr ""
|
347 |
|
@@ -394,12 +394,12 @@ msgid "Select more then one order to generate a global invoice."
|
|
394 |
msgstr ""
|
395 |
|
396 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
397 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
398 |
msgid "Yes"
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
403 |
msgid "No"
|
404 |
msgstr ""
|
405 |
|
@@ -425,7 +425,8 @@ msgstr ""
|
|
425 |
msgid ""
|
426 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
427 |
"and total rows. When enabled the standard Table Content settings will be "
|
428 |
-
"ignored."
|
|
|
429 |
msgstr ""
|
430 |
|
431 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
@@ -533,32 +534,32 @@ msgstr ""
|
|
533 |
msgid "Qty"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
537 |
#, php-format
|
538 |
msgid "Subtotal %s"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
542 |
#, php-format
|
543 |
msgid "Discount %s"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
547 |
#, php-format
|
548 |
msgid "Shipping %s"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
552 |
#, php-format
|
553 |
msgid "%1$s %2$s"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
557 |
#, php-format
|
558 |
msgid "Total %s"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:
|
562 |
msgid "Request invoice"
|
563 |
msgstr ""
|
564 |
|
@@ -779,7 +780,7 @@ msgid "Settings"
|
|
779 |
msgstr ""
|
780 |
|
781 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
782 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
783 |
msgid "Support"
|
784 |
msgstr ""
|
785 |
|
@@ -1122,7 +1123,7 @@ msgid "Change the name of the invoice."
|
|
1122 |
msgstr ""
|
1123 |
|
1124 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1125 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1126 |
msgid "Invoice"
|
1127 |
msgstr ""
|
1128 |
|
@@ -1261,86 +1262,114 @@ msgid ""
|
|
1261 |
msgstr ""
|
1262 |
|
1263 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1264 |
-
msgid "
|
|
|
1265 |
msgstr ""
|
1266 |
|
1267 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1268 |
msgid ""
|
1269 |
-
"
|
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1273 |
-
msgid "
|
|
|
|
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1277 |
-
msgid "
|
|
|
|
|
1278 |
msgstr ""
|
1279 |
|
1280 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1281 |
-
msgid "
|
|
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
msgid "Add additional PDF's to PDF invoices."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1289 |
-
msgid "Send
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1293 |
#, php-format
|
1294 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1298 |
msgid "Learn more"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1302 |
msgid "Stay up-to-date"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1306 |
msgid ""
|
1307 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1308 |
"our newsletter."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1312 |
msgid "Your email address"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1316 |
msgid "Signup"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1320 |
msgid "No spam, ever. Unsubscribe at any time"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1324 |
msgid "About"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1328 |
msgid ""
|
1329 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1330 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1334 |
#, php-format
|
1335 |
msgid "Version: %s"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1339 |
#, php-format
|
1340 |
msgid "Author: %s"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1344 |
#, php-format
|
1345 |
msgid ""
|
1346 |
"We will never ask for donations, but to guarantee future development, we do "
|
@@ -1348,24 +1377,24 @@ msgid ""
|
|
1348 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1352 |
msgid ""
|
1353 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1357 |
msgid "Need Help?"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1361 |
msgid "Frequently Asked Questions"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1365 |
msgid "Support forum"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:
|
1369 |
msgid "Request a feature"
|
1370 |
msgstr ""
|
1371 |
|
@@ -1406,55 +1435,55 @@ msgstr ""
|
|
1406 |
msgid "Shipping Method: %s"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1410 |
msgid "Invoice No."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1414 |
msgid "View invoice"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:635
|
1418 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
|
|
1419 |
msgid "PDF Invoice"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1423 |
msgid "Create"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1427 |
msgid "Date:"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1431 |
msgid "Number:"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1435 |
msgid "Sent?"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1439 |
msgid "View"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1443 |
msgid "Update"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1447 |
msgid "Are you sure to delete the PDF invoice?"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1451 |
#, php-format
|
1452 |
msgid ""
|
1453 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1454 |
"an accounting gap!"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:
|
1458 |
#, php-format
|
1459 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1460 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: WooCommerce PDF Invoices\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2017-10-10 12:19+0200\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: \n"
|
341 |
msgstr ""
|
342 |
|
343 |
#: woocommerce-pdf-invoices-premium/includes/class-credit-note.php:287
|
344 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:746
|
345 |
msgid "Delete"
|
346 |
msgstr ""
|
347 |
|
394 |
msgstr ""
|
395 |
|
396 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
397 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
398 |
msgid "Yes"
|
399 |
msgstr ""
|
400 |
|
401 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice-reminder.php:66
|
402 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:714
|
403 |
msgid "No"
|
404 |
msgstr ""
|
405 |
|
425 |
msgid ""
|
426 |
"Enable Advanced Table Content settings to fully customize line item columns "
|
427 |
"and total rows. When enabled the standard Table Content settings will be "
|
428 |
+
"ignored. When using a custom template, make sure to update it! Micro "
|
429 |
+
"template is not supported."
|
430 |
msgstr ""
|
431 |
|
432 |
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:145
|
534 |
msgid "Qty"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:607
|
538 |
#, php-format
|
539 |
msgid "Subtotal %s"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:625
|
543 |
#, php-format
|
544 |
msgid "Discount %s"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:652
|
548 |
#, php-format
|
549 |
msgid "Shipping %s"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:685
|
553 |
#, php-format
|
554 |
msgid "%1$s %2$s"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:866
|
558 |
#, php-format
|
559 |
msgid "Total %s"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: woocommerce-pdf-invoices-premium/includes/class-invoice.php:993
|
563 |
msgid "Request invoice"
|
564 |
msgstr ""
|
565 |
|
780 |
msgstr ""
|
781 |
|
782 |
#: woocommerce-pdf-invoices-premium/includes/woocommerce-pdf-invoices-premium.php:104
|
783 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:62
|
784 |
msgid "Support"
|
785 |
msgstr ""
|
786 |
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: woocommerce-pdf-invoices/includes/admin/settings/class-template.php:261
|
1126 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:824
|
1127 |
msgid "Invoice"
|
1128 |
msgstr ""
|
1129 |
|
1262 |
msgstr ""
|
1263 |
|
1264 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:5
|
1265 |
+
msgid ""
|
1266 |
+
"Attach PDF invoices to many more email types including third party plugins."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:6
|
1270 |
msgid ""
|
1271 |
+
"Send credit notes and cancelled PDF invoices when refunding or cancelling "
|
1272 |
+
"order."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:7
|
1276 |
+
msgid ""
|
1277 |
+
"Fully customize the table content by modifying line item columns and total "
|
1278 |
+
"rows."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:8
|
1282 |
+
msgid ""
|
1283 |
+
"Automatically send PDF invoices as a reminder configurable within a specific "
|
1284 |
+
"period of time."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:9
|
1288 |
+
msgid ""
|
1289 |
+
"Let customers decide if they would like to get a PDF invoice on checkout."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:10
|
1293 |
+
msgid "Change the font of the PDF invoices."
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:12
|
1297 |
+
msgid ""
|
1298 |
+
"Generate PDF invoices in multiple languages (WPML and Polylang compatible)."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:13
|
1302 |
+
msgid "Bulk generate PDF invoices."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:14
|
1306 |
+
msgid "Bulk export and/or download PDF invoices."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:15
|
1310 |
+
msgid "Bill periodically by generating and sending global invoices."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:16
|
1314 |
msgid "Add additional PDF's to PDF invoices."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:17
|
1318 |
+
msgid "Send PDF invoices to multiple recipients."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:18
|
1322 |
#, php-format
|
1323 |
msgid "Attach invoices to <a href=\"%s\">WooCommerce Subscriptions</a> emails."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:20
|
1327 |
msgid "Learn more"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:23
|
1331 |
msgid "Stay up-to-date"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:27
|
1335 |
msgid ""
|
1336 |
"We're constantly developing new features, stay up-to-date by subscribing to "
|
1337 |
"our newsletter."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:33
|
1341 |
msgid "Your email address"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:39
|
1345 |
msgid "Signup"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:42
|
1349 |
msgid "No spam, ever. Unsubscribe at any time"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:51
|
1353 |
msgid "About"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:53
|
1357 |
msgid ""
|
1358 |
"This plugin is an open source project wich aims to fill the invoicing gap of "
|
1359 |
"<a href=\"http://www.woothemes.com/woocommerce\">WooCommerce</a>."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:56
|
1363 |
#, php-format
|
1364 |
msgid "Version: %s"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:58
|
1368 |
#, php-format
|
1369 |
msgid "Author: %s"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:64
|
1373 |
#, php-format
|
1374 |
msgid ""
|
1375 |
"We will never ask for donations, but to guarantee future development, we do "
|
1377 |
"\"%1$s\">★★★★★</a> rating and vote for <a href=\"%2$s\">works</a>."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:88
|
1381 |
msgid ""
|
1382 |
"Checkout this amazing free WooCommerce PDF Invoices plugin for WordPress!"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:93
|
1386 |
msgid "Need Help?"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:95
|
1390 |
msgid "Frequently Asked Questions"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:96
|
1394 |
msgid "Support forum"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php:97
|
1398 |
msgid "Request a feature"
|
1399 |
msgstr ""
|
1400 |
|
1435 |
msgid "Shipping Method: %s"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:605
|
1439 |
msgid "Invoice No."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:642
|
1443 |
msgid "View invoice"
|
1444 |
msgstr ""
|
1445 |
|
|
|
1446 |
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:657
|
1447 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:679
|
1448 |
msgid "PDF Invoice"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:694
|
1452 |
msgid "Create"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:700
|
1456 |
msgid "Date:"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:704
|
1460 |
msgid "Number:"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:713
|
1464 |
msgid "Sent?"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:722
|
1468 |
msgid "View"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:729
|
1472 |
msgid "Update"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:734
|
1476 |
msgid "Are you sure to delete the PDF invoice?"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:738
|
1480 |
#, php-format
|
1481 |
msgid ""
|
1482 |
"You will be missing a PDF invoice with invoice number %d and thus creating "
|
1483 |
"an accounting gap!"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php:741
|
1487 |
#, php-format
|
1488 |
msgid "Instead consider using Cancelled PDF invoices with %s."
|
1489 |
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: 4.8
|
7 |
-
Stable tag: 2.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -273,6 +273,12 @@ add_filter( 'wpi_template_name', 'change_template_based_on_order_language', 10,
|
|
273 |
|
274 |
== Changelog ==
|
275 |
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
= 2.9.5 - September 20, 2017 =
|
277 |
|
278 |
- Fixed: Download invoice from my account page not showing.
|
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: 4.8
|
7 |
+
Stable tag: 2.9.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
273 |
|
274 |
== Changelog ==
|
275 |
|
276 |
+
= 2.9.6 - October 10, 2017 =
|
277 |
+
|
278 |
+
- Added: Filter 'wpi_skip_pdf_invoice_attachment' to skip PDF invoice email attachment.
|
279 |
+
- Fixed: Non-dismissable notice by temporary disabling it.
|
280 |
+
- Fixed: PDF invoice marked as sent when sent to admin.
|
281 |
+
|
282 |
= 2.9.5 - September 20, 2017 =
|
283 |
|
284 |
- Fixed: Download invoice from my account page not showing.
|