Version Description
Download this release
Release Info
Developer | tychesoftwares |
Plugin | WooCommerce Print Invoice & Delivery Note |
Version | 4.2 |
Comparing to | |
See all releases |
Code changes from version 3.1.1 to 4.2
- css/admin.css +90 -22
- fonts/icons.eot +0 -0
- fonts/icons.svg +12 -10
- fonts/icons.ttf +0 -0
- fonts/icons.woff +0 -0
- includes/class-wcdn-print.php +206 -79
- includes/class-wcdn-settings.php +412 -352
- includes/class-wcdn-theme.php +66 -13
- includes/class-wcdn-writepanel.php +106 -49
- includes/wcdn-template-functions.php +195 -26
- includes/wcdn-template-hooks.php +8 -2
- js/admin.js +59 -19
- js/theme.js +3 -0
- languages/woocommerce-delivery-notes-cs_CZ.mo +59 -0
- languages/woocommerce-delivery-notes-cs_CZ.po +539 -0
- languages/woocommerce-delivery-notes-da_DK.mo +0 -0
- languages/woocommerce-delivery-notes-da_DK.po +426 -210
- languages/woocommerce-delivery-notes-de_DE.mo +0 -0
- languages/woocommerce-delivery-notes-de_DE.po +344 -208
- languages/woocommerce-delivery-notes-es_ES.mo +0 -0
- languages/woocommerce-delivery-notes-es_ES.po +411 -220
- languages/woocommerce-delivery-notes-et.mo +0 -0
- languages/woocommerce-delivery-notes-et.po +471 -0
- languages/woocommerce-delivery-notes-fa_IR.mo +0 -0
- languages/woocommerce-delivery-notes-fa_IR.po +2 -2
- languages/woocommerce-delivery-notes-fi.mo +0 -0
- languages/woocommerce-delivery-notes-fi.po +0 -295
- languages/woocommerce-delivery-notes-fi_FI.mo +0 -0
- languages/woocommerce-delivery-notes-fi_FI.po +500 -0
- languages/woocommerce-delivery-notes-fr_FR.mo +0 -0
- languages/woocommerce-delivery-notes-fr_FR.po +490 -210
- languages/woocommerce-delivery-notes-it_IT.mo +0 -0
- languages/woocommerce-delivery-notes-it_IT.po +414 -270
- languages/woocommerce-delivery-notes-nl_NL.mo +0 -0
- languages/woocommerce-delivery-notes-nl_NL.po +130 -94
- languages/woocommerce-delivery-notes-pl_PL.mo +0 -0
- languages/woocommerce-delivery-notes-pl_PL.po +0 -295
- languages/woocommerce-delivery-notes-pt_BR.mo +0 -0
- languages/woocommerce-delivery-notes-pt_BR.po +438 -228
- languages/woocommerce-delivery-notes-ru_RU.mo +0 -0
- languages/woocommerce-delivery-notes-ru_RU.po +0 -295
- languages/woocommerce-delivery-notes-sk_SK.mo +0 -0
- languages/woocommerce-delivery-notes-sk_SK.po +0 -295
- languages/woocommerce-delivery-notes-sv_SE.mo +0 -0
- languages/woocommerce-delivery-notes-sv_SE.po +465 -213
- languages/woocommerce-delivery-notes-tr_TR.mo +0 -0
- languages/woocommerce-delivery-notes-tr_TR.po +0 -295
- languages/woocommerce-delivery-notes-vi_VN.mo +0 -0
- languages/woocommerce-delivery-notes-vi_VN.po +539 -0
- languages/woocommerce-delivery-notes.pot +260 -165
- readme.md +6 -2
- readme.txt +197 -32
- templates/print-order/print-content.php +23 -24
- templates/print-order/print-order.php +12 -2
- templates/print-order/style.css +52 -18
- woocommerce-delivery-notes.php +145 -37
css/admin.css
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
|
3 |
@font-face {
|
4 |
font-family: 'icons';
|
5 |
-
src: url('../fonts/icons.eot
|
6 |
-
src: url('../fonts/icons.eot
|
7 |
-
url('../fonts/icons.woff
|
8 |
-
url('../fonts/icons.ttf
|
9 |
-
url('../fonts/icons.svg
|
10 |
font-weight: normal;
|
11 |
font-style: normal;
|
12 |
}
|
@@ -29,13 +29,7 @@
|
|
29 |
#woocommerce-delivery-notes-box span.print-preview-loading {
|
30 |
position: absolute;
|
31 |
right: 2.5em;
|
32 |
-
top: -2.
|
33 |
-
}
|
34 |
-
|
35 |
-
#woocommerce-delivery-notes-box span.print-preview-loading,
|
36 |
-
.type-shop_order .column-order_actions span.print-preview-loading {
|
37 |
-
display: none;
|
38 |
-
vertical-align: middle;
|
39 |
}
|
40 |
|
41 |
#woocommerce-delivery-notes-box .print-actions {
|
@@ -44,11 +38,14 @@
|
|
44 |
|
45 |
#woocommerce-delivery-notes-box .print-info {
|
46 |
margin-top: 0.3em;
|
47 |
-
border-top: 1px solid #
|
48 |
padding: 10px 12px;
|
|
|
|
|
49 |
}
|
50 |
|
51 |
/* All orders */
|
|
|
52 |
.type-shop_order .column-order_actions .print-preview-button {
|
53 |
display: block;
|
54 |
text-indent: -9999px;
|
@@ -77,14 +74,24 @@
|
|
77 |
text-align: center;
|
78 |
content: "";
|
79 |
line-height: 1.85;
|
|
|
|
|
80 |
}
|
81 |
|
82 |
.type-shop_order .column-order_actions .print-preview-button.invoice:before {
|
83 |
-
content: "\
|
84 |
}
|
85 |
|
86 |
.type-shop_order .column-order_actions .print-preview-button.delivery-note:before {
|
87 |
-
content: "\
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
.type-shop_order .column-order_actions span.print-preview-loading {
|
@@ -96,21 +103,82 @@
|
|
96 |
display: none;
|
97 |
}
|
98 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
/* Settings */
|
100 |
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
|
104 |
-
|
|
|
|
|
|
|
105 |
cursor: pointer;
|
106 |
-
max-width: 200px;
|
107 |
-
height: auto;
|
108 |
}
|
109 |
|
110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
float: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
}
|
113 |
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
|
|
|
|
116 |
}
|
2 |
|
3 |
@font-face {
|
4 |
font-family: 'icons';
|
5 |
+
src: url('../fonts/icons.eot');
|
6 |
+
src: url('../fonts/icons.eot?#iefix') format('embedded-opentype'),
|
7 |
+
url('../fonts/icons.woff') format('woff'),
|
8 |
+
url('../fonts/icons.ttf') format('truetype'),
|
9 |
+
url('../fonts/icons.svg#icons') format('svg');
|
10 |
font-weight: normal;
|
11 |
font-style: normal;
|
12 |
}
|
29 |
#woocommerce-delivery-notes-box span.print-preview-loading {
|
30 |
position: absolute;
|
31 |
right: 2.5em;
|
32 |
+
top: -2.1em;
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
}
|
34 |
|
35 |
#woocommerce-delivery-notes-box .print-actions {
|
38 |
|
39 |
#woocommerce-delivery-notes-box .print-info {
|
40 |
margin-top: 0.3em;
|
41 |
+
border-top: 1px solid #ddd;
|
42 |
padding: 10px 12px;
|
43 |
+
margin-bottom: 0;
|
44 |
+
background-color: #f5f5f5;
|
45 |
}
|
46 |
|
47 |
/* All orders */
|
48 |
+
|
49 |
.type-shop_order .column-order_actions .print-preview-button {
|
50 |
display: block;
|
51 |
text-indent: -9999px;
|
74 |
text-align: center;
|
75 |
content: "";
|
76 |
line-height: 1.85;
|
77 |
+
|
78 |
+
content: "\e603";
|
79 |
}
|
80 |
|
81 |
.type-shop_order .column-order_actions .print-preview-button.invoice:before {
|
82 |
+
content: "\e602";
|
83 |
}
|
84 |
|
85 |
.type-shop_order .column-order_actions .print-preview-button.delivery-note:before {
|
86 |
+
content: "\e601";
|
87 |
+
}
|
88 |
+
|
89 |
+
.type-shop_order .column-order_actions .print-preview-button.receipt:before {
|
90 |
+
content: "\e604";
|
91 |
+
}
|
92 |
+
|
93 |
+
.type-shop_order .column-order_actions .print-preview-button.credit-note:before {
|
94 |
+
content: "\e600";
|
95 |
}
|
96 |
|
97 |
.type-shop_order .column-order_actions span.print-preview-loading {
|
103 |
display: none;
|
104 |
}
|
105 |
|
106 |
+
.print-preview-loading {
|
107 |
+
visibility: hidden;
|
108 |
+
vertical-align: middle;
|
109 |
+
margin: 0;
|
110 |
+
}
|
111 |
+
|
112 |
+
.print-preview-loading.is-active {
|
113 |
+
visibility: visible;
|
114 |
+
}
|
115 |
+
|
116 |
/* Settings */
|
117 |
|
118 |
+
.wcdn-image-select-field {
|
119 |
+
position: relative;
|
120 |
+
overflow: hidden;
|
121 |
+
background-color: white;
|
122 |
+
border: 1px solid #ddd;
|
123 |
+
width: 125px;
|
124 |
+
height: 125px;
|
125 |
}
|
126 |
|
127 |
+
.wcdn-image-select-attachment {
|
128 |
+
position: relative;
|
129 |
+
width: 100%;
|
130 |
+
height: 100%;
|
131 |
cursor: pointer;
|
|
|
|
|
132 |
}
|
133 |
|
134 |
+
.wcdn-image-select-attachment .thumbnail {
|
135 |
+
position: absolute;
|
136 |
+
top: 0;
|
137 |
+
left: 0;
|
138 |
+
width: 100%;
|
139 |
+
height: 100%;
|
140 |
+
-webkit-transform: translate( 50%, 50% );
|
141 |
+
-ms-transform: translate(50%,50%);
|
142 |
+
transform: translate( 50%, 50% );
|
143 |
+
}
|
144 |
+
|
145 |
+
.wcdn-image-select-attachment img {
|
146 |
+
position: absolute;
|
147 |
+
top: 0;
|
148 |
+
left: 0;
|
149 |
+
max-height: 100%;
|
150 |
+
max-width: none;
|
151 |
+
-webkit-transform: translate( -50%, -50% );
|
152 |
+
-ms-transform: translate(-50%,-50%);
|
153 |
+
transform: translate( -50%, -50% );
|
154 |
+
}
|
155 |
+
|
156 |
+
.wcdn-image-select-attachment img.portrait {
|
157 |
+
max-height: none;
|
158 |
+
max-width: 100%;
|
159 |
+
}
|
160 |
+
|
161 |
+
.wcdn-image-select-spinner {
|
162 |
float: none;
|
163 |
+
position: absolute;
|
164 |
+
top: 0;
|
165 |
+
left: 0;
|
166 |
+
margin: 10px;
|
167 |
+
}
|
168 |
+
|
169 |
+
.wcdn-image-select-buttons {
|
170 |
+
position: absolute;
|
171 |
+
left: 0;
|
172 |
+
bottom: 0;
|
173 |
+
padding-left: 10px;
|
174 |
+
padding-bottom: 10px;
|
175 |
}
|
176 |
|
177 |
+
.wcdn-image-select-buttons .button {
|
178 |
+
max-width: 105px;
|
179 |
+
white-space: nowrap;
|
180 |
+
overflow: hidden;
|
181 |
+
-webkit-text-overflow: ellipsis;
|
182 |
+
-ms-text-overflow: ellipsis;
|
183 |
+
text-overflow: ellipsis;
|
184 |
}
|
fonts/icons.eot
CHANGED
Binary file
|
fonts/icons.svg
CHANGED
@@ -1,13 +1,15 @@
|
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
-
<metadata>
|
5 |
<defs>
|
6 |
-
<font id="icons" horiz-adv-x="
|
7 |
-
<font-face
|
8 |
-
<missing-glyph horiz-adv-x="
|
9 |
-
<glyph
|
10 |
-
<glyph
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
1 |
<?xml version="1.0" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3 |
<svg xmlns="http://www.w3.org/2000/svg">
|
4 |
+
<metadata>Generated by IcoMoon</metadata>
|
5 |
<defs>
|
6 |
+
<font id="icons" horiz-adv-x="1024">
|
7 |
+
<font-face units-per-em="1024" ascent="960" descent="-64" />
|
8 |
+
<missing-glyph horiz-adv-x="1024" />
|
9 |
+
<glyph unicode=" " d="" horiz-adv-x="512" />
|
10 |
+
<glyph unicode="" d="M717.66 962.56h-594.78v-1024h778.24v844.8l-183.46 179.2zM839.68 0h-655.36v901.12h501.76v-153.6h153.6v-747.52zM512 563.2v-85.125l115.845 115.845-115.845 115.845v-85.125c-129.874 0-235.52-105.656-235.52-235.52 0-54.364 18.555-104.428 49.613-144.343l44.012 43.848c-20.193 28.436-32.184 63.058-32.184 100.495 0 95.99 78.090 174.080 174.080 174.080zM686.080 389.12c0-95.99-78.090-174.080-174.080-174.080v85.125l-115.845-115.845 115.845-115.845v85.125c129.874 0 235.52 105.646 235.52 235.52 0 54.272-18.504 104.274-49.449 144.138l-44.063-43.796c20.122-28.396 32.072-62.976 32.072-100.342z" />
|
11 |
+
<glyph unicode="" d="M717.66 962.56h-594.78v-1024h778.24v844.8l-183.46 179.2zM839.68 0h-655.36v901.12h501.76v-153.6h153.6v-747.52zM286.72 512h450.56v61.44h-450.56v-61.44zM286.72 348.16h450.56v61.44h-450.56v-61.44zM286.72 184.32h450.56v61.44h-450.56v-61.44z" />
|
12 |
+
<glyph unicode="" d="M717.66 962.56h-594.78v-1024h778.24v844.8l-183.46 179.2zM839.68 0h-655.36v901.12h501.76v-153.6h153.6v-747.52zM522.24 459.397v168.468c30.72-9.318 52.5-24.371 67.553-53.053l55.839 32.256c-25.815 48.036-61.952 78.152-123.392 83.169v67.523h-30.72v-67.523c-71.68-5.734-129.997-70.257-129.997-141.23 0-70.257 47.084-102.513 103.711-131.195l26.286-12.892v-215.060c-61.44 7.885-91.29 40.141-103.475 101.079l-64.031-13.619c12.902-82.442 85.586-149.115 167.506-150.548v-65.331h30.72v65.331c81.92 10.752 139.786 90.327 139.786 167.752 0 88.177-68.106 133.335-139.786 164.874zM491.52 476.6c-40.96 14.336-66.673 35.123-66.673 77.425 0 37.99 25.713 68.096 66.673 73.83v-151.255zM522.24 194.161v194.273c40.96-20.787 75.274-48.026 75.274-96.778 0-45.885-24.074-87.47-75.274-97.495z" />
|
13 |
+
<glyph unicode="" d="M717.66 962.56h-594.78v-1024h778.24v844.8l-183.46 179.2zM839.68 0h-655.36v901.12h501.76v-153.6h153.6v-747.52z" />
|
14 |
+
<glyph unicode="" d="M122.88 962.56v-1026.478l143.36 143.36 112.64-112.64 112.64 112.64 112.64-112.64 112.64 112.64 143.36-143.36v1026.478h-737.28zM798.72 84.398l-81.92 81.92-112.64-112.64-112.64 112.64-112.64-112.64-112.64 112.64-81.92-81.92v816.722h614.4v-816.722zM286.72 757.76h409.6v-61.44h-409.6v61.44zM286.72 593.92h409.6v-61.44h-409.6v61.44z" />
|
15 |
+
</font></defs></svg>
|
fonts/icons.ttf
CHANGED
Binary file
|
fonts/icons.woff
CHANGED
Binary file
|
includes/class-wcdn-print.php
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Print class
|
5 |
*/
|
@@ -7,15 +14,14 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Print {
|
9 |
|
10 |
-
public $
|
11 |
-
public $
|
12 |
-
|
13 |
-
public $
|
14 |
-
|
|
|
15 |
public $api_endpoints;
|
16 |
public $query_vars;
|
17 |
-
public $template_types;
|
18 |
-
public $template_type;
|
19 |
|
20 |
public $order_ids;
|
21 |
public $order_email;
|
@@ -25,23 +31,88 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
25 |
* Constructor
|
26 |
*/
|
27 |
public function __construct() {
|
28 |
-
//
|
29 |
-
|
30 |
-
'
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
);
|
39 |
-
|
|
|
40 |
$this->query_vars = array(
|
41 |
'print-order-type',
|
42 |
'print-order-email'
|
43 |
);
|
44 |
-
|
45 |
// Load the hooks
|
46 |
add_action( 'init', array( $this, 'load_hooks' ) );
|
47 |
add_filter( 'query_vars', array( $this, 'add_query_vars' ) );
|
@@ -49,17 +120,11 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
49 |
add_action( 'template_redirect', array( $this, 'template_redirect_theme' ) );
|
50 |
add_action( 'wp_ajax_print_order', array( $this, 'template_redirect_admin' ) );
|
51 |
}
|
52 |
-
|
53 |
/**
|
54 |
* Load the init hooks
|
55 |
*/
|
56 |
public function load_hooks() {
|
57 |
-
// Define default variables
|
58 |
-
$this->template_directory_name = 'print-order';
|
59 |
-
$this->template_path_theme = WC_TEMPLATE_PATH . $this->template_directory_name . '/';
|
60 |
-
$this->template_path_plugin = WooCommerce_Delivery_Notes::$plugin_path . 'templates/' . $this->template_directory_name . '/';
|
61 |
-
$this->template_url_plugin = WooCommerce_Delivery_Notes::$plugin_url . 'templates/' . $this->template_directory_name . '/';
|
62 |
-
|
63 |
// Add the endpoints
|
64 |
$this->add_endpoints();
|
65 |
}
|
@@ -76,8 +141,8 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
76 |
|
77 |
// Flush the rules when the transient is set.
|
78 |
// This is important to make the endpoint work.
|
79 |
-
if( get_transient(
|
80 |
-
delete_transient(
|
81 |
flush_rewrite_rules();
|
82 |
}
|
83 |
}
|
@@ -105,7 +170,53 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
105 |
}
|
106 |
}
|
107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
|
|
|
|
|
|
|
109 |
/**
|
110 |
* Template handling in the front-end
|
111 |
*/
|
@@ -125,7 +236,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
125 |
*/
|
126 |
public function template_redirect_admin() {
|
127 |
// Let the backend only access the page
|
128 |
-
if( is_admin() && !empty( $_REQUEST['print-order'] ) && !empty( $_REQUEST['action'] ) ) {
|
129 |
$type = !empty( $_REQUEST['print-order-type'] ) ? $_REQUEST['print-order-type'] : null;
|
130 |
$email = !empty( $_REQUEST['print-order-email'] ) ? $_REQUEST['print-order-email'] : null;
|
131 |
$this->generate_template( $_GET['print-order'], $type, $email );
|
@@ -145,14 +256,15 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
145 |
$this->order_ids = array_filter( explode('-', $order_ids ) );
|
146 |
}
|
147 |
|
148 |
-
//
|
149 |
-
|
150 |
-
$
|
151 |
-
|
152 |
-
|
|
|
153 |
}
|
154 |
|
155 |
-
//
|
156 |
if( empty( $order_email ) ) {
|
157 |
$this->order_email = null;
|
158 |
} else {
|
@@ -161,33 +273,57 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
161 |
|
162 |
// Create the orders and check permissions
|
163 |
$populated = $this->populate_orders();
|
164 |
-
|
165 |
// Only continue if the orders are populated
|
166 |
if( !$populated ) {
|
167 |
die();
|
168 |
}
|
169 |
-
|
170 |
// Load the print template html
|
171 |
-
|
|
|
172 |
exit;
|
173 |
}
|
174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
/**
|
176 |
* Get print page url
|
177 |
*/
|
178 |
-
public function get_print_page_url( $order_ids, $template_type = 'order', $order_email = null ) {
|
179 |
// Explode the ids when needed
|
180 |
if( !is_array( $order_ids ) ) {
|
181 |
$order_ids = array_filter( explode( '-', $order_ids ) );
|
182 |
}
|
183 |
-
|
184 |
-
//
|
185 |
$args = array();
|
186 |
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
|
|
189 |
}
|
190 |
|
|
|
191 |
if( !empty( $order_email ) ) {
|
192 |
$args = wp_parse_args( array( 'print-order-email' => $order_email ), $args );
|
193 |
}
|
@@ -198,7 +334,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
198 |
// Create another url depending on where the user prints. This
|
199 |
// prevents some issues with ssl when the my-account page is
|
200 |
// secured with ssl but the admin isn't.
|
201 |
-
if( is_admin() ) {
|
202 |
// For the admin we use the ajax.php for better security
|
203 |
$args = wp_parse_args( array( 'action' => 'print_order' ), $args );
|
204 |
$base_url = admin_url( 'admin-ajax.php' );
|
@@ -206,11 +342,11 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
206 |
|
207 |
// Add the order ids and create the url
|
208 |
$url = add_query_arg( $endpoint, $order_ids_slug, $base_url );
|
209 |
-
} else {
|
210 |
// For the theme
|
211 |
-
$base_url =
|
212 |
$endpoint = $this->api_endpoints['print-order'];
|
213 |
-
|
214 |
// Add the order ids and create the url
|
215 |
if( get_option( 'permalink_structure' ) ) {
|
216 |
$url = trailingslashit( trailingslashit( $base_url ) . $endpoint . '/' . $order_ids_slug );
|
@@ -222,29 +358,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
222 |
// Add all other args
|
223 |
$url = add_query_arg( $args, $url );
|
224 |
|
225 |
-
return $url;
|
226 |
-
}
|
227 |
-
|
228 |
-
/**
|
229 |
-
* Get the template url for a file. locate by file existence
|
230 |
-
* and then return the corresponding url.
|
231 |
-
*/
|
232 |
-
public function get_template_url( $name ) {
|
233 |
-
$child_theme_path = get_stylesheet_directory() . '/' . $this->template_path_theme;
|
234 |
-
$child_theme_uri = get_stylesheet_directory_uri() . '/' . $this->template_path_theme;
|
235 |
-
$theme_path = get_template_directory() . '/' . $this->template_path_theme;
|
236 |
-
$theme_uri = get_template_directory_uri() . '/' . $this->template_path_theme;
|
237 |
-
|
238 |
-
// buld the url depenind on where the file is
|
239 |
-
if( file_exists( $child_theme_path . $name ) ) {
|
240 |
-
$uri = $child_theme_uri . $name;
|
241 |
-
} elseif( file_exists( $theme_path . $name ) ) {
|
242 |
-
$uri = $theme_uri . $name;
|
243 |
-
} else {
|
244 |
-
$uri = $this->template_url_plugin . $name;
|
245 |
-
}
|
246 |
-
|
247 |
-
return $uri;
|
248 |
}
|
249 |
|
250 |
/**
|
@@ -257,7 +371,7 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
257 |
$args = array(
|
258 |
'posts_per_page' => -1,
|
259 |
'post_type' => 'shop_order',
|
260 |
-
'post_status' => '
|
261 |
'post__in' => $this->order_ids,
|
262 |
'orderby' => 'post__in'
|
263 |
);
|
@@ -306,26 +420,39 @@ if ( ! class_exists( 'WooCommerce_Delivery_Notes_Print' ) ) {
|
|
306 |
* Get the order invoice number
|
307 |
*/
|
308 |
public function get_order_invoice_number( $order_id ) {
|
309 |
-
$
|
310 |
-
$
|
311 |
-
$
|
312 |
-
$invoice_suffix = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_suffix' );
|
313 |
|
314 |
// Add the invoice number to the order when it doesn't yet exist
|
315 |
-
$meta_key = '
|
316 |
-
$meta_added = add_post_meta( $order_id, $meta_key, $invoice_prefix .
|
317 |
-
|
318 |
// Update the total count
|
319 |
if( $meta_added ) {
|
320 |
-
update_option(
|
321 |
}
|
322 |
|
323 |
// Get the invoice number
|
324 |
return apply_filters( 'wcdn_order_invoice_number', get_post_meta( $order_id, $meta_key, true ) );
|
325 |
}
|
326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
}
|
328 |
|
329 |
}
|
330 |
|
331 |
-
?>
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Print class
|
12 |
*/
|
14 |
|
15 |
class WooCommerce_Delivery_Notes_Print {
|
16 |
|
17 |
+
public static $template_registrations;
|
18 |
+
public static $template_styles;
|
19 |
+
|
20 |
+
public $template_locations;
|
21 |
+
public $template;
|
22 |
+
|
23 |
public $api_endpoints;
|
24 |
public $query_vars;
|
|
|
|
|
25 |
|
26 |
public $order_ids;
|
27 |
public $order_email;
|
31 |
* Constructor
|
32 |
*/
|
33 |
public function __construct() {
|
34 |
+
// Define the templates
|
35 |
+
self::$template_registrations = apply_filters( 'wcdn_template_registration', array(
|
36 |
+
apply_filters( 'wcdn_template_registration_invoice', array(
|
37 |
+
'type' => 'invoice',
|
38 |
+
'labels' => array(
|
39 |
+
'name' => __( 'Invoice', 'woocommerce-delivery-notes' ),
|
40 |
+
'name_plural' => __( 'Invoices', 'woocommerce-delivery-notes' ),
|
41 |
+
'print' => __( 'Print Invoice', 'woocommerce-delivery-notes' ),
|
42 |
+
'print_plural' => __( 'Print Invoices', 'woocommerce-delivery-notes' ),
|
43 |
+
'message' => __( 'Invoice created.', 'woocommerce-delivery-notes' ),
|
44 |
+
'message_plural' => __( 'Invoices created.', 'woocommerce-delivery-notes' ),
|
45 |
+
'setting' => __( 'Show "Print Invoice" button', 'woocommerce-delivery-notes' )
|
46 |
+
)
|
47 |
+
) ),
|
48 |
+
apply_filters( 'wcdn_template_registration_delivery_note', array(
|
49 |
+
'type' => 'delivery-note',
|
50 |
+
'labels' => array(
|
51 |
+
'name' => __( 'Delivery Note', 'woocommerce-delivery-notes' ),
|
52 |
+
'name_plural' => __( 'Delivery Notes', 'woocommerce-delivery-notes' ),
|
53 |
+
'print' => __( 'Print Delivery Note', 'woocommerce-delivery-notes' ),
|
54 |
+
'print_plural' => __( 'Print Delivery Notes', 'woocommerce-delivery-notes' ),
|
55 |
+
'message' => __( 'Delivery Note created.', 'woocommerce-delivery-notes' ),
|
56 |
+
'message_plural' => __( 'Delivery Notes created.', 'woocommerce-delivery-notes' ),
|
57 |
+
'setting' => __( 'Show "Print Delivery Note" button', 'woocommerce-delivery-notes' )
|
58 |
+
)
|
59 |
+
) ),
|
60 |
+
apply_filters( 'wcdn_template_registration_receipt', array(
|
61 |
+
'type' => 'receipt',
|
62 |
+
'labels' => array(
|
63 |
+
'name' => __( 'Receipt', 'woocommerce-delivery-notes' ),
|
64 |
+
'name_plural' => __( 'Receipts', 'woocommerce-delivery-notes' ),
|
65 |
+
'print' => __( 'Print Receipt', 'woocommerce-delivery-notes' ),
|
66 |
+
'print_plural' => __( 'Print Receipts', 'woocommerce-delivery-notes' ),
|
67 |
+
'message' => __( 'Receipt created.', 'woocommerce-delivery-notes' ),
|
68 |
+
'message_plural' => __( 'Receipts created.', 'woocommerce-delivery-notes' ),
|
69 |
+
'setting' => __( 'Show "Print Receipt" button', 'woocommerce-delivery-notes' )
|
70 |
+
)
|
71 |
+
) )
|
72 |
+
) );
|
73 |
|
74 |
+
// Add the default template as first item after filter hooks passed
|
75 |
+
array_unshift( self::$template_registrations, array(
|
76 |
+
'type' => 'order',
|
77 |
+
'labels' => array(
|
78 |
+
'name' => __( 'Order', 'woocommerce-delivery-notes' ),
|
79 |
+
'name_plural' => __( 'Orders', 'woocommerce-delivery-notes' ),
|
80 |
+
'print' => __( 'Print Order', 'woocommerce-delivery-notes' ),
|
81 |
+
'print_plural' => __( 'Print Orders', 'woocommerce-delivery-notes' ),
|
82 |
+
'message' => null,
|
83 |
+
'message_plural' => null,
|
84 |
+
'setting' => null
|
85 |
+
)
|
86 |
+
) );
|
87 |
|
88 |
+
// Template styles
|
89 |
+
self::$template_styles = apply_filters( 'wcdn_template_styles', array() );
|
90 |
+
|
91 |
+
// Add the default style as first item after filter hooks passed
|
92 |
+
array_unshift( self::$template_styles, array(
|
93 |
+
'name' => __( 'Default', 'woocommerce-delivery-notes' ),
|
94 |
+
'type' => 'default',
|
95 |
+
'path' => WooCommerce_Delivery_Notes::$plugin_path . 'templates/print-order/',
|
96 |
+
'url' => WooCommerce_Delivery_Notes::$plugin_url . 'templates/print-order/'
|
97 |
+
) );
|
98 |
+
|
99 |
+
// Default template
|
100 |
+
$this->template = self::$template_registrations[0];
|
101 |
+
|
102 |
+
// Build all template locations
|
103 |
+
$this->template_locations = $this->build_template_locations();
|
104 |
+
|
105 |
+
// Add the endpoint for the frontend
|
106 |
+
$this->api_endpoints = array(
|
107 |
+
'print-order' => get_option( 'wcdn_print_order_page_endpoint', 'print-order' )
|
108 |
);
|
109 |
+
|
110 |
+
// Insert the query vars
|
111 |
$this->query_vars = array(
|
112 |
'print-order-type',
|
113 |
'print-order-email'
|
114 |
);
|
115 |
+
|
116 |
// Load the hooks
|
117 |
add_action( 'init', array( $this, 'load_hooks' ) );
|
118 |
add_filter( 'query_vars', array( $this, 'add_query_vars' ) );
|
120 |
add_action( 'template_redirect', array( $this, 'template_redirect_theme' ) );
|
121 |
add_action( 'wp_ajax_print_order', array( $this, 'template_redirect_admin' ) );
|
122 |
}
|
123 |
+
|
124 |
/**
|
125 |
* Load the init hooks
|
126 |
*/
|
127 |
public function load_hooks() {
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
// Add the endpoints
|
129 |
$this->add_endpoints();
|
130 |
}
|
141 |
|
142 |
// Flush the rules when the transient is set.
|
143 |
// This is important to make the endpoint work.
|
144 |
+
if( get_transient( 'wcdn_flush_rewrite_rules' ) == true ) {
|
145 |
+
delete_transient( 'wcdn_flush_rewrite_rules' );
|
146 |
flush_rewrite_rules();
|
147 |
}
|
148 |
}
|
170 |
}
|
171 |
}
|
172 |
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Build the template locations
|
176 |
+
*/
|
177 |
+
public function build_template_locations() {
|
178 |
+
$wc_template_directory = WC_TEMPLATE_PATH . 'print-order/';
|
179 |
+
|
180 |
+
// Get the paths for custom styles
|
181 |
+
$settings_type = get_option( 'wcdn_template_style' );
|
182 |
+
$settings_path = null;
|
183 |
+
$settings_url = null;
|
184 |
+
if( isset( $settings_type ) && $settings_type !== 'default' ) {
|
185 |
+
foreach( self::$template_styles as $template_style ) {
|
186 |
+
if( $settings_type === $template_style['type'] ) {
|
187 |
+
$settings_path = $template_style['path'];
|
188 |
+
$settings_url = $template_style['url'];
|
189 |
+
break;
|
190 |
+
}
|
191 |
+
}
|
192 |
+
}
|
193 |
+
|
194 |
+
// Build the locations
|
195 |
+
$locations = array(
|
196 |
+
'child_theme' => array(
|
197 |
+
'path' => trailingslashit( get_stylesheet_directory() ) . $wc_template_directory,
|
198 |
+
'url' => trailingslashit( get_stylesheet_directory_uri() ) . $wc_template_directory
|
199 |
+
),
|
200 |
+
|
201 |
+
'theme' => array(
|
202 |
+
'path' => trailingslashit( get_template_directory() ) . $wc_template_directory,
|
203 |
+
'url' => trailingslashit( get_template_directory_uri() ) . $wc_template_directory
|
204 |
+
),
|
205 |
+
|
206 |
+
'settings' => array(
|
207 |
+
'path' => $settings_path,
|
208 |
+
'url' => $settings_url
|
209 |
+
),
|
210 |
+
|
211 |
+
'plugin' => array(
|
212 |
+
'path' => self::$template_styles[0]['path'],
|
213 |
+
'url' => self::$template_styles[0]['url']
|
214 |
+
)
|
215 |
+
);
|
216 |
|
217 |
+
return $locations;
|
218 |
+
}
|
219 |
+
|
220 |
/**
|
221 |
* Template handling in the front-end
|
222 |
*/
|
236 |
*/
|
237 |
public function template_redirect_admin() {
|
238 |
// Let the backend only access the page
|
239 |
+
if( is_admin() && current_user_can( 'edit_shop_orders' ) && !empty( $_REQUEST['print-order'] ) && !empty( $_REQUEST['action'] ) ) {
|
240 |
$type = !empty( $_REQUEST['print-order-type'] ) ? $_REQUEST['print-order-type'] : null;
|
241 |
$email = !empty( $_REQUEST['print-order-email'] ) ? $_REQUEST['print-order-email'] : null;
|
242 |
$this->generate_template( $_GET['print-order'], $type, $email );
|
256 |
$this->order_ids = array_filter( explode('-', $order_ids ) );
|
257 |
}
|
258 |
|
259 |
+
// Set the current template
|
260 |
+
foreach( self::$template_registrations as $template_registration ) {
|
261 |
+
if( $template_type == $template_registration['type'] ) {
|
262 |
+
$this->template = $template_registration;
|
263 |
+
break;
|
264 |
+
}
|
265 |
}
|
266 |
|
267 |
+
// Set the email
|
268 |
if( empty( $order_email ) ) {
|
269 |
$this->order_email = null;
|
270 |
} else {
|
273 |
|
274 |
// Create the orders and check permissions
|
275 |
$populated = $this->populate_orders();
|
276 |
+
|
277 |
// Only continue if the orders are populated
|
278 |
if( !$populated ) {
|
279 |
die();
|
280 |
}
|
281 |
+
|
282 |
// Load the print template html
|
283 |
+
$location = $this->get_template_file_location( 'print-order.php' );
|
284 |
+
wc_get_template( 'print-order.php', null, $location, $location );
|
285 |
exit;
|
286 |
}
|
287 |
+
|
288 |
+
/**
|
289 |
+
* Find the location of a template file
|
290 |
+
*/
|
291 |
+
public function get_template_file_location( $name, $url_mode = false ) {
|
292 |
+
$found = '';
|
293 |
+
foreach( $this->template_locations as $template_location ) {
|
294 |
+
if( isset( $template_location['path'] ) && file_exists( trailingslashit( $template_location['path'] ) . $name ) ) {
|
295 |
+
if( $url_mode ) {
|
296 |
+
$found = $template_location['url'];
|
297 |
+
} else {
|
298 |
+
$found = $template_location['path'];
|
299 |
+
}
|
300 |
+
break;
|
301 |
+
}
|
302 |
+
}
|
303 |
+
return $found;
|
304 |
+
}
|
305 |
+
|
306 |
/**
|
307 |
* Get print page url
|
308 |
*/
|
309 |
+
public function get_print_page_url( $order_ids, $template_type = 'order', $order_email = null, $permalink = false ) {
|
310 |
// Explode the ids when needed
|
311 |
if( !is_array( $order_ids ) ) {
|
312 |
$order_ids = array_filter( explode( '-', $order_ids ) );
|
313 |
}
|
314 |
+
|
315 |
+
// Build the args
|
316 |
$args = array();
|
317 |
|
318 |
+
// Set the template type arg
|
319 |
+
foreach( self::$template_registrations as $template_registration ) {
|
320 |
+
if( $template_type == $template_registration['type'] && $template_type != 'order' ) {
|
321 |
+
$args = wp_parse_args( array( 'print-order-type' => $template_type ), $args );
|
322 |
+
break;
|
323 |
+
}
|
324 |
}
|
325 |
|
326 |
+
// Set the email arg
|
327 |
if( !empty( $order_email ) ) {
|
328 |
$args = wp_parse_args( array( 'print-order-email' => $order_email ), $args );
|
329 |
}
|
334 |
// Create another url depending on where the user prints. This
|
335 |
// prevents some issues with ssl when the my-account page is
|
336 |
// secured with ssl but the admin isn't.
|
337 |
+
if( is_admin() && current_user_can( 'edit_shop_orders' ) && $permalink == false ) {
|
338 |
// For the admin we use the ajax.php for better security
|
339 |
$args = wp_parse_args( array( 'action' => 'print_order' ), $args );
|
340 |
$base_url = admin_url( 'admin-ajax.php' );
|
342 |
|
343 |
// Add the order ids and create the url
|
344 |
$url = add_query_arg( $endpoint, $order_ids_slug, $base_url );
|
345 |
+
} else {
|
346 |
// For the theme
|
347 |
+
$base_url = wc_get_page_permalink( 'myaccount' );
|
348 |
$endpoint = $this->api_endpoints['print-order'];
|
349 |
+
|
350 |
// Add the order ids and create the url
|
351 |
if( get_option( 'permalink_structure' ) ) {
|
352 |
$url = trailingslashit( trailingslashit( $base_url ) . $endpoint . '/' . $order_ids_slug );
|
358 |
// Add all other args
|
359 |
$url = add_query_arg( $args, $url );
|
360 |
|
361 |
+
return esc_url( $url );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
}
|
363 |
|
364 |
/**
|
371 |
$args = array(
|
372 |
'posts_per_page' => -1,
|
373 |
'post_type' => 'shop_order',
|
374 |
+
'post_status' => 'any',
|
375 |
'post__in' => $this->order_ids,
|
376 |
'orderby' => 'post__in'
|
377 |
);
|
420 |
* Get the order invoice number
|
421 |
*/
|
422 |
public function get_order_invoice_number( $order_id ) {
|
423 |
+
$invoice_count = intval( get_option( 'wcdn_invoice_number_count', 1 ) );
|
424 |
+
$invoice_prefix = get_option( 'wcdn_invoice_number_prefix' );
|
425 |
+
$invoice_suffix = get_option( 'wcdn_invoice_number_suffix' );
|
|
|
426 |
|
427 |
// Add the invoice number to the order when it doesn't yet exist
|
428 |
+
$meta_key = '_wcdn_invoice_number';
|
429 |
+
$meta_added = add_post_meta( $order_id, $meta_key, $invoice_prefix . $invoice_count . $invoice_suffix, true );
|
430 |
+
|
431 |
// Update the total count
|
432 |
if( $meta_added ) {
|
433 |
+
update_option( 'wcdn_invoice_number_count', $invoice_count + 1 );
|
434 |
}
|
435 |
|
436 |
// Get the invoice number
|
437 |
return apply_filters( 'wcdn_order_invoice_number', get_post_meta( $order_id, $meta_key, true ) );
|
438 |
}
|
439 |
|
440 |
+
/**
|
441 |
+
* Get the order invoice date
|
442 |
+
*/
|
443 |
+
public function get_order_invoice_date( $order_id ) {
|
444 |
+
// Add the invoice date to the order when it doesn't yet exist
|
445 |
+
$meta_key = '_wcdn_invoice_date';
|
446 |
+
$meta_added = add_post_meta( $order_id, $meta_key, time(), true );
|
447 |
+
|
448 |
+
// Get the invoice date
|
449 |
+
$meta_date = get_post_meta( $order_id, $meta_key, true );
|
450 |
+
$formatted_date = date_i18n( get_option('date_format'), $meta_date );
|
451 |
+
return apply_filters( 'wcdn_order_invoice_date', $formatted_date, $meta_date );
|
452 |
+
}
|
453 |
+
|
454 |
}
|
455 |
|
456 |
}
|
457 |
|
458 |
+
?>
|
includes/class-wcdn-settings.php
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Settings class
|
5 |
*/
|
@@ -7,421 +14,474 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Settings' ) ) {
|
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Settings {
|
9 |
|
10 |
-
public $
|
11 |
-
public $hidden_submit;
|
12 |
|
13 |
/**
|
14 |
* Constructor
|
15 |
*/
|
16 |
-
public function __construct() {
|
17 |
// Define default variables
|
18 |
-
$this->
|
19 |
-
|
20 |
-
|
21 |
// Load the hooks
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
/**
|
26 |
-
*
|
27 |
*/
|
28 |
-
public function
|
29 |
-
|
30 |
-
|
31 |
-
add_action( 'woocommerce_update_options_' . $this->tab_name, array( $this, 'save_settings_page' ) );
|
32 |
-
add_action( 'current_screen', array( $this, 'load_screen_hooks' ) );
|
33 |
-
add_action( 'wp_ajax_load_thumbnail', array( $this, 'load_thumbnail_ajax' ) );
|
34 |
}
|
35 |
|
36 |
/**
|
37 |
-
*
|
38 |
*/
|
39 |
-
public function
|
40 |
-
$
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
|
48 |
/**
|
49 |
-
*
|
50 |
*/
|
51 |
-
public function
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
-
*
|
57 |
*/
|
58 |
-
public function
|
59 |
-
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
-
|
64 |
/**
|
65 |
-
*
|
66 |
*/
|
67 |
-
public function
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
}
|
|
|
|
|
73 |
}
|
74 |
|
75 |
/**
|
76 |
-
*
|
77 |
*/
|
78 |
-
public function
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
-
}
|
85 |
|
|
|
|
|
|
|
86 |
/**
|
87 |
-
*
|
88 |
*/
|
89 |
-
public function
|
90 |
-
$
|
91 |
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}
|
94 |
-
|
95 |
/**
|
96 |
-
* Load
|
97 |
*/
|
98 |
-
public function
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
103 |
die();
|
104 |
}
|
105 |
|
106 |
-
// create the
|
107 |
-
$this->
|
108 |
|
109 |
exit;
|
110 |
}
|
111 |
|
112 |
/**
|
113 |
-
* Create
|
114 |
*/
|
115 |
-
public function
|
116 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'medium', false );
|
|
|
|
|
|
|
|
|
117 |
|
118 |
?>
|
119 |
-
<img src="<?php echo $attachment_src[0]; ?>" alt="" />
|
120 |
<?php
|
121 |
}
|
122 |
|
123 |
/**
|
124 |
-
*
|
125 |
*/
|
126 |
-
public function
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
// show template preview links when an order is available
|
132 |
-
$args = array(
|
133 |
-
'post_type' => 'shop_order',
|
134 |
-
'posts_per_page' => 1
|
135 |
-
);
|
136 |
-
$query = new WP_Query( $args );
|
137 |
-
|
138 |
-
if($query->have_posts()) : ?>
|
139 |
-
<?php
|
140 |
-
$results = $query->get_posts();
|
141 |
-
$test_id = $results[0]->ID;
|
142 |
-
$invoice_url = wcdn_get_print_link( $test_id, 'invoice' );
|
143 |
-
$note_url = wcdn_get_print_link( $test_id, 'delivery-note' );
|
144 |
-
?>
|
145 |
-
<input type="hidden" id="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>show_print_preview" />
|
146 |
-
<span class="description">
|
147 |
-
<?php printf( __( 'You can preview the <a href="%1$s" target="%3$s" class="%4$s">invoice template</a> or <a href="%2$s" target="%3$s" class="%4$s">delivery note template</a>.', 'woocommerce-delivery-notes' ), $invoice_url, $note_url, '_blank', '' ); ?>
|
148 |
-
<?php _e( 'With the FAQ in the readme file you can learn how to customize the template.', 'woocommerce-delivery-notes' ); ?>
|
149 |
-
</span>
|
150 |
-
<?php endif; ?>
|
151 |
-
</p>
|
152 |
-
<table class="form-table">
|
153 |
-
<tbody>
|
154 |
-
<tr class="hide-if-no-js">
|
155 |
-
<?php
|
156 |
-
$attachment_id = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'company_logo_image_id' );
|
157 |
-
?>
|
158 |
-
<th>
|
159 |
-
<label><?php _e( 'Company/Shop Logo', 'woocommerce-delivery-notes' ); ?></label>
|
160 |
-
</th>
|
161 |
-
<td>
|
162 |
-
<input id="company-logo-image-id" type="hidden" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>company_logo_image_id" class="regular-text" value="<?php echo $attachment_id ?>" />
|
163 |
-
<div id="company-logo-placeholder"><?php if( !empty( $attachment_id ) ) : ?><?php $this->create_thumbnail( $attachment_id ); ?><?php endif; ?></div>
|
164 |
-
<div id="company-logo-buttons">
|
165 |
-
<a href="#" id="company-logo-remove-button" class="button" <?php if( empty( $attachment_id ) ) : ?>style="display: none;"<?php endif; ?>><?php _e( 'Remove Logo', 'woocommerce-delivery-notes' ); ?></a>
|
166 |
-
<a href="#" id="company-logo-add-button" class="button" <?php if( !empty( $attachment_id ) ) : ?>style="display: none;"<?php endif; ?> data-uploader-title="<?php echo esc_attr( __( 'Set Logo', 'woocommerce-delivery-notes' ) ); ?>" data-uploader-button-title="<?php echo esc_attr( __( 'Set Logo', 'woocommerce-delivery-notes' ) ); ?>"><?php _e( 'Set Logo', 'woocommerce-delivery-notes' ); ?></a>
|
167 |
-
<span id="company-logo-loader" class="spinner"></span>
|
168 |
-
</div>
|
169 |
-
<span class="description">
|
170 |
-
<?php _e( 'A company/shop logo representing your business.', 'woocommerce-delivery-notes' ); ?>
|
171 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
172 |
-
<?php _e( 'When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch.', 'woocommerce-delivery-notes' ); ?>
|
173 |
-
</span>
|
174 |
-
</td>
|
175 |
-
</tr>
|
176 |
-
<tr>
|
177 |
-
<th>
|
178 |
-
<label><?php _e( 'Company/Shop Name', 'woocommerce-delivery-notes' ); ?></label>
|
179 |
-
</th>
|
180 |
-
<td>
|
181 |
-
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>custom_company_name" class="large-text" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'custom_company_name' ) ) ); ?>" />
|
182 |
-
<span class="description">
|
183 |
-
<?php _e( 'Your company/shop name for the Delivery Note.', 'woocommerce-delivery-notes' ); ?>
|
184 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
185 |
-
<?php _e( 'Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a Logo is set.', 'woocommerce-delivery-notes' ); ?>
|
186 |
-
</span>
|
187 |
-
</td>
|
188 |
-
</tr>
|
189 |
-
<tr>
|
190 |
-
<th>
|
191 |
-
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>company_address"><?php _e( 'Company/Shop Address', 'woocommerce-delivery-notes' ); ?></label>
|
192 |
-
</th>
|
193 |
-
<td>
|
194 |
-
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>company_address" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'company_address' ) ) ); ?></textarea>
|
195 |
-
<span class="description">
|
196 |
-
<?php _e( 'The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/shop name.', 'woocommerce-delivery-notes' ); ?>
|
197 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
198 |
-
<?php _e('Leave blank to not print an address.', 'woocommerce-delivery-notes' ); ?>
|
199 |
-
</span>
|
200 |
-
</td>
|
201 |
-
</tr>
|
202 |
-
<tr>
|
203 |
-
<th>
|
204 |
-
<label><?php _e( 'Complimentary Close', 'woocommerce-delivery-notes' ); ?></label>
|
205 |
-
</th>
|
206 |
-
<td>
|
207 |
-
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>personal_notes" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'personal_notes' ) ) ); ?></textarea>
|
208 |
-
<span class="description">
|
209 |
-
<?php _e( 'Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.).', 'woocommerce-delivery-notes' ); ?>
|
210 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
211 |
-
<?php _e('Leave blank to not print any personal notes.', 'woocommerce-delivery-notes' ); ?>
|
212 |
-
</span>
|
213 |
-
</td>
|
214 |
-
</tr>
|
215 |
-
<tr>
|
216 |
-
<th>
|
217 |
-
<label><?php _e( 'Returns Policy, Conditions, etc', 'woocommerce-delivery-notes' ); ?></label>
|
218 |
-
</th>
|
219 |
-
<td>
|
220 |
-
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>policies_conditions" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'policies_conditions' ) ) ); ?></textarea>
|
221 |
-
<span class="description">
|
222 |
-
<?php _e( 'Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations.', 'woocommerce-delivery-notes' ); ?>
|
223 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
224 |
-
<?php _e('Leave blank to not print any policies or conditions.', 'woocommerce-delivery-notes' ); ?>
|
225 |
-
</span>
|
226 |
-
</td>
|
227 |
-
</tr>
|
228 |
-
<tr>
|
229 |
-
<th>
|
230 |
-
<label for="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>footer_imprint"><?php _e( 'Footer', 'woocommerce-delivery-notes' ); ?></label>
|
231 |
-
</th>
|
232 |
-
<td>
|
233 |
-
<textarea name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>footer_imprint" rows="5" class="large-text"><?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'footer_imprint' ) ) ); ?></textarea>
|
234 |
-
<span class="description">
|
235 |
-
<?php _e( 'Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more branded.', 'woocommerce-delivery-notes' ); ?>
|
236 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
237 |
-
<?php _e('Leave blank to not print a footer.', 'woocommerce-delivery-notes' ); ?>
|
238 |
-
</span>
|
239 |
-
</td>
|
240 |
-
</tr>
|
241 |
-
</tbody>
|
242 |
-
</table>
|
243 |
-
|
244 |
-
<h3><?php _e( 'Front-end Options', 'woocommerce-delivery-notes' ); ?></h3>
|
245 |
-
<table class="form-table">
|
246 |
-
<tbody>
|
247 |
-
<tr>
|
248 |
-
<th>
|
249 |
-
<label><?php _e( 'Print Page Endpoint', 'woocommerce-delivery-notes' ); ?></label>
|
250 |
-
</th>
|
251 |
-
<td>
|
252 |
-
<p>
|
253 |
-
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>print_order_page_endpoint" value="<?php echo get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ); ?>" />
|
254 |
-
</p>
|
255 |
-
<span class="description">
|
256 |
-
<?php _e( 'The endpoint is appended to the accounts page URL to print the order. It should be unique.', 'woocommerce-delivery-notes' ); ?>
|
257 |
-
</span>
|
258 |
-
</td>
|
259 |
-
</tr>
|
260 |
-
<tr>
|
261 |
-
<th>
|
262 |
-
<?php _e( 'Print Buttons', 'woocommerce-delivery-notes' ); ?>
|
263 |
-
</th>
|
264 |
-
<td>
|
265 |
-
<fieldset>
|
266 |
-
<label>
|
267 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>print_button_on_view_order_page" type="hidden" value="" />
|
268 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>print_button_on_view_order_page" type="checkbox" value="1" <?php checked( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'print_button_on_view_order_page' ), 1 ); ?> />
|
269 |
-
<?php _e( 'Show print button on the "View Order" page', 'woocommerce-delivery-notes' ); ?>
|
270 |
-
</label>
|
271 |
-
</fieldset>
|
272 |
-
<fieldset>
|
273 |
-
<label>
|
274 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>print_button_on_my_account_page" type="hidden" value="" />
|
275 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>print_button_on_my_account_page" type="checkbox" value="1" <?php checked( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'print_button_on_my_account_page' ), 1 ); ?> />
|
276 |
-
<?php _e( 'Show print buttons on the "My Account" page', 'woocommerce-delivery-notes' ); ?>
|
277 |
-
</label>
|
278 |
-
</fieldset>
|
279 |
-
</td>
|
280 |
-
</tr>
|
281 |
-
</tbody>
|
282 |
-
</table>
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
<tr>
|
288 |
-
<th>
|
289 |
-
<?php _e( 'Invoice Number', 'woocommerce-delivery-notes' ); ?>
|
290 |
-
</th>
|
291 |
-
<td>
|
292 |
-
<p>
|
293 |
-
<label>
|
294 |
-
<?php $create_invoice_number = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'create_invoice_number' ); ?>
|
295 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>create_invoice_number" type="hidden" value="" />
|
296 |
-
<input name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>create_invoice_number" id="create-invoice-number" type="checkbox" value="1" <?php checked( $create_invoice_number, 1 ); ?> />
|
297 |
-
<?php _e( 'Create invoice numbers', 'woocommerce-delivery-notes' ); ?>
|
298 |
-
</label>
|
299 |
-
</p>
|
300 |
-
</td>
|
301 |
-
</tr>
|
302 |
-
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
303 |
-
<th>
|
304 |
-
<label><?php _e( 'Invoice Number Start', 'woocommerce-delivery-notes' ); ?></label>
|
305 |
-
</th>
|
306 |
-
<td>
|
307 |
-
<p>
|
308 |
-
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_start" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start', 1 ) ) ); ?>" />
|
309 |
-
</p>
|
310 |
-
<span class="description">
|
311 |
-
<?php _e( 'Start the numbering at the specified number.', 'woocommerce-delivery-notes' ); ?>
|
312 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
313 |
-
<?php _e( 'Use only integers.', 'woocommerce-delivery-notes' ); ?>
|
314 |
-
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
315 |
-
</span>
|
316 |
-
</td>
|
317 |
-
</tr>
|
318 |
-
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
319 |
-
<th>
|
320 |
-
<label><?php _e( 'Invoice Number Prefix', 'woocommerce-delivery-notes' ); ?></label>
|
321 |
-
</th>
|
322 |
-
<td>
|
323 |
-
<p>
|
324 |
-
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_prefix" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_prefix' ) ) ); ?>" />
|
325 |
-
</p>
|
326 |
-
<span class="description">
|
327 |
-
<?php _e( 'This text will be prepended to the invoice number.', 'woocommerce-delivery-notes' ); ?>
|
328 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
329 |
-
<?php _e( 'Leave blank to not add a prefix.', 'woocommerce-delivery-notes' ); ?>
|
330 |
-
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
331 |
-
</span>
|
332 |
-
</td>
|
333 |
-
</tr>
|
334 |
-
<tr class="invoice-number-row" <?php if( empty( $create_invoice_number ) ) : ?> style="display: none;"<?php endif; ?>>
|
335 |
-
<th>
|
336 |
-
<label><?php _e( 'Invoice Number Suffix', 'woocommerce-delivery-notes' ); ?></label>
|
337 |
-
</th>
|
338 |
-
<td>
|
339 |
-
<p>
|
340 |
-
<input type="text" name="<?php echo WooCommerce_Delivery_Notes::$plugin_prefix; ?>invoice_number_suffix" value="<?php echo stripslashes( wp_kses_stripslashes( get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_suffix' ) ) ); ?>" />
|
341 |
-
</p>
|
342 |
-
<span class="description">
|
343 |
-
<?php _e( 'This text will be appended to the invoice number.', 'woocommerce-delivery-notes' ); ?>
|
344 |
-
<strong><?php _e( 'Note:', 'woocommerce-delivery-notes' ); ?></strong>
|
345 |
-
<?php _e( 'Leave blank to not add a suffix.', 'woocommerce-delivery-notes' ); ?>
|
346 |
-
<?php _e( 'Already created invoice numbers are not affected by changes.', 'woocommerce-delivery-notes' ); ?>
|
347 |
-
</span>
|
348 |
-
</td>
|
349 |
-
</tr>
|
350 |
-
<tr>
|
351 |
-
<th>
|
352 |
-
<label><?php _e( 'Sequential Order Number', 'woocommerce-delivery-notes' ); ?></label>
|
353 |
-
</th>
|
354 |
-
<td>
|
355 |
-
<?php if( $this->is_woocommerce_sequential_order_numbers_activated() ) : ?>
|
356 |
-
<?php _e( 'Sequential numbering is enabled.', 'woocommerce-delivery-notes' ); ?>
|
357 |
-
<?php else : ?>
|
358 |
-
<?php printf( __( 'Install and activate the free <a href="%s">WooCommerce Sequential Order Numbers</a> Plugin.', 'woocommerce-delivery-notes' ), 'http://wordpress.org/extend/plugins/woocommerce-sequential-order-numbers/' ); ?>
|
359 |
-
<?php endif; ?>
|
360 |
-
</td>
|
361 |
-
</tr>
|
362 |
-
</tbody>
|
363 |
-
</table>
|
364 |
|
365 |
-
|
366 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
}
|
368 |
|
369 |
/**
|
370 |
-
*
|
371 |
-
*/
|
372 |
-
public function
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
}
|
387 |
-
}
|
388 |
-
|
389 |
-
// Sanitize values
|
390 |
-
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'print_order_page_endpoint' ) {
|
391 |
-
$value = sanitize_title( $value );
|
392 |
-
}
|
393 |
-
|
394 |
-
if ( $key == WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_start' ) {
|
395 |
-
if ( !ctype_digit( $value ) ) {
|
396 |
-
$value = 1;
|
397 |
-
}
|
398 |
-
|
399 |
-
// Check if the counter should be reset
|
400 |
-
if( get_option( $key ) != $value ) {
|
401 |
-
update_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'invoice_number_counter', 0 );
|
402 |
-
}
|
403 |
-
|
404 |
-
}
|
405 |
-
|
406 |
-
// Update the value
|
407 |
-
if ( empty( $value ) ) {
|
408 |
-
delete_option( $key );
|
409 |
-
} else {
|
410 |
-
if ( get_option( $key ) && get_option( $key ) != $value ) {
|
411 |
-
update_option( $key, $value );
|
412 |
-
}
|
413 |
-
else {
|
414 |
-
add_option( $key, $value );
|
415 |
-
}
|
416 |
-
}
|
417 |
-
}
|
418 |
}
|
419 |
-
|
420 |
-
// Flush permalink structs with
|
421 |
-
set_transient( WooCommerce_Delivery_Notes::$plugin_prefix . 'flush_rewrite_rules', true );
|
422 |
}
|
|
|
423 |
}
|
424 |
-
|
425 |
}
|
426 |
|
427 |
}
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Settings class
|
12 |
*/
|
14 |
|
15 |
class WooCommerce_Delivery_Notes_Settings {
|
16 |
|
17 |
+
public $id;
|
|
|
18 |
|
19 |
/**
|
20 |
* Constructor
|
21 |
*/
|
22 |
+
public function __construct() {
|
23 |
// Define default variables
|
24 |
+
$this->id = 'wcdn-settings';
|
25 |
+
|
|
|
26 |
// Load the hooks
|
27 |
+
add_filter( 'woocommerce_settings_tabs_array', array( $this, 'add_settings_page' ), 200 );
|
28 |
+
add_action( 'woocommerce_settings_start', array( $this, 'add_assets' ) );
|
29 |
+
add_action( 'woocommerce_settings_' . $this->id, array( $this, 'output' ) );
|
30 |
+
add_action( 'woocommerce_settings_save_' . $this->id, array( $this, 'save' ) );
|
31 |
+
|
32 |
+
add_action( 'woocommerce_admin_field_wcdn_image_select', array( $this, 'output_image_select' ) );
|
33 |
+
add_action( 'wp_ajax_wcdn_settings_load_image', array( $this, 'load_image_ajax' ) );
|
34 |
+
add_filter( 'wcdn_get_settings', array( $this, 'generate_template_type_fields' ), 10, 2 );
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Add the scripts
|
39 |
+
*/
|
40 |
+
public function add_assets() {
|
41 |
+
// Styles
|
42 |
+
wp_enqueue_style( 'woocommerce-delivery-notes-admin', WooCommerce_Delivery_Notes::$plugin_url . 'css/admin.css' );
|
43 |
+
|
44 |
+
// Scripts
|
45 |
+
wp_enqueue_media();
|
46 |
+
wp_enqueue_script( 'woocommerce-delivery-notes-print-link', WooCommerce_Delivery_Notes::$plugin_url . 'js/jquery.print-link.js', array( 'jquery' ) );
|
47 |
+
wp_enqueue_script( 'woocommerce-delivery-notes-admin', WooCommerce_Delivery_Notes::$plugin_url . 'js/admin.js', array( 'jquery', 'custom-header', 'woocommerce-delivery-notes-print-link' ) );
|
48 |
+
|
49 |
+
// Localize the script strings
|
50 |
+
$translation = array( 'resetCounter' => __( 'Do you really want to reset the counter to zero? This process can\'t be undone.', 'woocommerce-delivery-notes' ) );
|
51 |
+
wp_localize_script( 'woocommerce-delivery-notes-admin', 'WCDNText', $translation );
|
52 |
}
|
53 |
|
54 |
/**
|
55 |
+
* Create a new settings tab
|
56 |
*/
|
57 |
+
public function add_settings_page( $settings_tabs ) {
|
58 |
+
$settings_tabs[$this->id] = __( 'Print', 'woocommerce-delivery-notes' );
|
59 |
+
return $settings_tabs;
|
|
|
|
|
|
|
60 |
}
|
61 |
|
62 |
/**
|
63 |
+
* Output the settings fields into the tab
|
64 |
*/
|
65 |
+
public function output() {
|
66 |
+
global $current_section;
|
67 |
+
$settings = $this->get_settings( $current_section );
|
68 |
+
woocommerce_admin_fields( $settings );
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Save the settings
|
73 |
+
*/
|
74 |
+
function save() {
|
75 |
+
global $current_section;
|
76 |
+
set_transient( 'wcdn_flush_rewrite_rules', true );
|
77 |
+
$settings = $this->get_settings( $current_section );
|
78 |
+
woocommerce_update_options( $settings );
|
79 |
}
|
80 |
|
81 |
/**
|
82 |
+
* Get the settings fields
|
83 |
*/
|
84 |
+
public function get_settings( $section = '' ) {
|
85 |
+
$settings = apply_filters( 'wcdn_get_settings_no_section',
|
86 |
+
array(
|
87 |
+
array(
|
88 |
+
'title' => __( 'Template', 'woocommerce-delivery-notes' ),
|
89 |
+
'type' => 'title',
|
90 |
+
'desc' => $this->get_template_description(),
|
91 |
+
'id' => 'general_options'
|
92 |
+
),
|
93 |
+
|
94 |
+
array(
|
95 |
+
'title' => __( 'Style', 'woocommerce-delivery-notes' ),
|
96 |
+
'desc' => sprintf( __( 'The default print style. Read the <a href="%1$s">FAQ</a> to learn how to customize it or get more styles with <a href="%2$s">WooCommerce Print Invoice & Delivery Note Pro</a>.', 'woocommerce-delivery-notes' ), 'https://wordpress.org/plugins/woocommerce-delivery-notes/faq/', '#' ),
|
97 |
+
'id' => 'wcdn_template_style',
|
98 |
+
'class' => 'wc-enhanced-select',
|
99 |
+
'default' => '',
|
100 |
+
'type' => 'select',
|
101 |
+
'options' => $this->get_options_styles(),
|
102 |
+
'desc_tip' => false,
|
103 |
+
),
|
104 |
+
|
105 |
+
array(
|
106 |
+
'title' => __( 'Shop Logo', 'woocommerce-delivery-notes' ),
|
107 |
+
'desc' => '',
|
108 |
+
'id' => 'wcdn_company_logo_image_id',
|
109 |
+
'css' => '',
|
110 |
+
'default' => '',
|
111 |
+
'type' => 'wcdn_image_select',
|
112 |
+
'desc_tip' => __( 'A shop logo representing your business. When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen.', 'woocommerce-delivery-notes' )
|
113 |
+
),
|
114 |
+
|
115 |
+
array(
|
116 |
+
'title' => __( 'Shop Name', 'woocommerce-delivery-notes' ),
|
117 |
+
'desc' => '',
|
118 |
+
'id' => 'wcdn_custom_company_name',
|
119 |
+
'css' => 'min-width:100%;',
|
120 |
+
'default' => '',
|
121 |
+
'type' => 'text',
|
122 |
+
'desc_tip' => __( 'The shop name. Leave blank to use the default Website or Blog title defined in WordPress settings. The name will be ignored when a Logo is set.', 'woocommerce-delivery-notes' ),
|
123 |
+
),
|
124 |
+
|
125 |
+
array(
|
126 |
+
'title' => __( 'Shop Address', 'woocommerce-delivery-notes' ),
|
127 |
+
'desc' => __( 'The postal address of the shop or even e-mail or telephone.', 'woocommerce-delivery-notes' ),
|
128 |
+
'id' => 'wcdn_company_address',
|
129 |
+
'css' => 'min-width:100%;min-height:100px;',
|
130 |
+
'default' => '',
|
131 |
+
'type' => 'textarea',
|
132 |
+
'desc_tip' => true,
|
133 |
+
),
|
134 |
+
|
135 |
+
array(
|
136 |
+
'title' => __( 'Complimentary Close', 'woocommerce-delivery-notes' ),
|
137 |
+
'desc' => __( 'Add a personal close, notes or season greetings.', 'woocommerce-delivery-notes' ),
|
138 |
+
'id' => 'wcdn_personal_notes',
|
139 |
+
'css' => 'min-width:100%;min-height:100px;',
|
140 |
+
'default' => '',
|
141 |
+
'type' => 'textarea',
|
142 |
+
'desc_tip' => true,
|
143 |
+
),
|
144 |
+
|
145 |
+
array(
|
146 |
+
'title' => __( 'Policies', 'woocommerce-delivery-notes' ),
|
147 |
+
'desc' => __( 'Add the shop policies, conditions, etc.', 'woocommerce-delivery-notes' ),
|
148 |
+
'id' => 'wcdn_policies_conditions',
|
149 |
+
'css' => 'min-width:100%;min-height:100px;',
|
150 |
+
'default' => '',
|
151 |
+
'type' => 'textarea',
|
152 |
+
'desc_tip' => true,
|
153 |
+
),
|
154 |
+
|
155 |
+
array(
|
156 |
+
'title' => __( 'Footer', 'woocommerce-delivery-notes' ),
|
157 |
+
'desc' => __( 'Add a footer imprint, instructions, copyright notes, e-mail, telephone, etc.', 'woocommerce-delivery-notes' ),
|
158 |
+
'id' => 'wcdn_footer_imprint',
|
159 |
+
'css' => 'min-width:100%;min-height:100px;',
|
160 |
+
'default' => '',
|
161 |
+
'type' => 'textarea',
|
162 |
+
'desc_tip' => true,
|
163 |
+
),
|
164 |
+
|
165 |
+
array(
|
166 |
+
'type' => 'sectionend',
|
167 |
+
'id' => 'general_options'
|
168 |
+
),
|
169 |
+
|
170 |
+
array(
|
171 |
+
'title' => __( 'Pages & Buttons', 'woocommerce-delivery-notes' ),
|
172 |
+
'type' => 'title',
|
173 |
+
'desc' => '',
|
174 |
+
'id' => 'display_options'
|
175 |
+
),
|
176 |
+
|
177 |
+
array(
|
178 |
+
'title' => __( 'Print Page Endpoint', 'woocommerce-delivery-notes' ),
|
179 |
+
'desc' => '',
|
180 |
+
'id' => 'wcdn_print_order_page_endpoint',
|
181 |
+
'css' => '',
|
182 |
+
'default' => 'print-order',
|
183 |
+
'type' => 'text',
|
184 |
+
'desc_tip' => __( 'The endpoint is appended to the accounts page URL to print the order. It should be unique.', 'woocommerce-delivery-notes' ),
|
185 |
+
),
|
186 |
+
|
187 |
+
array(
|
188 |
+
'title' => __( 'Email', 'woocommerce-delivery-notes' ),
|
189 |
+
'desc' => __( 'Show print link in customer emails', 'woocommerce-delivery-notes' ),
|
190 |
+
'id' => 'wcdn_email_print_link',
|
191 |
+
'default' => 'no',
|
192 |
+
'type' => 'checkbox',
|
193 |
+
'desc_tip' => __( 'This includes the emails for a new, processing and completed order. On top of that the customer invoice email also includes the link.', 'woocommerce-delivery-notes' )
|
194 |
+
),
|
195 |
+
|
196 |
+
array(
|
197 |
+
'title' => __( 'My Account', 'woocommerce-delivery-notes' ),
|
198 |
+
'desc' => __( 'Show print button on the "View Order" page', 'woocommerce-delivery-notes' ),
|
199 |
+
'id' => 'wcdn_print_button_on_view_order_page',
|
200 |
+
'default' => 'no',
|
201 |
+
'type' => 'checkbox',
|
202 |
+
'checkboxgroup' => 'start'
|
203 |
+
),
|
204 |
+
|
205 |
+
array(
|
206 |
+
'desc' => __( 'Show print buttons on the "My Account" page', 'woocommerce-delivery-notes' ),
|
207 |
+
'id' => 'wcdn_print_button_on_my_account_page',
|
208 |
+
'default' => 'no',
|
209 |
+
'type' => 'checkbox',
|
210 |
+
'checkboxgroup' => 'end'
|
211 |
+
),
|
212 |
+
|
213 |
+
array(
|
214 |
+
'type' => 'sectionend',
|
215 |
+
'id' => 'display_options'
|
216 |
+
),
|
217 |
+
|
218 |
+
array(
|
219 |
+
'title' => __( 'Invoice', 'woocommerce-delivery-notes' ),
|
220 |
+
'type' => 'title',
|
221 |
+
'desc' => '',
|
222 |
+
'id' => 'invoice_options'
|
223 |
+
),
|
224 |
+
|
225 |
+
array(
|
226 |
+
'title' => __( 'Numbering', 'woocommerce-delivery-notes' ),
|
227 |
+
'desc' => __( 'Create invoice numbers', 'woocommerce-delivery-notes' ),
|
228 |
+
'id' => 'wcdn_create_invoice_number',
|
229 |
+
'default' => 'no',
|
230 |
+
'type' => 'checkbox',
|
231 |
+
'desc_tip' => ''
|
232 |
+
),
|
233 |
+
|
234 |
+
array(
|
235 |
+
'title' => __( 'Next Number', 'woocommerce-delivery-notes' ),
|
236 |
+
'desc' => '',
|
237 |
+
'id' => 'wcdn_invoice_number_count',
|
238 |
+
'class' => 'create-invoice',
|
239 |
+
'css' => '',
|
240 |
+
'default' => 1,
|
241 |
+
'type' => 'number',
|
242 |
+
'desc_tip' => __( 'The next invoice number.', 'woocommerce-delivery-notes' )
|
243 |
+
),
|
244 |
+
|
245 |
+
array(
|
246 |
+
'title' => __( 'Number Prefix', 'woocommerce-delivery-notes' ),
|
247 |
+
'desc' => '',
|
248 |
+
'id' => 'wcdn_invoice_number_prefix',
|
249 |
+
'class' => 'create-invoice',
|
250 |
+
'css' => '',
|
251 |
+
'default' => '',
|
252 |
+
'type' => 'text',
|
253 |
+
'desc_tip' => __( 'This text will be prepended to the invoice number.', 'woocommerce-delivery-notes' )
|
254 |
+
),
|
255 |
+
|
256 |
+
array(
|
257 |
+
'title' => __( 'Number Suffix', 'woocommerce-delivery-notes' ),
|
258 |
+
'desc' => '',
|
259 |
+
'id' => 'wcdn_invoice_number_suffix',
|
260 |
+
'class' => 'create-invoice',
|
261 |
+
'css' => '',
|
262 |
+
'default' => '',
|
263 |
+
'type' => 'text',
|
264 |
+
'desc_tip' => __( 'This text will be appended to the invoice number.', 'woocommerce-delivery-notes' )
|
265 |
+
),
|
266 |
+
|
267 |
+
array(
|
268 |
+
'type' => 'sectionend',
|
269 |
+
'id' => 'invoice_options'
|
270 |
+
),
|
271 |
+
)
|
272 |
+
);
|
273 |
+
|
274 |
+
return apply_filters( 'wcdn_get_settings', $settings, $section );
|
275 |
}
|
276 |
|
277 |
/**
|
278 |
+
* Get the position of a setting inside the array
|
279 |
*/
|
280 |
+
public function get_setting_position( $id, $settings, $type = null ) {
|
281 |
+
foreach( $settings as $key => $value ) {
|
282 |
+
if( isset( $value['id'] ) && $value['id'] == $id ) {
|
283 |
+
return $key;
|
284 |
+
}
|
285 |
+
}
|
286 |
+
|
287 |
+
return false;
|
288 |
}
|
289 |
+
|
290 |
/**
|
291 |
+
* Generate the template type setting fields
|
292 |
*/
|
293 |
+
public function generate_template_type_fields( $settings, $section = '' ) {
|
294 |
+
$position = $this->get_setting_position( 'wcdn_email_print_link', $settings );
|
295 |
+
if( $position !== false ) {
|
296 |
+
$new_settings = array();
|
297 |
+
|
298 |
+
// Go through all registrations but remove the default 'order' type
|
299 |
+
$template_registrations = WooCommerce_Delivery_Notes_Print::$template_registrations;
|
300 |
+
array_splice( $template_registrations, 0, 1 );
|
301 |
+
$end = count( $template_registrations ) - 1;
|
302 |
+
foreach( $template_registrations as $index => $template_registration ) {
|
303 |
+
$title = '';
|
304 |
+
$desc_tip = '';
|
305 |
+
$checkboxgroup = '';
|
306 |
+
|
307 |
+
// Define the group settings
|
308 |
+
if( $index == 0 ) {
|
309 |
+
$title = __( 'Admin', 'woocommerce-delivery-notes' );
|
310 |
+
$checkboxgroup = 'start';
|
311 |
+
} else if( $index == $end ) {
|
312 |
+
$desc_tip = __( 'The print buttons are available on the order listing and on the order detail screen.', 'woocommerce-delivery-notes' );
|
313 |
+
$checkboxgroup = 'end';
|
314 |
+
}
|
315 |
+
|
316 |
+
// Create the setting
|
317 |
+
$new_settings[] = array(
|
318 |
+
'title' => $title,
|
319 |
+
'desc' => $template_registration['labels']['setting'],
|
320 |
+
'id' => 'wcdn_template_type_' . $template_registration['type'],
|
321 |
+
'default' => 'no',
|
322 |
+
'type' => 'checkbox',
|
323 |
+
'checkboxgroup' => $checkboxgroup,
|
324 |
+
'desc_tip' => $desc_tip
|
325 |
+
);
|
326 |
+
}
|
327 |
+
|
328 |
+
// Add the settings
|
329 |
+
$settings = $this->array_merge_at( $settings, $new_settings, $position );
|
330 |
}
|
331 |
+
|
332 |
+
return $settings;
|
333 |
}
|
334 |
|
335 |
/**
|
336 |
+
* Generate the description for the template settings
|
337 |
*/
|
338 |
+
public function get_template_description() {
|
339 |
+
$description = '';
|
340 |
+
$args = array(
|
341 |
+
'post_type' => 'shop_order',
|
342 |
+
'post_status' => array( 'wc-pending', 'wc-processing', 'wc-on-hold', 'wc-completed', 'wc-cancelled', 'wc-refunded', 'wc-failed' ),
|
343 |
+
'posts_per_page' => 1
|
344 |
+
);
|
345 |
+
$query = new WP_Query( $args );
|
346 |
+
|
347 |
+
// show template preview links when an order is available
|
348 |
+
if( $query->have_posts() ) {
|
349 |
+
$results = $query->get_posts();
|
350 |
+
$test_id = $results[0]->ID;
|
351 |
+
$invoice_url = wcdn_get_print_link( $test_id, 'invoice' );
|
352 |
+
$delivery_note_url = wcdn_get_print_link( $test_id, 'delivery-note' );
|
353 |
+
$receipt_url = wcdn_get_print_link( $test_id, 'receipt' );
|
354 |
+
$description = sprintf( __( 'This section lets you customise the content. You can preview the <a href="%1$s" target="%4$s" class="%5$s">invoice</a>, <a href="%2$s" target="%4$s" class="%5$s">delivery note</a> or <a href="%3$s" target="%4$s" class="%5$s">receipt</a> template.', 'woocommerce-delivery-notes' ), $invoice_url, $delivery_note_url, $receipt_url, '_blank', '' );
|
355 |
}
|
|
|
356 |
|
357 |
+
return $description;
|
358 |
+
}
|
359 |
+
|
360 |
/**
|
361 |
+
* Generate the options for the template styles field
|
362 |
*/
|
363 |
+
public function get_options_styles() {
|
364 |
+
$options = array();
|
365 |
|
366 |
+
foreach( WooCommerce_Delivery_Notes_Print::$template_styles as $template_style ) {
|
367 |
+
if( is_array( $template_style ) && isset( $template_style['type'] ) && isset( $template_style['name'] ) ) {
|
368 |
+
$options[$template_style['type']] = $template_style['name'];
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
return $options;
|
373 |
}
|
374 |
+
|
375 |
/**
|
376 |
+
* Load image with ajax
|
377 |
*/
|
378 |
+
public function load_image_ajax() {
|
379 |
+
// Verify the nonce
|
380 |
+
if ( empty( $_REQUEST['nonce'] ) || ! wp_verify_nonce( $_REQUEST['nonce'], 'woocommerce-settings' ) ) {
|
381 |
+
die();
|
382 |
+
}
|
383 |
+
|
384 |
+
// Verify the id
|
385 |
+
if( empty( $_POST['attachment_id'] ) ) {
|
386 |
die();
|
387 |
}
|
388 |
|
389 |
+
// create the image
|
390 |
+
$this->create_image( $_POST['attachment_id'] );
|
391 |
|
392 |
exit;
|
393 |
}
|
394 |
|
395 |
/**
|
396 |
+
* Create image
|
397 |
*/
|
398 |
+
public function create_image( $attachment_id ) {
|
399 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'medium', false );
|
400 |
+
$orientation = 'landscape';
|
401 |
+
if( ( $attachment_src[1] / $attachment_src[2] ) < 1 ) {
|
402 |
+
$orientation = 'portrait';
|
403 |
+
}
|
404 |
|
405 |
?>
|
406 |
+
<img src="<?php echo $attachment_src[0]; ?>" class="<?php echo $orientation; ?>" alt="" />
|
407 |
<?php
|
408 |
}
|
409 |
|
410 |
/**
|
411 |
+
* Output image select field
|
412 |
*/
|
413 |
+
public function output_image_select( $value ) {
|
414 |
+
// Define the defaults
|
415 |
+
if ( ! isset( $value['title_select'] ) ) {
|
416 |
+
$value['title_select'] = __( 'Select', 'woocommerce-delivery-notes' );
|
417 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
|
419 |
+
if ( ! isset( $value['title_remove'] ) ) {
|
420 |
+
$value['title_remove'] = __( 'Remove', 'woocommerce-delivery-notes' );
|
421 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
|
423 |
+
// Get additional data fields
|
424 |
+
$field = WC_Admin_Settings::get_field_description( $value );
|
425 |
+
$description = $field['description'];
|
426 |
+
$tooltip_html = $field['tooltip_html'];
|
427 |
+
$option_value = WC_Admin_Settings::get_option( $value['id'], $value['default'] );
|
428 |
+
$class_name = 'wcdn-image-select';
|
429 |
+
|
430 |
+
?><tr valign="top">
|
431 |
+
<th scope="row" class="titledesc">
|
432 |
+
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?> <?php echo $tooltip_html; ?></label>
|
433 |
+
</th>
|
434 |
+
<td class="forminp image_width_settings">
|
435 |
+
<input name="<?php echo esc_attr( $value['id'] ); ?>" id="<?php echo esc_attr( $value['id'] ); ?>" type="hidden" value="<?php echo esc_attr( $option_value ); ?>" class="<?php echo $class_name; ?>-image-id <?php echo esc_attr( $value['class'] ); ?>" />
|
436 |
+
|
437 |
+
<div id="<?php echo esc_attr( $value['id'] ); ?>_field" class="<?php echo $class_name; ?>-field <?php echo esc_attr( $value['class'] ); ?>" style="<?php echo esc_attr( $value['css'] ); ?>">
|
438 |
+
<span id="<?php echo esc_attr( $value['id'] ); ?>_spinner" class="<?php echo $class_name; ?>-spinner spinner"></span>
|
439 |
+
<div id="<?php echo esc_attr( $value['id'] ); ?>_attachment" class="<?php echo $class_name; ?>-attachment <?php echo esc_attr( $value['class'] ); ?> ">
|
440 |
+
<div class="thumbnail">
|
441 |
+
<div class="centered">
|
442 |
+
<?php if( !empty( $option_value ) ) : ?>
|
443 |
+
<?php $this->create_image( $option_value ); ?>
|
444 |
+
<?php endif; ?>
|
445 |
+
</div>
|
446 |
+
</div>
|
447 |
+
</div>
|
448 |
+
|
449 |
+
<div id="<?php echo esc_attr( $value['id'] ); ?>_buttons" class="<?php echo $class_name; ?>-buttons <?php echo esc_attr( $value['class'] ); ?>">
|
450 |
+
<a href="#" id="<?php echo esc_attr( $value['id'] ); ?>_remove_button" class="<?php echo $class_name; ?>-remove-button <?php if( empty( $option_value ) ) : ?>hidden<?php endif; ?> button">
|
451 |
+
<?php echo esc_html( $value['title_remove'] ); ?>
|
452 |
+
</a>
|
453 |
+
<a href="#" id="<?php echo esc_attr( $value['id'] ); ?>_add_button" class="<?php echo $class_name; ?>-add-button <?php if( !empty( $option_value ) ) : ?>hidden<?php endif; ?> button" data-uploader-title="<?php echo esc_attr( $value['title'] ); ?>" data-uploader-button-title="<?php echo esc_attr( $value['title_select'] ); ?>">
|
454 |
+
<?php echo esc_html( $value['title_select'] ); ?>
|
455 |
+
</a>
|
456 |
+
</div>
|
457 |
+
</div>
|
458 |
+
|
459 |
+
<?php echo $description; ?>
|
460 |
+
</td>
|
461 |
+
</tr><?php
|
462 |
}
|
463 |
|
464 |
/**
|
465 |
+
* Merge array at given position
|
466 |
+
*/
|
467 |
+
public function array_merge_at( $array, $insert, $position ) {
|
468 |
+
$new_array = array();
|
469 |
+
// if pos is start, just merge them
|
470 |
+
if( $position == 0 ) {
|
471 |
+
$new_array = array_merge( $insert, $array );
|
472 |
+
} else {
|
473 |
+
// if pos is end just merge them
|
474 |
+
if( $position >= ( count( $array ) - 1 ) ) {
|
475 |
+
$new_array = array_merge($array, $insert);
|
476 |
+
} else {
|
477 |
+
// split into head and tail, then merge head+inserted bit+tail
|
478 |
+
$head = array_slice( $array, 0, $position );
|
479 |
+
$tail = array_slice( $array, $position );
|
480 |
+
$new_array = array_merge( $head, $insert, $tail );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
}
|
|
|
|
|
|
|
482 |
}
|
483 |
+
return $new_array;
|
484 |
}
|
|
|
485 |
}
|
486 |
|
487 |
}
|
includes/class-wcdn-theme.php
CHANGED
@@ -1,14 +1,19 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Frontend Theme class
|
5 |
*/
|
6 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Theme {
|
9 |
-
|
10 |
-
public $template_type;
|
11 |
-
|
12 |
/**
|
13 |
* Constructor
|
14 |
*/
|
@@ -22,14 +27,12 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
|
22 |
* the theme and plugins are ready.
|
23 |
*/
|
24 |
public function load_hooks() {
|
25 |
-
// Define defaults
|
26 |
-
$this->template_type = apply_filters( 'wcdn_theme_print_button_template_type', 'invoice' );
|
27 |
-
|
28 |
// hooks
|
29 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'create_print_button_account_page' ), 10, 2 );
|
30 |
add_action( 'woocommerce_view_order', array( $this, 'create_print_button_order_page' ) );
|
31 |
add_action( 'woocommerce_thankyou', array( $this, 'create_print_button_order_page' ) );
|
32 |
add_action( 'wp_enqueue_scripts', array( $this, 'add_scripts' ) );
|
|
|
33 |
}
|
34 |
|
35 |
/**
|
@@ -46,9 +49,10 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
|
46 |
* Create a print button for the 'My Account' page
|
47 |
*/
|
48 |
public function create_print_button_account_page( $actions, $order ) {
|
49 |
-
if( get_option(
|
|
|
50 |
$actions['print'] = array(
|
51 |
-
'url' => wcdn_get_print_link( $order->id, $this->
|
52 |
'name' => __( 'Print', 'woocommerce-delivery-notes' )
|
53 |
);
|
54 |
}
|
@@ -58,14 +62,30 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
|
58 |
/**
|
59 |
* Create a print button for the 'View Order' page
|
60 |
*/
|
61 |
-
public function create_print_button_order_page( $order_id ) {
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
64 |
|
65 |
-
//
|
|
|
|
|
66 |
if( $this->is_woocommerce_tracking_page() ) {
|
67 |
-
$print_url = wcdn_get_print_link( $order_id, $this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
}
|
|
|
69 |
?>
|
70 |
<p class="order-print">
|
71 |
<a href="<?php echo $print_url; ?>" class="button print"><?php _e( 'Print', 'woocommerce-delivery-notes' ); ?></a>
|
@@ -74,6 +94,39 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
|
74 |
}
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
/**
|
78 |
* Is WooCommerce 'Order Tracking' page
|
79 |
*/
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Frontend Theme class
|
12 |
*/
|
13 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Theme' ) ) {
|
14 |
|
15 |
class WooCommerce_Delivery_Notes_Theme {
|
16 |
+
|
|
|
|
|
17 |
/**
|
18 |
* Constructor
|
19 |
*/
|
27 |
* the theme and plugins are ready.
|
28 |
*/
|
29 |
public function load_hooks() {
|
|
|
|
|
|
|
30 |
// hooks
|
31 |
add_filter( 'woocommerce_my_account_my_orders_actions', array( $this, 'create_print_button_account_page' ), 10, 2 );
|
32 |
add_action( 'woocommerce_view_order', array( $this, 'create_print_button_order_page' ) );
|
33 |
add_action( 'woocommerce_thankyou', array( $this, 'create_print_button_order_page' ) );
|
34 |
add_action( 'wp_enqueue_scripts', array( $this, 'add_scripts' ) );
|
35 |
+
add_action( 'woocommerce_email_after_order_table', array( $this, 'add_email_print_url' ), 100, 3 );
|
36 |
}
|
37 |
|
38 |
/**
|
49 |
* Create a print button for the 'My Account' page
|
50 |
*/
|
51 |
public function create_print_button_account_page( $actions, $order ) {
|
52 |
+
if( get_option( 'wcdn_print_button_on_my_account_page' ) == 'yes' ) {
|
53 |
+
// Add the print button
|
54 |
$actions['print'] = array(
|
55 |
+
'url' => wcdn_get_print_link( $order->id, $this->get_template_type( $order ) ),
|
56 |
'name' => __( 'Print', 'woocommerce-delivery-notes' )
|
57 |
);
|
58 |
}
|
62 |
/**
|
63 |
* Create a print button for the 'View Order' page
|
64 |
*/
|
65 |
+
public function create_print_button_order_page( $order_id ) {
|
66 |
+
$order = new WC_Order( $order_id );
|
67 |
+
|
68 |
+
// Output the button only when the option is enabled
|
69 |
+
if( get_option( 'wcdn_print_button_on_view_order_page' ) == 'yes' ) {
|
70 |
+
// Default button for all pages and logged in users
|
71 |
+
$print_url = wcdn_get_print_link( $order_id, $this->get_template_type( $order ) );
|
72 |
|
73 |
+
// Pass the email to the url for the tracking
|
74 |
+
// and thank you page. This allows to view the
|
75 |
+
// print page without logging in.
|
76 |
if( $this->is_woocommerce_tracking_page() ) {
|
77 |
+
$print_url = wcdn_get_print_link( $order_id, $this->get_template_type( $order ), $_REQUEST['order_email'] );
|
78 |
+
}
|
79 |
+
|
80 |
+
// Thank you page
|
81 |
+
if( is_order_received_page() && !is_user_logged_in() ) {
|
82 |
+
// Don't output the butten when there is no email
|
83 |
+
if( !$order->billing_email ) {
|
84 |
+
return;
|
85 |
+
}
|
86 |
+
$print_url = wcdn_get_print_link( $order_id, $this->get_template_type( $order ), $order->billing_email );
|
87 |
}
|
88 |
+
|
89 |
?>
|
90 |
<p class="order-print">
|
91 |
<a href="<?php echo $print_url; ?>" class="button print"><?php _e( 'Print', 'woocommerce-delivery-notes' ); ?></a>
|
94 |
}
|
95 |
}
|
96 |
|
97 |
+
/**
|
98 |
+
* Add a print url to the emails that are sent to the customer
|
99 |
+
*/
|
100 |
+
public function add_email_print_url( $order, $sent_to_admin = true, $plain_text = false ) {
|
101 |
+
if( get_option( 'wcdn_email_print_link' ) == 'yes' ) {
|
102 |
+
if( $order->billing_email && !$sent_to_admin ) {
|
103 |
+
$url = wcdn_get_print_link( $order->id, $this->get_template_type( $order ), $order->billing_email, true );
|
104 |
+
|
105 |
+
if( $plain_text ) :
|
106 |
+
echo __( 'Print your order', 'woocommerce-delivery-notes' ) . "\n\n";
|
107 |
+
|
108 |
+
echo $url . "\n";
|
109 |
+
|
110 |
+
echo "\n****************************************************\n\n";
|
111 |
+
else : ?>
|
112 |
+
<p><strong><?php _e( 'Print:', 'woocommerce-delivery-notes' ); ?></strong> <a href="<?php echo $url; ?>"><?php _e( 'Open print view in browser', 'woocommerce-delivery-notes' ); ?></a></p>
|
113 |
+
<?php endif;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
}
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Get the print button template type depnding on order status
|
120 |
+
*/
|
121 |
+
public function get_template_type( $order ) {
|
122 |
+
if( $order->status == 'completed' ) {
|
123 |
+
$type = apply_filters( 'wcdn_theme_print_button_template_type_complete_status', 'invoice' );
|
124 |
+
} else {
|
125 |
+
$type = apply_filters( 'wcdn_theme_print_button_template_type', 'order' );
|
126 |
+
}
|
127 |
+
return $type;
|
128 |
+
}
|
129 |
+
|
130 |
/**
|
131 |
* Is WooCommerce 'Order Tracking' page
|
132 |
*/
|
includes/class-wcdn-writepanel.php
CHANGED
@@ -1,12 +1,19 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Writepanel class
|
5 |
*/
|
6 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
7 |
|
8 |
class WooCommerce_Delivery_Notes_Writepanel {
|
9 |
-
|
10 |
/**
|
11 |
* Constructor
|
12 |
*/
|
@@ -18,7 +25,8 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
18 |
/**
|
19 |
* Load the admin hooks
|
20 |
*/
|
21 |
-
public function load_admin_hooks() {
|
|
|
22 |
add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
|
23 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
|
24 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_styles' ) );
|
@@ -47,7 +55,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
47 |
if( $this->is_order_edit_page() || $this->is_order_post_page() ) {
|
48 |
wp_enqueue_script( 'thickbox' );
|
49 |
wp_enqueue_script( 'woocommerce-delivery-notes-print-link', WooCommerce_Delivery_Notes::$plugin_url . 'js/jquery.print-link.js', array( 'jquery' ) );
|
50 |
-
wp_enqueue_script( 'woocommerce-delivery-notes-admin', WooCommerce_Delivery_Notes::$plugin_url . 'js/admin.js', array( 'jquery', 'woocommerce-delivery-notes-print-link'
|
51 |
}
|
52 |
}
|
53 |
|
@@ -79,13 +87,17 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
79 |
* Add print actions to the orders listing
|
80 |
*/
|
81 |
public function add_listing_actions( $order ) {
|
82 |
-
?>
|
83 |
-
|
84 |
-
<?php
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
<span class="print-preview-loading spinner"></span>
|
90 |
<?php
|
91 |
}
|
@@ -102,11 +114,14 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
102 |
if( $this->is_order_edit_page() ) : ?>
|
103 |
<script type="text/javascript">
|
104 |
jQuery(document).ready(function($) {
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
|
|
|
|
|
|
110 |
});
|
111 |
</script>
|
112 |
<?php endif;
|
@@ -120,32 +135,61 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
120 |
// get the action staht should be started
|
121 |
$wp_list_table = _get_list_table('WP_Posts_List_Table');
|
122 |
$action = $wp_list_table->current_action();
|
123 |
-
|
124 |
// stop if there are no post ids
|
125 |
if( !isset( $_REQUEST['post'] ) ) {
|
126 |
return;
|
127 |
}
|
128 |
|
129 |
// only for specified actions
|
130 |
-
|
131 |
-
|
132 |
-
$template_type = '
|
133 |
-
$report_action = '
|
134 |
-
break;
|
135 |
-
case 'wcdn_print_delivery_note':
|
136 |
-
$template_type = 'delivery-note';
|
137 |
-
$report_action = 'printed_delivery_note';
|
138 |
break;
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
// do the action
|
144 |
$post_ids = array_map( 'absint', (array) $_REQUEST['post'] );
|
145 |
$total = count( $post_ids );
|
146 |
$url = wcdn_get_print_link( $post_ids , $template_type );
|
147 |
-
$sendback = add_query_arg( array( 'post_type' => 'shop_order', $report_action => true, 'total' => $total, 'print_url' => urlencode( $url ) ), '' );
|
148 |
|
|
|
|
|
|
|
149 |
wp_redirect( $sendback );
|
150 |
exit;
|
151 |
}
|
@@ -156,20 +200,24 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
156 |
*/
|
157 |
public function confirm_bulk_actions() {
|
158 |
if( $this->is_order_edit_page() ) {
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
-
?>
|
169 |
-
<div id="woocommerce-delivery-notes-bulk-print-message" class="updated">
|
170 |
-
<p><?php echo $message; ?> <a href="<?php echo urldecode( $_REQUEST['print_url'] ); ?>" target="_blank" class="print-preview-button" id="woocommerce-delivery-notes-bulk-print-button"><?php _e( 'Print now', 'woocommerce-delivery-notes' ) ?></a> <span class="print-preview-loading spinner"></span></p>
|
171 |
-
</div>
|
172 |
-
<?php
|
173 |
}
|
174 |
}
|
175 |
}
|
@@ -185,21 +233,30 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
|
185 |
* Create the meta box content on the single order page
|
186 |
*/
|
187 |
public function create_box_content() {
|
188 |
-
global $post_id;
|
189 |
-
$create_invoice_number = get_option( WooCommerce_Delivery_Notes::$plugin_prefix . 'create_invoice_number' );
|
190 |
?>
|
191 |
<div class="print-actions">
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
194 |
<span class="print-preview-loading spinner"></span>
|
195 |
</div>
|
196 |
<?php
|
197 |
-
|
|
|
|
|
198 |
$invoice_number = wcdn_get_order_invoice_number( $post_id );
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
|
|
|
|
|
|
203 |
<?php endif; ?>
|
204 |
<?php
|
205 |
}
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Writepanel class
|
12 |
*/
|
13 |
if ( !class_exists( 'WooCommerce_Delivery_Notes_Writepanel' ) ) {
|
14 |
|
15 |
class WooCommerce_Delivery_Notes_Writepanel {
|
16 |
+
|
17 |
/**
|
18 |
* Constructor
|
19 |
*/
|
25 |
/**
|
26 |
* Load the admin hooks
|
27 |
*/
|
28 |
+
public function load_admin_hooks() {
|
29 |
+
// Hooks
|
30 |
add_action( 'woocommerce_admin_order_actions_end', array( $this, 'add_listing_actions' ) );
|
31 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
|
32 |
add_action( 'admin_enqueue_scripts', array( $this, 'add_styles' ) );
|
55 |
if( $this->is_order_edit_page() || $this->is_order_post_page() ) {
|
56 |
wp_enqueue_script( 'thickbox' );
|
57 |
wp_enqueue_script( 'woocommerce-delivery-notes-print-link', WooCommerce_Delivery_Notes::$plugin_url . 'js/jquery.print-link.js', array( 'jquery' ) );
|
58 |
+
wp_enqueue_script( 'woocommerce-delivery-notes-admin', WooCommerce_Delivery_Notes::$plugin_url . 'js/admin.js', array( 'jquery', 'woocommerce-delivery-notes-print-link' ) );
|
59 |
}
|
60 |
}
|
61 |
|
87 |
* Add print actions to the orders listing
|
88 |
*/
|
89 |
public function add_listing_actions( $order ) {
|
90 |
+
?>
|
91 |
+
<?php foreach( WooCommerce_Delivery_Notes_Print::$template_registrations as $template_registration ) : ?>
|
92 |
+
<?php if( get_option( 'wcdn_template_type_' . $template_registration['type'] ) == 'yes' && $template_registration['type'] !== 'order' ) : ?>
|
93 |
+
|
94 |
+
<a href="<?php echo wcdn_get_print_link( $order->id, $template_registration['type'] ); ?>" class="button tips print-preview-button <?php echo $template_registration['type']; ?>" target="_blank" alt="<?php esc_attr_e( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>" data-tip="<?php esc_attr_e( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>">
|
95 |
+
<?php _e( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ); ?>
|
96 |
+
</a>
|
97 |
+
|
98 |
+
<?php endif; ?>
|
99 |
+
<?php endforeach; ?>
|
100 |
+
|
101 |
<span class="print-preview-loading spinner"></span>
|
102 |
<?php
|
103 |
}
|
114 |
if( $this->is_order_edit_page() ) : ?>
|
115 |
<script type="text/javascript">
|
116 |
jQuery(document).ready(function($) {
|
117 |
+
<?php foreach( WooCommerce_Delivery_Notes_Print::$template_registrations as $template_registration ) : ?>
|
118 |
+
<?php if( get_option( 'wcdn_template_type_' . $template_registration['type'] ) == 'yes' && $template_registration['type'] !== 'order' ) : ?>
|
119 |
+
|
120 |
+
$('<option>').val('wcdn_print_<?php echo $template_registration['type']; ?>').attr('title', '<?php echo $template_registration['type']; ?>').text('<?php echo esc_js( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>').appendTo('select[name="action"]');
|
121 |
+
$('<option>').val('wcdn_print_<?php echo $template_registration['type']; ?>').attr('title', '<?php echo $template_registration['type']; ?>').text('<?php echo esc_js( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>').appendTo('select[name="action2"]');
|
122 |
+
|
123 |
+
<?php endif; ?>
|
124 |
+
<?php endforeach; ?>
|
125 |
});
|
126 |
</script>
|
127 |
<?php endif;
|
135 |
// get the action staht should be started
|
136 |
$wp_list_table = _get_list_table('WP_Posts_List_Table');
|
137 |
$action = $wp_list_table->current_action();
|
138 |
+
|
139 |
// stop if there are no post ids
|
140 |
if( !isset( $_REQUEST['post'] ) ) {
|
141 |
return;
|
142 |
}
|
143 |
|
144 |
// only for specified actions
|
145 |
+
foreach( WooCommerce_Delivery_Notes_Print::$template_registrations as $template_registration ) {
|
146 |
+
if( $action == 'wcdn_print_' . $template_registration['type'] ) {
|
147 |
+
$template_type = $template_registration['type'];
|
148 |
+
$report_action = 'printed_' . $template_registration['type'];
|
|
|
|
|
|
|
|
|
149 |
break;
|
150 |
+
}
|
151 |
+
}
|
152 |
+
if( !isset( $report_action ) ) {
|
153 |
+
return;
|
154 |
+
}
|
155 |
+
|
156 |
+
// security check
|
157 |
+
check_admin_referer('bulk-posts');
|
158 |
+
|
159 |
+
// get referrer
|
160 |
+
if( !wp_get_referer() ) {
|
161 |
+
return;
|
162 |
}
|
163 |
|
164 |
+
// filter the referer args
|
165 |
+
$referer_args = array();
|
166 |
+
parse_str( parse_url( wp_get_referer(), PHP_URL_QUERY ), $referer_args );
|
167 |
+
|
168 |
+
// set the basic args for the sendback
|
169 |
+
$args = array(
|
170 |
+
'post_type' => $referer_args['post_type']
|
171 |
+
);
|
172 |
+
if( isset( $referer_args['post_status'] ) ) {
|
173 |
+
$args = wp_parse_args( array( 'post_status' => $referer_args['post_status'] ), $args );
|
174 |
+
}
|
175 |
+
if( isset( $referer_args['paged'] ) ) {
|
176 |
+
$args = wp_parse_args( array( 'paged' => $referer_args['paged'] ), $args );
|
177 |
+
}
|
178 |
+
if( isset( $referer_args['orderby'] ) ) {
|
179 |
+
$args = wp_parse_args( array( 'orderby' => $referer_args['orderby'] ), $args );
|
180 |
+
}
|
181 |
+
if( isset( $referer_args['order'] ) ) {
|
182 |
+
$args = wp_parse_args( array( 'orderby' => $referer_args['order'] ), $args );
|
183 |
+
}
|
184 |
+
|
185 |
// do the action
|
186 |
$post_ids = array_map( 'absint', (array) $_REQUEST['post'] );
|
187 |
$total = count( $post_ids );
|
188 |
$url = wcdn_get_print_link( $post_ids , $template_type );
|
|
|
189 |
|
190 |
+
// generate more args and the sendback string
|
191 |
+
$args = wp_parse_args( array( $report_action => true, 'total' => $total, 'print_url' => urlencode( $url ) ), $args );
|
192 |
+
$sendback = add_query_arg( $args, '' );
|
193 |
wp_redirect( $sendback );
|
194 |
exit;
|
195 |
}
|
200 |
*/
|
201 |
public function confirm_bulk_actions() {
|
202 |
if( $this->is_order_edit_page() ) {
|
203 |
+
foreach( WooCommerce_Delivery_Notes_Print::$template_registrations as $template_registration ) {
|
204 |
+
if( isset( $_REQUEST['printed_' . $template_registration['type']] ) ) {
|
205 |
+
// use singular or plural form
|
206 |
+
$total = isset( $_REQUEST['total'] ) ? absint( $_REQUEST['total'] ) : 0;
|
207 |
+
if( $total <= 1 ) {
|
208 |
+
$message = $template_registration['labels']['message'];
|
209 |
+
} else {
|
210 |
+
$message = $template_registration['labels']['message_plural'];
|
211 |
+
}
|
212 |
+
?>
|
213 |
+
|
214 |
+
<div id="woocommerce-delivery-notes-bulk-print-message" class="updated">
|
215 |
+
<p><?php _e( $message, 'woocommerce-delivery-notes' ); ?> <a href="<?php echo urldecode( $_REQUEST['print_url'] ); ?>" target="_blank" class="print-preview-button" id="woocommerce-delivery-notes-bulk-print-button"><?php _e( 'Print now', 'woocommerce-delivery-notes' ) ?></a> <span class="print-preview-loading spinner"></span></p>
|
216 |
+
</div>
|
217 |
+
|
218 |
+
<?php
|
219 |
+
break;
|
220 |
}
|
|
|
|
|
|
|
|
|
|
|
221 |
}
|
222 |
}
|
223 |
}
|
233 |
* Create the meta box content on the single order page
|
234 |
*/
|
235 |
public function create_box_content() {
|
236 |
+
global $post_id, $wcdn;
|
|
|
237 |
?>
|
238 |
<div class="print-actions">
|
239 |
+
<?php foreach( WooCommerce_Delivery_Notes_Print::$template_registrations as $template_registration ) : ?>
|
240 |
+
<?php if( get_option( 'wcdn_template_type_' . $template_registration['type'] ) == 'yes' && $template_registration['type'] !== 'order' ) : ?>
|
241 |
+
|
242 |
+
<a href="<?php echo wcdn_get_print_link( $post_id, $template_registration['type'] ); ?>" class="button print-preview-button <?php echo $template_registration['type']; ?>" target="_blank" alt="<?php esc_attr_e( __( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ) ); ?>"><?php _e( $template_registration['labels']['print'], 'woocommerce-delivery-notes' ); ?></a>
|
243 |
+
|
244 |
+
<?php endif; ?>
|
245 |
+
<?php endforeach; ?>
|
246 |
<span class="print-preview-loading spinner"></span>
|
247 |
</div>
|
248 |
<?php
|
249 |
+
$create_invoice_number = get_option( 'wcdn_create_invoice_number' );
|
250 |
+
$has_invoice_number = get_post_meta( $post_id, '_wcdn_invoice_number', true );
|
251 |
+
if( !empty( $create_invoice_number ) && $create_invoice_number == 'yes' && $has_invoice_number ) :
|
252 |
$invoice_number = wcdn_get_order_invoice_number( $post_id );
|
253 |
+
$invoice_date = wcdn_get_order_invoice_date( $post_id ); ?>
|
254 |
+
|
255 |
+
<ul class="print-info">
|
256 |
+
<li><strong><?php _e( 'Invoice number: ', 'woocommerce-delivery-notes' ); ?></strong> <?php echo $invoice_number; ?></li>
|
257 |
+
<li><strong><?php _e( 'Invoice date: ', 'woocommerce-delivery-notes' ); ?></strong> <?php echo $invoice_date; ?></li>
|
258 |
+
</ul>
|
259 |
+
|
260 |
<?php endif; ?>
|
261 |
<?php
|
262 |
}
|
includes/wcdn-template-functions.php
CHANGED
@@ -1,11 +1,21 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Output the template part
|
5 |
*/
|
6 |
function wcdn_get_template_content( $name, $args = null ) {
|
7 |
global $wcdn;
|
8 |
-
|
|
|
|
|
|
|
9 |
}
|
10 |
|
11 |
/**
|
@@ -13,28 +23,30 @@ function wcdn_get_template_content( $name, $args = null ) {
|
|
13 |
*/
|
14 |
function wcdn_get_template_type() {
|
15 |
global $wcdn;
|
16 |
-
return apply_filters( 'wcdn_template_type', $wcdn->print->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
18 |
|
19 |
/**
|
20 |
* Return print page link
|
21 |
*/
|
22 |
-
function wcdn_get_print_link( $order_ids, $template_type = 'order', $order_email = null ) {
|
23 |
global $wcdn;
|
24 |
-
return $wcdn->print->get_print_page_url( $order_ids, $template_type, $order_email );
|
25 |
}
|
26 |
|
27 |
/**
|
28 |
* Output the document title depending on type
|
29 |
*/
|
30 |
function wcdn_document_title() {
|
31 |
-
|
32 |
-
echo apply_filters( 'wcdn_document_title', __( 'Invoice', 'woocommerce-delivery-notes' ) );
|
33 |
-
} elseif( wcdn_get_template_type() == 'delivery-note' ) {
|
34 |
-
echo apply_filters( 'wcdn_document_title', __( 'Delivery Note', 'woocommerce-delivery-notes' ) );
|
35 |
-
} else {
|
36 |
-
echo apply_filters( 'wcdn_document_title', __( 'Order', 'woocommerce-delivery-notes' ) );
|
37 |
-
}
|
38 |
}
|
39 |
|
40 |
/**
|
@@ -127,16 +139,32 @@ function wcdn_template_stylesheet() {
|
|
127 |
global $wcdn;
|
128 |
$name = apply_filters( 'wcdn_template_stylesheet_name', 'style.css' );
|
129 |
?>
|
130 |
-
<link rel="stylesheet" href="<?php echo $wcdn->print->
|
131 |
<?php
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
/**
|
135 |
* Return logo id
|
136 |
*/
|
137 |
function wcdn_get_company_logo_id() {
|
138 |
global $wcdn;
|
139 |
-
return apply_filters( 'wcdn_company_logo_id', get_option(
|
140 |
}
|
141 |
|
142 |
/**
|
@@ -145,14 +173,14 @@ function wcdn_get_company_logo_id() {
|
|
145 |
function wcdn_company_logo() {
|
146 |
global $wcdn;
|
147 |
$attachment_id = wcdn_get_company_logo_id();
|
148 |
-
$company = get_option(
|
149 |
if( $attachment_id ) {
|
150 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
151 |
|
152 |
// resize the image to a 1/4 of the original size
|
153 |
// to have a printing point density of about 288ppi.
|
154 |
?>
|
155 |
-
<img src="<?php echo $attachment_src[0]; ?>" width="<?php echo $attachment_src[1] / 4; ?>" height="<?php echo $attachment_src[2] / 4; ?>" alt="<?php echo esc_attr( $company ); ?>" />
|
156 |
<?php
|
157 |
}
|
158 |
}
|
@@ -162,7 +190,7 @@ function wcdn_company_logo() {
|
|
162 |
*/
|
163 |
function wcdn_company_name() {
|
164 |
global $wcdn;
|
165 |
-
$name = trim( get_option(
|
166 |
if( !empty( $name ) ) {
|
167 |
echo apply_filters( 'wcdn_company_name', stripslashes( wptexturize( $name ) ) );
|
168 |
} else {
|
@@ -175,7 +203,7 @@ function wcdn_company_name() {
|
|
175 |
*/
|
176 |
function wcdn_company_info() {
|
177 |
global $wcdn;
|
178 |
-
echo wpautop( wptexturize( get_option(
|
179 |
}
|
180 |
|
181 |
/**
|
@@ -200,15 +228,22 @@ function wcdn_get_order( $order_id ) {
|
|
200 |
function wcdn_get_order_info( $order ) {
|
201 |
global $wcdn;
|
202 |
$fields = array();
|
203 |
-
$create_invoice_number = get_option(
|
204 |
|
205 |
-
if( wcdn_get_template_type() == 'invoice' && !empty( $create_invoice_number ) ) {
|
206 |
$fields['invoice_number'] = array(
|
207 |
'label' => __( 'Invoice Number', 'woocommerce-delivery-notes' ),
|
208 |
'value' => wcdn_get_order_invoice_number( $order->id )
|
209 |
);
|
210 |
}
|
211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
$fields['order_number'] = array(
|
213 |
'label' => __( 'Order Number', 'woocommerce-delivery-notes' ),
|
214 |
'value' => $order->get_order_number()
|
@@ -249,6 +284,13 @@ function wcdn_get_order_invoice_number( $order_id ) {
|
|
249 |
return $wcdn->print->get_order_invoice_number( $order_id );
|
250 |
}
|
251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
|
253 |
/**
|
254 |
* Additional fields for the product
|
@@ -258,7 +300,7 @@ function wcdn_additional_product_fields( $fields = null, $product = null, $order
|
|
258 |
|
259 |
// Stock keeping unit
|
260 |
if( $product && $product->exists() && $product->get_sku() ) {
|
261 |
-
$fields[] = array(
|
262 |
'label' => __( 'SKU:', 'woocommerce-delivery-notes' ),
|
263 |
'value' => $product->get_sku()
|
264 |
);
|
@@ -267,9 +309,128 @@ function wcdn_additional_product_fields( $fields = null, $product = null, $order
|
|
267 |
}
|
268 |
|
269 |
/**
|
270 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
*/
|
272 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
foreach( $total_rows as $key => $row ) {
|
274 |
$label = $row['label'];
|
275 |
$colon = strrpos( $label, ':' );
|
@@ -281,12 +442,20 @@ function wcdn_remove_semicolon_from_totals( $total_rows, $order ) {
|
|
281 |
return $total_rows;
|
282 |
}
|
283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
/**
|
285 |
* Return customer notes
|
286 |
*/
|
287 |
function wcdn_get_customer_notes( $order ) {
|
288 |
global $wcdn;
|
289 |
-
return wpautop( wptexturize( $order->customer_note ) );
|
290 |
}
|
291 |
|
292 |
/**
|
@@ -314,7 +483,7 @@ function wcdn_has_customer_notes( $order ) {
|
|
314 |
*/
|
315 |
function wcdn_get_personal_notes() {
|
316 |
global $wcdn;
|
317 |
-
return wpautop( wptexturize( get_option(
|
318 |
}
|
319 |
|
320 |
/**
|
@@ -330,7 +499,7 @@ function wcdn_personal_notes() {
|
|
330 |
*/
|
331 |
function wcdn_get_policies_conditions() {
|
332 |
global $wcdn;
|
333 |
-
return wpautop( wptexturize( get_option(
|
334 |
}
|
335 |
|
336 |
/**
|
@@ -346,7 +515,7 @@ function wcdn_policies_conditions() {
|
|
346 |
*/
|
347 |
function wcdn_get_imprint() {
|
348 |
global $wcdn;
|
349 |
-
return wpautop( wptexturize( get_option(
|
350 |
}
|
351 |
|
352 |
/**
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Output the template part
|
12 |
*/
|
13 |
function wcdn_get_template_content( $name, $args = null ) {
|
14 |
global $wcdn;
|
15 |
+
$location = $wcdn->print->get_template_file_location( $name );
|
16 |
+
if( $location ) {
|
17 |
+
wc_get_template( $name, $args, $location, $location );
|
18 |
+
}
|
19 |
}
|
20 |
|
21 |
/**
|
23 |
*/
|
24 |
function wcdn_get_template_type() {
|
25 |
global $wcdn;
|
26 |
+
return apply_filters( 'wcdn_template_type', $wcdn->print->template['type'] );
|
27 |
+
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Return Title of the print template
|
31 |
+
*/
|
32 |
+
function wcdn_get_template_title() {
|
33 |
+
global $wcdn;
|
34 |
+
return apply_filters( 'wcdn_template_title', __( $wcdn->print->template['labels']['name'], 'woocommerce-delivery-notes' ) );
|
35 |
}
|
36 |
|
37 |
/**
|
38 |
* Return print page link
|
39 |
*/
|
40 |
+
function wcdn_get_print_link( $order_ids, $template_type = 'order', $order_email = null, $permalink = false ) {
|
41 |
global $wcdn;
|
42 |
+
return $wcdn->print->get_print_page_url( $order_ids, $template_type, $order_email, $permalink );
|
43 |
}
|
44 |
|
45 |
/**
|
46 |
* Output the document title depending on type
|
47 |
*/
|
48 |
function wcdn_document_title() {
|
49 |
+
echo apply_filters( 'wcdn_document_title', wcdn_get_template_title() );
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
}
|
51 |
|
52 |
/**
|
139 |
global $wcdn;
|
140 |
$name = apply_filters( 'wcdn_template_stylesheet_name', 'style.css' );
|
141 |
?>
|
142 |
+
<link rel="stylesheet" href="<?php echo $wcdn->print->get_template_file_location( $name, true ) . $name; ?>" type="text/css" media="screen,print" />
|
143 |
<?php
|
144 |
}
|
145 |
|
146 |
+
/**
|
147 |
+
* Output the template print content
|
148 |
+
*/
|
149 |
+
function wcdn_content( $order, $template_type ) {
|
150 |
+
global $wcdn;
|
151 |
+
|
152 |
+
// Add WooCommerce hooks here to not
|
153 |
+
// make global changes to the totals
|
154 |
+
add_filter( 'woocommerce_get_order_item_totals', 'wcdn_remove_semicolon_from_totals', 10, 2 );
|
155 |
+
add_filter( 'woocommerce_get_order_item_totals', 'wcdn_remove_payment_method_from_totals', 20, 2 );
|
156 |
+
add_filter( 'woocommerce_get_order_item_totals', 'wcdn_add_refunded_order_totals', 30, 2 );
|
157 |
+
|
158 |
+
// Load the template
|
159 |
+
wcdn_get_template_content( 'print-content.php', array( 'order' => $order, 'template_type' => $template_type ) );
|
160 |
+
}
|
161 |
+
|
162 |
/**
|
163 |
* Return logo id
|
164 |
*/
|
165 |
function wcdn_get_company_logo_id() {
|
166 |
global $wcdn;
|
167 |
+
return apply_filters( 'wcdn_company_logo_id', get_option( 'wcdn_company_logo_image_id' ) );
|
168 |
}
|
169 |
|
170 |
/**
|
173 |
function wcdn_company_logo() {
|
174 |
global $wcdn;
|
175 |
$attachment_id = wcdn_get_company_logo_id();
|
176 |
+
$company = get_option( 'wcdn_custom_company_name' );
|
177 |
if( $attachment_id ) {
|
178 |
$attachment_src = wp_get_attachment_image_src( $attachment_id, 'full', false );
|
179 |
|
180 |
// resize the image to a 1/4 of the original size
|
181 |
// to have a printing point density of about 288ppi.
|
182 |
?>
|
183 |
+
<img src="<?php echo $attachment_src[0]; ?>" width="<?php echo round( $attachment_src[1] / 4 ); ?>" height="<?php echo round( $attachment_src[2] / 4 ); ?>" alt="<?php echo esc_attr( $company ); ?>" />
|
184 |
<?php
|
185 |
}
|
186 |
}
|
190 |
*/
|
191 |
function wcdn_company_name() {
|
192 |
global $wcdn;
|
193 |
+
$name = trim( get_option( 'wcdn_custom_company_name' ) );
|
194 |
if( !empty( $name ) ) {
|
195 |
echo apply_filters( 'wcdn_company_name', stripslashes( wptexturize( $name ) ) );
|
196 |
} else {
|
203 |
*/
|
204 |
function wcdn_company_info() {
|
205 |
global $wcdn;
|
206 |
+
echo stripslashes( wpautop( wptexturize( get_option( 'wcdn_company_address' ) ) ) );
|
207 |
}
|
208 |
|
209 |
/**
|
228 |
function wcdn_get_order_info( $order ) {
|
229 |
global $wcdn;
|
230 |
$fields = array();
|
231 |
+
$create_invoice_number = get_option( 'wcdn_create_invoice_number' );
|
232 |
|
233 |
+
if( wcdn_get_template_type() == 'invoice' && !empty( $create_invoice_number ) && $create_invoice_number == 'yes' ) {
|
234 |
$fields['invoice_number'] = array(
|
235 |
'label' => __( 'Invoice Number', 'woocommerce-delivery-notes' ),
|
236 |
'value' => wcdn_get_order_invoice_number( $order->id )
|
237 |
);
|
238 |
}
|
239 |
|
240 |
+
if( wcdn_get_template_type() == 'invoice' ) {
|
241 |
+
$fields['invoice_date'] = array(
|
242 |
+
'label' => __( 'Invoice Date', 'woocommerce-delivery-notes' ),
|
243 |
+
'value' => wcdn_get_order_invoice_date( $order->id )
|
244 |
+
);
|
245 |
+
}
|
246 |
+
|
247 |
$fields['order_number'] = array(
|
248 |
'label' => __( 'Order Number', 'woocommerce-delivery-notes' ),
|
249 |
'value' => $order->get_order_number()
|
284 |
return $wcdn->print->get_order_invoice_number( $order_id );
|
285 |
}
|
286 |
|
287 |
+
/**
|
288 |
+
* Get the invoice date of an order
|
289 |
+
*/
|
290 |
+
function wcdn_get_order_invoice_date( $order_id ) {
|
291 |
+
global $wcdn;
|
292 |
+
return $wcdn->print->get_order_invoice_date( $order_id );
|
293 |
+
}
|
294 |
|
295 |
/**
|
296 |
* Additional fields for the product
|
300 |
|
301 |
// Stock keeping unit
|
302 |
if( $product && $product->exists() && $product->get_sku() ) {
|
303 |
+
$fields['sku'] = array(
|
304 |
'label' => __( 'SKU:', 'woocommerce-delivery-notes' ),
|
305 |
'value' => $product->get_sku()
|
306 |
);
|
309 |
}
|
310 |
|
311 |
/**
|
312 |
+
* Check if a shipping address is enabled
|
313 |
+
*/
|
314 |
+
function wcdn_has_shipping_address( $order ) {
|
315 |
+
// Works only with WooCommerce 2.2 and higher
|
316 |
+
if( version_compare( WC_VERSION, '2.2.0', '>=' ) ) {
|
317 |
+
if( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) {
|
318 |
+
return true;
|
319 |
+
} else {
|
320 |
+
return false;
|
321 |
+
}
|
322 |
+
}
|
323 |
+
return true;
|
324 |
+
}
|
325 |
+
|
326 |
+
/**
|
327 |
+
* Check if an order contains a refund
|
328 |
+
*/
|
329 |
+
function wcdn_has_refund( $order ) {
|
330 |
+
// Works only with WooCommerce 2.2 and higher
|
331 |
+
if( version_compare( WC_VERSION, '2.2.0', '>=' ) ) {
|
332 |
+
if( $order->get_total_refunded() ) {
|
333 |
+
return true;
|
334 |
+
}
|
335 |
+
}
|
336 |
+
return false;
|
337 |
+
}
|
338 |
+
|
339 |
+
/**
|
340 |
+
* Gets formatted item subtotal for display.
|
341 |
+
*/
|
342 |
+
function wcdn_get_formatted_item_price( $order, $item, $tax_display = '' ) {
|
343 |
+
|
344 |
+
if ( ! $tax_display ) {
|
345 |
+
$tax_display = $order->tax_display_cart;
|
346 |
+
}
|
347 |
+
|
348 |
+
if ( ! isset( $item['line_subtotal'] ) || ! isset( $item['line_subtotal_tax'] ) ) {
|
349 |
+
return '';
|
350 |
+
}
|
351 |
+
|
352 |
+
if ( 'excl' == $tax_display ) {
|
353 |
+
$ex_tax_label = $order->prices_include_tax ? 1 : 0;
|
354 |
+
|
355 |
+
$subtotal = wc_price( $order->get_item_subtotal( $item ), array( 'ex_tax_label' => $ex_tax_label, 'currency' => $order->get_order_currency() ) );
|
356 |
+
} else {
|
357 |
+
$subtotal = wc_price( $order->get_item_subtotal( $item, true ), array('currency' => $order->get_order_currency()) );
|
358 |
+
}
|
359 |
+
|
360 |
+
return apply_filters( 'wcdn_formatted_item_price', $subtotal, $item, $order );
|
361 |
+
}
|
362 |
+
|
363 |
+
/**
|
364 |
+
* Add refund totals
|
365 |
*/
|
366 |
+
function wcdn_add_refunded_order_totals( $total_rows, $order ) {
|
367 |
+
if( wcdn_has_refund( $order ) ) {
|
368 |
+
if( version_compare( WC_VERSION, '2.3.0', '>=' ) ) {
|
369 |
+
$refunded_tax_del = '';
|
370 |
+
$refunded_tax_ins = '';
|
371 |
+
|
372 |
+
// Tax for inclusive prices
|
373 |
+
if ( wc_tax_enabled() && 'incl' == $order->tax_display_cart ) {
|
374 |
+
$tax_del_array = array();
|
375 |
+
$tax_ins_array = array();
|
376 |
+
|
377 |
+
if ( 'itemized' == get_option( 'woocommerce_tax_total_display' ) ) {
|
378 |
+
|
379 |
+
foreach ( $order->get_tax_totals() as $code => $tax ) {
|
380 |
+
$tax_del_array[] = sprintf( '%s %s', $tax->formatted_amount, $tax->label );
|
381 |
+
$tax_ins_array[] = sprintf( '%s %s', wc_price( $tax->amount - $order->get_total_tax_refunded_by_rate_id( $tax->rate_id ), array( 'currency' => $order->get_order_currency() ) ), $tax->label );
|
382 |
+
}
|
383 |
+
|
384 |
+
} else {
|
385 |
+
$tax_del_array[] = sprintf( '%s %s', wc_price( $order->get_total_tax(), array( 'currency' => $order->get_order_currency() ) ), WC()->countries->tax_or_vat() );
|
386 |
+
$tax_ins_array[] = sprintf( '%s %s', wc_price( $order->get_total_tax() - $order->get_total_tax_refunded(), array( 'currency' => $order->get_order_currency() ) ), WC()->countries->tax_or_vat() );
|
387 |
+
}
|
388 |
+
|
389 |
+
if ( ! empty( $tax_del_array ) ) {
|
390 |
+
$refunded_tax_del .= ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_del_array ) );
|
391 |
+
}
|
392 |
+
|
393 |
+
if ( ! empty( $tax_ins_array ) ) {
|
394 |
+
$refunded_tax_ins .= ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_ins_array ) );
|
395 |
+
}
|
396 |
+
}
|
397 |
+
|
398 |
+
// use only the number for new wc versions
|
399 |
+
$order_subtotal = wc_price( $order->get_total(), array( 'currency' => $order->get_order_currency() ) );
|
400 |
+
} else {
|
401 |
+
$refunded_tax_del = '';
|
402 |
+
$refunded_tax_ins = '';
|
403 |
+
|
404 |
+
// use the normal total for older wc versions
|
405 |
+
$order_subtotal = $total_rows['order_total']['value'];
|
406 |
+
}
|
407 |
+
|
408 |
+
// Add refunded totals row
|
409 |
+
$total_rows['wcdn_refunded_total'] = array(
|
410 |
+
'label' => __( 'Refund', 'woocommerce-delivery-notes' ),
|
411 |
+
'value' => wc_price( -$order->get_total_refunded(), array( 'currency' => $order->get_order_currency() ) )
|
412 |
+
);
|
413 |
+
|
414 |
+
// Add new order totals row
|
415 |
+
$total_rows['wcdn_order_total'] = array(
|
416 |
+
'label' => $total_rows['order_total']['label'],
|
417 |
+
'value' => wc_price( $order->get_total() - $order->get_total_refunded(), array( 'currency' => $order->get_order_currency() ) ) . $refunded_tax_ins
|
418 |
+
);
|
419 |
+
|
420 |
+
// Edit the original order total row
|
421 |
+
$total_rows['order_total'] = array(
|
422 |
+
'label' => __( 'Order Subtotal', 'woocommerce-delivery-notes' ),
|
423 |
+
'value' => $order_subtotal
|
424 |
+
);
|
425 |
+
}
|
426 |
+
|
427 |
+
return $total_rows;
|
428 |
+
}
|
429 |
+
|
430 |
+
/**
|
431 |
+
* Remove the semicolon from the totals
|
432 |
+
*/
|
433 |
+
function wcdn_remove_semicolon_from_totals( $total_rows, $order ) {
|
434 |
foreach( $total_rows as $key => $row ) {
|
435 |
$label = $row['label'];
|
436 |
$colon = strrpos( $label, ':' );
|
442 |
return $total_rows;
|
443 |
}
|
444 |
|
445 |
+
/**
|
446 |
+
* Remove the payment method text from the totals
|
447 |
+
*/
|
448 |
+
function wcdn_remove_payment_method_from_totals( $total_rows, $order ) {
|
449 |
+
unset($total_rows['payment_method']);
|
450 |
+
return $total_rows;
|
451 |
+
}
|
452 |
+
|
453 |
/**
|
454 |
* Return customer notes
|
455 |
*/
|
456 |
function wcdn_get_customer_notes( $order ) {
|
457 |
global $wcdn;
|
458 |
+
return stripslashes( wpautop( wptexturize( $order->customer_note ) ) );
|
459 |
}
|
460 |
|
461 |
/**
|
483 |
*/
|
484 |
function wcdn_get_personal_notes() {
|
485 |
global $wcdn;
|
486 |
+
return stripslashes( wpautop( wptexturize( get_option( 'wcdn_personal_notes' ) ) ) );
|
487 |
}
|
488 |
|
489 |
/**
|
499 |
*/
|
500 |
function wcdn_get_policies_conditions() {
|
501 |
global $wcdn;
|
502 |
+
return stripslashes( wpautop( wptexturize( get_option( 'wcdn_policies_conditions' ) ) ) );
|
503 |
}
|
504 |
|
505 |
/**
|
515 |
*/
|
516 |
function wcdn_get_imprint() {
|
517 |
global $wcdn;
|
518 |
+
return stripslashes( wpautop( wptexturize( get_option( 'wcdn_footer_imprint' ) ) ) );
|
519 |
}
|
520 |
|
521 |
/**
|
includes/wcdn-template-hooks.php
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/**
|
4 |
* Header
|
5 |
*/
|
@@ -14,7 +21,6 @@ add_action( 'wcdn_before_page', 'wcdn_navigation' );
|
|
14 |
/**
|
15 |
* Content
|
16 |
*/
|
17 |
-
|
18 |
add_filter( 'wcdn_order_item_fields', 'wcdn_additional_product_fields', 10, 3);
|
19 |
-
|
20 |
?>
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Exit if accessed directly
|
5 |
+
*/
|
6 |
+
if ( !defined( 'ABSPATH' ) ) {
|
7 |
+
exit;
|
8 |
+
}
|
9 |
+
|
10 |
/**
|
11 |
* Header
|
12 |
*/
|
21 |
/**
|
22 |
* Content
|
23 |
*/
|
24 |
+
add_action( 'wcdn_loop_content', 'wcdn_content', 10, 2 );
|
25 |
add_filter( 'wcdn_order_item_fields', 'wcdn_additional_product_fields', 10, 3);
|
|
|
26 |
?>
|
js/admin.js
CHANGED
@@ -7,13 +7,13 @@ jQuery(document).ready(function($) {
|
|
7 |
// Button on list and edit screen
|
8 |
$('.print-preview-button').printLink();
|
9 |
$('.print-preview-button').on('printLinkInit', function(event) {
|
10 |
-
$(this).parent().find('.print-preview-loading').
|
11 |
});
|
12 |
$('.print-preview-button').on('printLinkComplete', function(event) {
|
13 |
-
$('.print-preview-loading').
|
14 |
});
|
15 |
$('.print-preview-button').on('printLinkError', function(event) {
|
16 |
-
$('.print-preview-loading').
|
17 |
tb_show('', $(this).attr('href') + '&TB_iframe=true&width=800&height=500');
|
18 |
});
|
19 |
|
@@ -35,7 +35,7 @@ jQuery(document).ready(function($) {
|
|
35 |
var media_modal;
|
36 |
|
37 |
// Button to open the media uploader
|
38 |
-
$('
|
39 |
event.preventDefault();
|
40 |
|
41 |
// If the modal already exists, reopen it.
|
@@ -46,9 +46,9 @@ jQuery(document).ready(function($) {
|
|
46 |
|
47 |
// Create the modal.
|
48 |
media_modal = wp.media.frames.media_modal = wp.media({
|
49 |
-
title: $('
|
50 |
button: {
|
51 |
-
text: $('
|
52 |
},
|
53 |
multiple: false
|
54 |
});
|
@@ -67,7 +67,7 @@ jQuery(document).ready(function($) {
|
|
67 |
});
|
68 |
|
69 |
// Button to remove the media
|
70 |
-
$('
|
71 |
event.preventDefault();
|
72 |
removeImage();
|
73 |
});
|
@@ -75,20 +75,21 @@ jQuery(document).ready(function($) {
|
|
75 |
// add media
|
76 |
function addImage(id) {
|
77 |
removeImage();
|
78 |
-
$('
|
79 |
|
80 |
// load the image
|
81 |
var data = {
|
82 |
attachment_id: id,
|
83 |
-
action: '
|
|
|
84 |
}
|
85 |
|
86 |
$.post(ajaxurl, data, function(response) {
|
87 |
-
$('
|
88 |
-
$('
|
89 |
-
$('
|
90 |
-
$('
|
91 |
-
$('
|
92 |
}).error(function() {
|
93 |
removeImage();
|
94 |
});
|
@@ -97,18 +98,57 @@ jQuery(document).ready(function($) {
|
|
97 |
|
98 |
// remove media
|
99 |
function removeImage() {
|
100 |
-
$('
|
101 |
-
$('
|
102 |
-
$('
|
103 |
-
$('
|
104 |
-
$('
|
105 |
}
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
// Toggle invoice number fields
|
108 |
$('#create-invoice-number').on('change', function(event) {
|
109 |
$('.invoice-number-row').toggle();
|
110 |
event.preventDefault();
|
111 |
});
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
});
|
114 |
|
7 |
// Button on list and edit screen
|
8 |
$('.print-preview-button').printLink();
|
9 |
$('.print-preview-button').on('printLinkInit', function(event) {
|
10 |
+
$(this).parent().find('.print-preview-loading').addClass('is-active');
|
11 |
});
|
12 |
$('.print-preview-button').on('printLinkComplete', function(event) {
|
13 |
+
$('.print-preview-loading').removeClass('is-active');
|
14 |
});
|
15 |
$('.print-preview-button').on('printLinkError', function(event) {
|
16 |
+
$('.print-preview-loading').removeClass('is-active');
|
17 |
tb_show('', $(this).attr('href') + '&TB_iframe=true&width=800&height=500');
|
18 |
});
|
19 |
|
35 |
var media_modal;
|
36 |
|
37 |
// Button to open the media uploader
|
38 |
+
$('.wcdn-image-select-add-button, .wcdn-image-select-attachment').on('click', function(event) {
|
39 |
event.preventDefault();
|
40 |
|
41 |
// If the modal already exists, reopen it.
|
46 |
|
47 |
// Create the modal.
|
48 |
media_modal = wp.media.frames.media_modal = wp.media({
|
49 |
+
title: $('.wcdn-image-select-add-button').data( 'uploader-title' ),
|
50 |
button: {
|
51 |
+
text: $('.wcdn-image-select-add-button').data( 'uploader-button-title' ),
|
52 |
},
|
53 |
multiple: false
|
54 |
});
|
67 |
});
|
68 |
|
69 |
// Button to remove the media
|
70 |
+
$('.wcdn-image-select-remove-button').on('click', function(event) {
|
71 |
event.preventDefault();
|
72 |
removeImage();
|
73 |
});
|
75 |
// add media
|
76 |
function addImage(id) {
|
77 |
removeImage();
|
78 |
+
$('.wcdn-image-select-spinner').addClass('is-active');
|
79 |
|
80 |
// load the image
|
81 |
var data = {
|
82 |
attachment_id: id,
|
83 |
+
action: 'wcdn_settings_load_image',
|
84 |
+
nonce: $('.submit #_wpnonce').val()
|
85 |
}
|
86 |
|
87 |
$.post(ajaxurl, data, function(response) {
|
88 |
+
$('.wcdn-image-select-image-id').val(data.attachment_id);
|
89 |
+
$('.wcdn-image-select-attachment .thumbnail').html(response);
|
90 |
+
$('.wcdn-image-select-spinner').removeClass('is-active');
|
91 |
+
$('.wcdn-image-select-add-button').addClass('hidden');
|
92 |
+
$('.wcdn-image-select-remove-button').removeClass('hidden');
|
93 |
}).error(function() {
|
94 |
removeImage();
|
95 |
});
|
98 |
|
99 |
// remove media
|
100 |
function removeImage() {
|
101 |
+
$('.wcdn-image-select-image-id').val('');
|
102 |
+
$('.wcdn-image-select-attachment .thumbnail').empty();
|
103 |
+
$('.wcdn-image-select-spinner').removeClass('is-active');
|
104 |
+
$('.wcdn-image-select-add-button').removeClass('hidden');
|
105 |
+
$('.wcdn-image-select-remove-button').addClass('hidden');
|
106 |
}
|
107 |
|
108 |
+
$('input#woocommerce_demo_store').change(function() {
|
109 |
+
if ($(this).is(':checked')) {
|
110 |
+
$('#woocommerce_demo_store_notice').closest('tr').show();
|
111 |
+
} else {
|
112 |
+
$('#woocommerce_demo_store_notice').closest('tr').hide();
|
113 |
+
}
|
114 |
+
}).change();
|
115 |
+
|
116 |
+
// Toggle invoice number fields
|
117 |
+
$('input#wcdn_create_invoice_number').on('change', function(event) {
|
118 |
+
if ($(this).is(':checked')) {
|
119 |
+
$('.create-invoice').closest('tr').removeClass('hidden');
|
120 |
+
} else {
|
121 |
+
$('.create-invoice').closest('tr').addClass('hidden');
|
122 |
+
}
|
123 |
+
}).trigger('change');
|
124 |
+
/*
|
125 |
// Toggle invoice number fields
|
126 |
$('#create-invoice-number').on('change', function(event) {
|
127 |
$('.invoice-number-row').toggle();
|
128 |
event.preventDefault();
|
129 |
});
|
130 |
|
131 |
+
// Button to reset the invoice counter
|
132 |
+
$('#reset-invoice-counter').on('click', function(event) {
|
133 |
+
event.preventDefault();
|
134 |
+
|
135 |
+
// Text strings are pulled from wp_localize_script
|
136 |
+
var reset = window.confirm(WCDNText.resetCounter);
|
137 |
+
|
138 |
+
// Reset the counter
|
139 |
+
if(reset) {
|
140 |
+
var data = {
|
141 |
+
action: 'wcdn_reset_counter',
|
142 |
+
reset: true,
|
143 |
+
nonce: $('#mainform #settings-nonce').val()
|
144 |
+
}
|
145 |
+
|
146 |
+
$.post(ajaxurl, data, function(response) {
|
147 |
+
$('#invoice-counter-value').text('0');
|
148 |
+
});
|
149 |
+
}
|
150 |
+
});
|
151 |
+
*/
|
152 |
+
|
153 |
});
|
154 |
|
js/theme.js
CHANGED
@@ -4,5 +4,8 @@ jQuery(document).ready(function($) {
|
|
4 |
* Print button
|
5 |
*/
|
6 |
$('.woocommerce .button.print').printLink();
|
|
|
|
|
|
|
7 |
|
8 |
});
|
4 |
* Print button
|
5 |
*/
|
6 |
$('.woocommerce .button.print').printLink();
|
7 |
+
$('.woocommerce .button.print').on('printLinkError', function(event) {
|
8 |
+
window.open(event.currentTarget.href);
|
9 |
+
});
|
10 |
|
11 |
});
|
languages/woocommerce-delivery-notes-cs_CZ.mo
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Ţ• k t • Ě !
|
2 |
+
* / 8 z h r ă V
|
3 |
+
f
|
4 |
+
{
|
5 |
+
Ť
|
6 |
+
ź
|
7 |
+
ł
|
8 |
+
|
9 |
+
Ę
|
10 |
+
|
11 |
+
Ř
|
12 |
+
ć
|
13 |
+
ý
|
14 |
+
N $ s } ™ © ą Ŕ Ř [ ó O
|
15 |
+
W
|
16 |
+
f
|
17 |
+
}
|
18 |
+
“
|
19 |
+
¨
|
20 |
+
ľ
|
21 |
+
Đ
|
22 |
+
á
|
23 |
+
đ
|
24 |
+
|
25 |
+
= " ^ $ , ¦ 4 Ó }
|
26 |
+
† ‘ • › ¶
|
27 |
+
Ľ Ç Ô ä ó $ 8
|
28 |
+
M [
|
29 |
+
j x „ ‘
|
30 |
+
Ą ł Â Ě Ý ä ě ő ý ) 0 < N n s ‹ ¬ µ ľ * Ď + ú " & , I v Z € y Ű
|
31 |
+
U … c 1 é 2 N T Z 4 m L ˘ É ď - ą Ă ç «
|
32 |
+
· 5 Ĺ S ű P O ´ Č Ú î & ; \ q G ’
|
33 |
+
Ú ĺ ě + 4 N P ] ź ý ( B ` z Ź
|
34 |
+
Ł ± Â Ę 3 Ţ 6 3 I 1 } D Ż ? ô Š 4 ż Ë
|
35 |
+
Ď ' Ú 4 N _ k
|
36 |
+
w … Š Ź Ż Ď â ő ! ! 3! O! d! y! Š! ¨! ®!
|
37 |
+
¶! Á! Ë! á! ë! "
|
38 |
+
" " , 2" _" d" # ‚"
|
39 |
+
¦"
|
40 |
+
´" ż" D Ó" 9 # / R# ) ‚# ¬# ` ´# p $ †$ „ ›$ . % ( O% x% % „% ! ˘% \ Ä& Î !' - đ' # U T Q E V - A c 5 , d > ) ? Y 2 D ` % J 0 f a \ * 1 K ( @ H N [ ^ F g k M = 3 6 9 S ' G e h / $ j ; ] R _ Z I L . C &
|
41 |
+
O
|
42 |
+
! : 4 8 P W b B i < + " X 7 %s Files (Includes %s) A company/shop logo representing your business. Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more branded. Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.). Billing Address Company/Shop Address Company/Shop Logo Company/Shop Name Complimentary Close Create invoice numbers Customer Note Delivery Note Delivery Note created. Delivery Notes Delivery Notes created. Do you really want to reset the counter to zero? This process can't be undone. Download: Email Enable Delivery Notes Enable Invoices Enable Receipts Footer Go to the settings page Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations. Install and activate the free <a href="%s">WooCommerce Sequential Order Numbers</a> Plugin. Invoice Invoice Number Invoice Number Counter Invoice Number Prefix Invoice Number Start Invoice Number Suffix Invoice Numbering Invoice created. Invoice date: Invoice number: Invoices Invoices created. Leave blank to not add a prefix. Leave blank to not add a suffix. Leave blank to not print a footer. Leave blank to not print an address. Leave blank to not print any personal notes. Leave blank to not print any policies or conditions. Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a Logo is set. My Account N/A Note: Open print view in browser Order Order Date Order Number Order Numbering Order Printing Order Subtotal Orders Payment Method Price Print Print Delivery Note Print Delivery Notes Print Invoice Print Invoices Print Options Print Order Print Orders Print Page Endpoint Print Receipt Print Receipts Print now Print your order Print: Product Quantity Receipt Receipt created. Receipts Receipts created. Refund Remove Logo Reset Counter … Returns Policy, Conditions, etc SKU: Sequential Order Number Sequential numbering is enabled. Set Logo Settings Shipping Address Show print button on the "View Order" page Show print buttons on the "My Account" page Show print link in customer emails Start the numbering at the specified number. Telephone The endpoint is appended to the accounts page URL to print the order. It should be unique. The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/shop name. Theme Options This includes the emails for a new, processing and completed order. On top of that the customer invoice email also includes the link. This text will be appended to the invoice number. This text will be prepended to the invoice number. Total Types Use only integers. When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch. With the FAQ in the readme file you can learn how to customize the template. You can preview the <a href="%1$s" target="%4$s" class="%5$s">invoice</a>, <a href="%2$s" target="%4$s" class="%5$s">delivery note</a> or <a href="%3$s" target="%4$s" class="%5$s">receipt</a> template. Your company/shop name for the Delivery Note. Project-Id-Version: WooCommerce Print Invoice & Delivery Note
|
43 |
+
Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/
|
44 |
+
POT-Creation-Date: 2015-01-31 15:44+0100
|
45 |
+
PO-Revision-Date: 2015-07-16 01:01+0100
|
46 |
+
Last-Translator: Tomáš Kůrka <tomas.kurka.film@gmail.com>
|
47 |
+
Language-Team:
|
48 |
+
Language: en
|
49 |
+
MIME-Version: 1.0
|
50 |
+
Content-Type: text/plain; charset=UTF-8
|
51 |
+
Content-Transfer-Encoding: 8bit
|
52 |
+
Plural-Forms: nplurals=2; plural=n != 1;
|
53 |
+
X-Generator: Poedit 1.7.5
|
54 |
+
X-Poedit-SourceCharset: UTF-8
|
55 |
+
X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__
|
56 |
+
X-Poedit-Basepath: .
|
57 |
+
X-Textdomain-Support: yes
|
58 |
+
X-Poedit-SearchPath-0: ..
|
59 |
+
%s souborĹŻ (Zahrnuje %s) Logo spoleÄŤnosti reprezentujĂcĂ vaše podnikánĂ. PĹ™idejte nÄ›jakĂ˝ obsah zápatĂ, jako napĹ™Ăklad e-mail, telefon nebo copyright. PĹ™idejte nÄ›jakĂ© osobnĂ poznámy, jak napĹ™Ăklad podÄ›kovánĂ nebo pozdrav. FakturaÄŤnĂ adresa Adresa spoleÄŤnosti Logo spoleÄŤnosti Název spoleÄŤnosti ZávÄ›reÄŤná fráze vytvoĹ™it ÄŤĂsla faktur Poznámka Podrobnosti dodávky Podrobnosti dodávky vytvoĹ™eny. Podrobnosti dodávky Podrobnosti dodávky vytvoĹ™eny. Chcete opravu nastavit poÄŤĂtadlo na nulu? Tento proces nejde vrátit. StaĹľenĂ: E-mail Povolit Podrobnosti dodávky Povolit Faktury Povolit účtenky ZápatĂ JĂt na stránku nastavenĂ Zde je mĂsto pro pĹ™idánĂ ReklamaÄŤnĂho řádu, obchodnĂch podmĂnek atd. Nainstalujte a aktivujte zdarma plugin <a href="%s">WooCommerce Sequential Order Numbers</a>. Faktura ÄŚĂslo Faktury PoÄŤĂtadlo Faktur PĹ™edpona ÄŤĂsla Faktur. PočáteÄŤnĂ ÄŤĂslo Faktury PĹ™Ăpona ÄŤĂsla faktury ÄŚĂslovánĂ faktur Faktura vytvoĹ™ena. Datum faktury ÄŚĂslo faktury: Faktury Faktura vytvoĹ™ena. Nechte prázdnĂ©, pokud nechcete pĹ™idat pĹ™Ăponu. Nechte prázdnĂ©, pokud nechcete pĹ™idávat pĹ™Ăponu. Nechte prázdnĂ©, pokud nechcete tisknout zápatĂ. Nechte prázdnĂ©, pokud nechcete tisknout adresu. Nechte práznĂ©, pokud nechcete tisknout žádnĂ© osobnĂ poznámky. Nechte prázdnĂ©, pokud nechcete tisknout pravidla a podmĂnky. Nechte prázdnĂ© pro pouĹľitĂ defalutnĂho názvu stránky nastavenĂ©ho ve Wordpressu. JmĂ©no nebude pouĹľitĂ©, pokud je nastavenĂ© logo. MĹŻj účet N/A Poznámka: OtevĹ™Ăt náhled tisku v prohlĂĹľeÄŤi Objednávka Datum objednávky ÄŚĂslo objednávky ÄŚĂslovánĂ objednávek Tisk Objednávky MezisouÄŤet Objednávky Metoda platby Cena Tisk Vytisknout Podrobnosti dodávky Vytisknout Podrobnosti dodávky Vytisknout Fakturu Vytisknout Faktury MoĹľnosti tisku Vytisknout Objednávku Vytisknout objednávky KoncovĂ˝ bod stránky tisku Vytisknout Účtenku Vytisknout Účtenky Vytisknout nynĂ Vytisknout vašà objednávku Tisk: Produkt MnoĹľstvà Účtenka Účtenka vytvoĹ™ena. Účtenky Účtenky vytvoĹ™eny. Vráceno Odstranit logo Vynulovat poÄŤĂtadlo... ReklamaÄŤnà řád, obchodnĂ podmĂnky atd. SKU: PostupnĂ© ÄŤĂslo Objednávky PostupnĂ© ÄŤĂslovánĂ je zapnuto. Nastavit logo NastavenĂ DoruÄŤovacĂ adresa Ukázat tlaÄŤĂtko vytištÄ›nĂ na stránce "ZobrazenĂ objednávky" Ukázat tlaÄŤĂtko vytištÄ›nĂ na stránce "MĹŻj účet" Zobrazit odkaz k tisku v emailech zákaznĂkĹŻm ZaÄŤĂt ÄŤĂslovánĂ zvolenĂ˝m ÄŤĂslem. Telefon KoncovĂ˝ bod je pĹ™ipojen k adrese účtu pro vytištÄ›nĂ objednávky. MÄ›l by bĂ˝t unikátnĂ. PoštovnĂ adresa spoleÄŤnosti a takĂ© e-mail nebo telefon, kterĂ˝ bude vytištÄ›n hned za názvem spoleÄŤnosti. NastavenĂ pĹ™edlohy Toto zahrnuje e-maily pro novĂ©, zpracovávanĂ© a dokonÄŤenĂ© objednávky. Odkaz bude takĂ© v hornà části emailu pro zákaznĂka. Tento textu bude pĹ™ipojen za ÄŤĂslo faktury. Tento textu bude pĹ™ed ÄŤĂslem faktury. Celkem Typy PoĹľĂvejte pouze ÄŤĂslovky. Pokud bude obrázek vytištÄ›n, hustota pixelĹŻ bude automaticky osmktrát vÄ›tšĂ, neĹľ originál. To znamená, Ĺľe jeden palec bude odpovĂdat asi 288 pixelĹŻm na obrazovce. PĹ™Ăklad: Obrázek o šĂĹ™ce 576 pixelĹŻ a výšce 288 pixelĹŻ bude vytištÄ›n ve velikosti okolo 2 x 1 palec. V souboru readme naleznete FAQ, ze kterĂ˝ch se mĹŻĹľete nauÄŤit, jak pĹ™izpĹŻsobit šablonu. MĹŻĹľete zobrazit šablonu <a href="%1$s" target="%4$s" class="%5$s">invoice</a>, <a href="%2$s" target="%4$s" class="%5$s">podrobnosti dodávky</a> or <a href="%3$s" target="%4$s" class="%5$s">receipt</a>. Název spoleÄŤnosti pro Podrobnosti dodávky.
|
languages/woocommerce-delivery-notes-cs_CZ.po
ADDED
@@ -0,0 +1,539 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
+
msgid ""
|
9 |
+
msgstr ""
|
10 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2015-01-31 15:44+0100\n"
|
13 |
+
"PO-Revision-Date: 2015-07-16 01:00+0100\n"
|
14 |
+
"Last-Translator: Tomáš Kůrka <tomas.kurka.film@gmail.com>\n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"Language: en\n"
|
17 |
+
"MIME-Version: 1.0\n"
|
18 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
+
"Content-Transfer-Encoding: 8bit\n"
|
20 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
+
"X-Generator: Poedit 1.7.5\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
24 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
25 |
+
"X-Poedit-Basepath: .\n"
|
26 |
+
"X-Textdomain-Support: yes\n"
|
27 |
+
"X-Poedit-SearchPath-0: ..\n"
|
28 |
+
|
29 |
+
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-print.php:41
|
31 |
+
msgid "Invoice"
|
32 |
+
msgstr "Faktura"
|
33 |
+
|
34 |
+
#: ../includes/class-wcdn-print.php:42
|
35 |
+
msgid "Invoices"
|
36 |
+
msgstr "Faktury"
|
37 |
+
|
38 |
+
# @ woocommerce-delivery-notes
|
39 |
+
#: ../includes/class-wcdn-print.php:43
|
40 |
+
msgid "Print Invoice"
|
41 |
+
msgstr "Vytisknout Fakturu"
|
42 |
+
|
43 |
+
#: ../includes/class-wcdn-print.php:44
|
44 |
+
msgid "Print Invoices"
|
45 |
+
msgstr "Vytisknout Faktury"
|
46 |
+
|
47 |
+
# @ woocommerce-delivery-notes
|
48 |
+
#: ../includes/class-wcdn-print.php:45
|
49 |
+
msgid "Invoice created."
|
50 |
+
msgstr "Faktura vytvořena."
|
51 |
+
|
52 |
+
#: ../includes/class-wcdn-print.php:46
|
53 |
+
msgid "Invoices created."
|
54 |
+
msgstr "Faktura vytvořena."
|
55 |
+
|
56 |
+
#: ../includes/class-wcdn-print.php:47
|
57 |
+
msgid "Enable Invoices"
|
58 |
+
msgstr "Povolit Faktury"
|
59 |
+
|
60 |
+
# @ woocommerce-delivery-notes
|
61 |
+
#: ../includes/class-wcdn-print.php:53
|
62 |
+
msgid "Delivery Note"
|
63 |
+
msgstr "Podrobnosti dodávky"
|
64 |
+
|
65 |
+
#: ../includes/class-wcdn-print.php:54
|
66 |
+
msgid "Delivery Notes"
|
67 |
+
msgstr "Podrobnosti dodávky"
|
68 |
+
|
69 |
+
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-print.php:55
|
71 |
+
msgid "Print Delivery Note"
|
72 |
+
msgstr "Vytisknout Podrobnosti dodávky"
|
73 |
+
|
74 |
+
#: ../includes/class-wcdn-print.php:56
|
75 |
+
msgid "Print Delivery Notes"
|
76 |
+
msgstr "Vytisknout Podrobnosti dodávky"
|
77 |
+
|
78 |
+
#: ../includes/class-wcdn-print.php:57
|
79 |
+
msgid "Delivery Note created."
|
80 |
+
msgstr "Podrobnosti dodávky vytvořeny."
|
81 |
+
|
82 |
+
#: ../includes/class-wcdn-print.php:58
|
83 |
+
msgid "Delivery Notes created."
|
84 |
+
msgstr "Podrobnosti dodávky vytvořeny."
|
85 |
+
|
86 |
+
#: ../includes/class-wcdn-print.php:59
|
87 |
+
msgid "Enable Delivery Notes"
|
88 |
+
msgstr "Povolit Podrobnosti dodávky"
|
89 |
+
|
90 |
+
#: ../includes/class-wcdn-print.php:65
|
91 |
+
msgid "Receipt"
|
92 |
+
msgstr "Účtenka"
|
93 |
+
|
94 |
+
#: ../includes/class-wcdn-print.php:66
|
95 |
+
msgid "Receipts"
|
96 |
+
msgstr "Účtenky"
|
97 |
+
|
98 |
+
#: ../includes/class-wcdn-print.php:67
|
99 |
+
msgid "Print Receipt"
|
100 |
+
msgstr "Vytisknout Účtenku"
|
101 |
+
|
102 |
+
#: ../includes/class-wcdn-print.php:68
|
103 |
+
msgid "Print Receipts"
|
104 |
+
msgstr "Vytisknout Účtenky"
|
105 |
+
|
106 |
+
#: ../includes/class-wcdn-print.php:69
|
107 |
+
msgid "Receipt created."
|
108 |
+
msgstr "Účtenka vytvořena."
|
109 |
+
|
110 |
+
#: ../includes/class-wcdn-print.php:70
|
111 |
+
msgid "Receipts created."
|
112 |
+
msgstr "Účtenky vytvořeny."
|
113 |
+
|
114 |
+
#: ../includes/class-wcdn-print.php:71
|
115 |
+
msgid "Enable Receipts"
|
116 |
+
msgstr "Povolit účtenky"
|
117 |
+
|
118 |
+
# @ woocommerce-delivery-notes
|
119 |
+
#: ../includes/class-wcdn-print.php:80
|
120 |
+
msgid "Order"
|
121 |
+
msgstr "Objednávka"
|
122 |
+
|
123 |
+
#: ../includes/class-wcdn-print.php:81
|
124 |
+
msgid "Orders"
|
125 |
+
msgstr "Objednávky"
|
126 |
+
|
127 |
+
# @ woocommerce-delivery-notes
|
128 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
129 |
+
msgid "Print Order"
|
130 |
+
msgstr "Vytisknout Objednávku"
|
131 |
+
|
132 |
+
#: ../includes/class-wcdn-print.php:83
|
133 |
+
msgid "Print Orders"
|
134 |
+
msgstr "Vytisknout objednávky"
|
135 |
+
|
136 |
+
#: ../includes/class-wcdn-settings.php:72
|
137 |
+
msgid "Do you really want to reset the counter to zero? This process can't be undone."
|
138 |
+
msgstr "Chcete opravu nastavit počítadlo na nulu? Tento proces nejde vrátit."
|
139 |
+
|
140 |
+
# @ woocommerce-delivery-notes
|
141 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
|
142 |
+
#: ../includes/wcdn-template-functions.php:127
|
143 |
+
msgid "Print"
|
144 |
+
msgstr "Tisk"
|
145 |
+
|
146 |
+
#: ../includes/class-wcdn-settings.php:176
|
147 |
+
#, php-format
|
148 |
+
msgid ""
|
149 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
150 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
151 |
+
msgstr ""
|
152 |
+
"Můžete zobrazit šablonu <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
|
153 |
+
"\"%4$s\" class=\"%5$s\">podrobnosti dodávky</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a>."
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:177
|
157 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
158 |
+
msgstr "V souboru readme naleznete FAQ, ze kterých se můžete naučit, jak přizpůsobit šablonu."
|
159 |
+
|
160 |
+
# @ woocommerce-delivery-notes
|
161 |
+
#: ../includes/class-wcdn-settings.php:188
|
162 |
+
msgid "Company/Shop Logo"
|
163 |
+
msgstr "Logo společnosti"
|
164 |
+
|
165 |
+
# @ woocommerce-delivery-notes
|
166 |
+
#: ../includes/class-wcdn-settings.php:194
|
167 |
+
msgid "Remove Logo"
|
168 |
+
msgstr "Odstranit logo"
|
169 |
+
|
170 |
+
# @ woocommerce-delivery-notes
|
171 |
+
#: ../includes/class-wcdn-settings.php:195
|
172 |
+
msgid "Set Logo"
|
173 |
+
msgstr "Nastavit logo"
|
174 |
+
|
175 |
+
# @ woocommerce-delivery-notes
|
176 |
+
#: ../includes/class-wcdn-settings.php:199
|
177 |
+
msgid "A company/shop logo representing your business."
|
178 |
+
msgstr "Logo společnosti reprezentující vaše podnikání."
|
179 |
+
|
180 |
+
# @ woocommerce-delivery-notes
|
181 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
182 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
183 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
184 |
+
#: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
|
185 |
+
#: ../includes/class-wcdn-settings.php:412
|
186 |
+
msgid "Note:"
|
187 |
+
msgstr "Poznámka:"
|
188 |
+
|
189 |
+
# @ woocommerce-delivery-notes
|
190 |
+
#: ../includes/class-wcdn-settings.php:201
|
191 |
+
msgid ""
|
192 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
193 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
194 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
195 |
+
msgstr ""
|
196 |
+
"Pokud bude obrázek vytištěn, hustota pixelů bude automaticky osmktrát větší, než originál. To znamená, že jeden "
|
197 |
+
"palec bude odpovídat asi 288 pixelům na obrazovce. Příklad: Obrázek o šířce 576 pixelů a výšce 288 pixelů bude "
|
198 |
+
"vytištěn ve velikosti okolo 2 x 1 palec."
|
199 |
+
|
200 |
+
# @ woocommerce-delivery-notes
|
201 |
+
#: ../includes/class-wcdn-settings.php:207
|
202 |
+
msgid "Company/Shop Name"
|
203 |
+
msgstr "Název společnosti"
|
204 |
+
|
205 |
+
# @ woocommerce-delivery-notes
|
206 |
+
#: ../includes/class-wcdn-settings.php:212
|
207 |
+
msgid "Your company/shop name for the Delivery Note."
|
208 |
+
msgstr "Název společnosti pro Podrobnosti dodávky."
|
209 |
+
|
210 |
+
# @ woocommerce-delivery-notes
|
211 |
+
#: ../includes/class-wcdn-settings.php:214
|
212 |
+
msgid ""
|
213 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
214 |
+
"Logo is set."
|
215 |
+
msgstr ""
|
216 |
+
"Nechte prázdné pro použití defalutního názvu stránky nastaveného ve Wordpressu. Jméno nebude použité, pokud je "
|
217 |
+
"nastavené logo."
|
218 |
+
|
219 |
+
# @ woocommerce-delivery-notes
|
220 |
+
#: ../includes/class-wcdn-settings.php:220
|
221 |
+
msgid "Company/Shop Address"
|
222 |
+
msgstr "Adresa společnosti"
|
223 |
+
|
224 |
+
# @ woocommerce-delivery-notes
|
225 |
+
#: ../includes/class-wcdn-settings.php:225
|
226 |
+
msgid ""
|
227 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
228 |
+
"shop name."
|
229 |
+
msgstr "Poštovní adresa společnosti a také e-mail nebo telefon, který bude vytištěn hned za názvem společnosti."
|
230 |
+
|
231 |
+
# @ woocommerce-delivery-notes
|
232 |
+
#: ../includes/class-wcdn-settings.php:227
|
233 |
+
msgid "Leave blank to not print an address."
|
234 |
+
msgstr "Nechte prázdné, pokud nechcete tisknout adresu."
|
235 |
+
|
236 |
+
#: ../includes/class-wcdn-settings.php:233
|
237 |
+
msgid "Complimentary Close"
|
238 |
+
msgstr "Závěrečná fráze"
|
239 |
+
|
240 |
+
# @ woocommerce-delivery-notes
|
241 |
+
#: ../includes/class-wcdn-settings.php:238
|
242 |
+
msgid ""
|
243 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
244 |
+
msgstr "Přidejte nějaké osobní poznámy, jak například poděkování nebo pozdrav."
|
245 |
+
|
246 |
+
# @ woocommerce-delivery-notes
|
247 |
+
#: ../includes/class-wcdn-settings.php:240
|
248 |
+
msgid "Leave blank to not print any personal notes."
|
249 |
+
msgstr "Nechte prázné, pokud nechcete tisknout žádné osobní poznámky."
|
250 |
+
|
251 |
+
# @ woocommerce-delivery-notes
|
252 |
+
#: ../includes/class-wcdn-settings.php:246
|
253 |
+
msgid "Returns Policy, Conditions, etc"
|
254 |
+
msgstr "Reklamační řád, obchodní podmínky atd."
|
255 |
+
|
256 |
+
# @ woocommerce-delivery-notes
|
257 |
+
#: ../includes/class-wcdn-settings.php:251
|
258 |
+
msgid ""
|
259 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
260 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
261 |
+
"required info in accordance with the statutory regulations."
|
262 |
+
msgstr "Zde je místo pro přidání Reklamačního řádu, obchodních podmínek atd."
|
263 |
+
|
264 |
+
# @ woocommerce-delivery-notes
|
265 |
+
#: ../includes/class-wcdn-settings.php:253
|
266 |
+
msgid "Leave blank to not print any policies or conditions."
|
267 |
+
msgstr "Nechte prázdné, pokud nechcete tisknout pravidla a podmínky."
|
268 |
+
|
269 |
+
# @ woocommerce-delivery-notes
|
270 |
+
#: ../includes/class-wcdn-settings.php:259
|
271 |
+
msgid "Footer"
|
272 |
+
msgstr "Zápatí"
|
273 |
+
|
274 |
+
# @ woocommerce-delivery-notes
|
275 |
+
#: ../includes/class-wcdn-settings.php:264
|
276 |
+
msgid ""
|
277 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
278 |
+
"branded."
|
279 |
+
msgstr "Přidejte nějaký obsah zápatí, jako například e-mail, telefon nebo copyright."
|
280 |
+
|
281 |
+
# @ woocommerce-delivery-notes
|
282 |
+
#: ../includes/class-wcdn-settings.php:266
|
283 |
+
msgid "Leave blank to not print a footer."
|
284 |
+
msgstr "Nechte prázdné, pokud nechcete tisknout zápatí."
|
285 |
+
|
286 |
+
#: ../includes/class-wcdn-settings.php:273
|
287 |
+
msgid "Print Options"
|
288 |
+
msgstr "Možnosti tisku"
|
289 |
+
|
290 |
+
#: ../includes/class-wcdn-settings.php:278
|
291 |
+
msgid "Types"
|
292 |
+
msgstr "Typy"
|
293 |
+
|
294 |
+
#: ../includes/class-wcdn-settings.php:297
|
295 |
+
msgid "Theme Options"
|
296 |
+
msgstr "Nastavení předlohy"
|
297 |
+
|
298 |
+
# @ woocommerce-delivery-notes
|
299 |
+
#: ../includes/class-wcdn-settings.php:302
|
300 |
+
msgid "Print Page Endpoint"
|
301 |
+
msgstr "Koncový bod stránky tisku"
|
302 |
+
|
303 |
+
# @ woocommerce-delivery-notes
|
304 |
+
#: ../includes/class-wcdn-settings.php:309
|
305 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
306 |
+
msgstr "Koncový bod je připojen k adrese účtu pro vytištění objednávky. Měl by být unikátní."
|
307 |
+
|
308 |
+
#: ../includes/class-wcdn-settings.php:315
|
309 |
+
msgid "My Account"
|
310 |
+
msgstr "Můj účet"
|
311 |
+
|
312 |
+
# @ woocommerce-delivery-notes
|
313 |
+
#: ../includes/class-wcdn-settings.php:322
|
314 |
+
msgid "Show print button on the \"View Order\" page"
|
315 |
+
msgstr "Ukázat tlačítko vytištění na stránce \"Zobrazení objednávky\""
|
316 |
+
|
317 |
+
# @ woocommerce-delivery-notes
|
318 |
+
#: ../includes/class-wcdn-settings.php:329
|
319 |
+
msgid "Show print buttons on the \"My Account\" page"
|
320 |
+
msgstr "Ukázat tlačítko vytištění na stránce \"Můj účet\""
|
321 |
+
|
322 |
+
# @ woocommerce-delivery-notes
|
323 |
+
#: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
|
324 |
+
msgid "Email"
|
325 |
+
msgstr "E-mail"
|
326 |
+
|
327 |
+
#: ../includes/class-wcdn-settings.php:343
|
328 |
+
msgid "Show print link in customer emails"
|
329 |
+
msgstr "Zobrazit odkaz k tisku v emailech zákazníkům"
|
330 |
+
|
331 |
+
#: ../includes/class-wcdn-settings.php:347
|
332 |
+
msgid ""
|
333 |
+
"This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
|
334 |
+
"also includes the link."
|
335 |
+
msgstr ""
|
336 |
+
"Toto zahrnuje e-maily pro nové, zpracovávané a dokončené objednávky. Odkaz bude také v horní části emailu pro "
|
337 |
+
"zákazníka."
|
338 |
+
|
339 |
+
# @ woocommerce-delivery-notes
|
340 |
+
#: ../includes/class-wcdn-settings.php:354
|
341 |
+
msgid "Order Numbering"
|
342 |
+
msgstr "Číslování objednávek"
|
343 |
+
|
344 |
+
#: ../includes/class-wcdn-settings.php:359
|
345 |
+
msgid "Invoice Numbering"
|
346 |
+
msgstr "Číslování faktur"
|
347 |
+
|
348 |
+
#: ../includes/class-wcdn-settings.php:367
|
349 |
+
msgid "Create invoice numbers"
|
350 |
+
msgstr "vytvořit čísla faktur"
|
351 |
+
|
352 |
+
#: ../includes/class-wcdn-settings.php:374
|
353 |
+
msgid "Invoice Number Start"
|
354 |
+
msgstr "Počáteční číslo Faktury"
|
355 |
+
|
356 |
+
#: ../includes/class-wcdn-settings.php:381
|
357 |
+
msgid "Start the numbering at the specified number."
|
358 |
+
msgstr "Začít číslování zvoleným číslem."
|
359 |
+
|
360 |
+
#: ../includes/class-wcdn-settings.php:383
|
361 |
+
msgid "Use only integers."
|
362 |
+
msgstr "Požívejte pouze číslovky."
|
363 |
+
|
364 |
+
#: ../includes/class-wcdn-settings.php:389
|
365 |
+
msgid "Invoice Number Prefix"
|
366 |
+
msgstr "Předpona čísla Faktur."
|
367 |
+
|
368 |
+
#: ../includes/class-wcdn-settings.php:396
|
369 |
+
msgid "This text will be prepended to the invoice number."
|
370 |
+
msgstr "Tento textu bude před číslem faktury."
|
371 |
+
|
372 |
+
#: ../includes/class-wcdn-settings.php:398
|
373 |
+
msgid "Leave blank to not add a prefix."
|
374 |
+
msgstr "Nechte prázdné, pokud nechcete přidat příponu."
|
375 |
+
|
376 |
+
#: ../includes/class-wcdn-settings.php:404
|
377 |
+
msgid "Invoice Number Suffix"
|
378 |
+
msgstr "Přípona čísla faktury"
|
379 |
+
|
380 |
+
#: ../includes/class-wcdn-settings.php:411
|
381 |
+
msgid "This text will be appended to the invoice number."
|
382 |
+
msgstr "Tento textu bude připojen za číslo faktury."
|
383 |
+
|
384 |
+
#: ../includes/class-wcdn-settings.php:413
|
385 |
+
msgid "Leave blank to not add a suffix."
|
386 |
+
msgstr "Nechte prázdné, pokud nechcete přidávat příponu."
|
387 |
+
|
388 |
+
#: ../includes/class-wcdn-settings.php:419
|
389 |
+
msgid "Invoice Number Counter"
|
390 |
+
msgstr "Počítadlo Faktur"
|
391 |
+
|
392 |
+
#: ../includes/class-wcdn-settings.php:428
|
393 |
+
msgid "Reset Counter …"
|
394 |
+
msgstr "Vynulovat počítadlo..."
|
395 |
+
|
396 |
+
#: ../includes/class-wcdn-settings.php:434
|
397 |
+
msgid "Sequential Order Number"
|
398 |
+
msgstr "Postupné číslo Objednávky"
|
399 |
+
|
400 |
+
# @ woocommerce-delivery-notes
|
401 |
+
#: ../includes/class-wcdn-settings.php:439
|
402 |
+
msgid "Sequential numbering is enabled."
|
403 |
+
msgstr "Postupné číslování je zapnuto."
|
404 |
+
|
405 |
+
# @ woocommerce-delivery-notes
|
406 |
+
#: ../includes/class-wcdn-settings.php:441
|
407 |
+
#, php-format
|
408 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
409 |
+
msgstr "Nainstalujte a aktivujte zdarma plugin <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
|
410 |
+
|
411 |
+
#: ../includes/class-wcdn-theme.php:106
|
412 |
+
msgid "Print your order"
|
413 |
+
msgstr "Vytisknout vaší objednávku"
|
414 |
+
|
415 |
+
#: ../includes/class-wcdn-theme.php:112
|
416 |
+
msgid "Print:"
|
417 |
+
msgstr "Tisk:"
|
418 |
+
|
419 |
+
#: ../includes/class-wcdn-theme.php:112
|
420 |
+
msgid "Open print view in browser"
|
421 |
+
msgstr "Otevřít náhled tisku v prohlížeči"
|
422 |
+
|
423 |
+
# @ woocommerce-delivery-notes
|
424 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
425 |
+
msgid "Print now"
|
426 |
+
msgstr "Vytisknout nyní"
|
427 |
+
|
428 |
+
# @ woocommerce-delivery-notes
|
429 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
430 |
+
msgid "Order Printing"
|
431 |
+
msgstr "Tisk Objednávky"
|
432 |
+
|
433 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
434 |
+
msgid "Invoice number: "
|
435 |
+
msgstr "Číslo faktury:"
|
436 |
+
|
437 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
438 |
+
msgid "Invoice date: "
|
439 |
+
msgstr "Datum faktury"
|
440 |
+
|
441 |
+
#: ../includes/wcdn-template-functions.php:232
|
442 |
+
msgid "Invoice Number"
|
443 |
+
msgstr "Číslo Faktury"
|
444 |
+
|
445 |
+
# @ woocommerce-delivery-notes
|
446 |
+
#: ../includes/wcdn-template-functions.php:238
|
447 |
+
msgid "Order Number"
|
448 |
+
msgstr "Číslo objednávky"
|
449 |
+
|
450 |
+
# @ woocommerce-delivery-notes
|
451 |
+
#: ../includes/wcdn-template-functions.php:243
|
452 |
+
msgid "Order Date"
|
453 |
+
msgstr "Datum objednávky"
|
454 |
+
|
455 |
+
# @ woocommerce-delivery-notes
|
456 |
+
#: ../includes/wcdn-template-functions.php:248
|
457 |
+
msgid "Payment Method"
|
458 |
+
msgstr "Metoda platby"
|
459 |
+
|
460 |
+
# @ woocommerce-delivery-notes
|
461 |
+
#: ../includes/wcdn-template-functions.php:261
|
462 |
+
msgid "Telephone"
|
463 |
+
msgstr "Telefon"
|
464 |
+
|
465 |
+
#: ../includes/wcdn-template-functions.php:294
|
466 |
+
msgid "SKU:"
|
467 |
+
msgstr "SKU:"
|
468 |
+
|
469 |
+
#: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
|
470 |
+
#, php-format
|
471 |
+
msgid "(Includes %s)"
|
472 |
+
msgstr "(Zahrnuje %s)"
|
473 |
+
|
474 |
+
#: ../includes/wcdn-template-functions.php:400
|
475 |
+
msgid "Refund"
|
476 |
+
msgstr "Vráceno"
|
477 |
+
|
478 |
+
#: ../includes/wcdn-template-functions.php:412
|
479 |
+
msgid "Order Subtotal"
|
480 |
+
msgstr "Mezisoučet"
|
481 |
+
|
482 |
+
# @ woocommerce-delivery-notes
|
483 |
+
#: ../templates/print-order/print-content.php:28
|
484 |
+
msgid "Billing Address"
|
485 |
+
msgstr "Fakturační adresa"
|
486 |
+
|
487 |
+
# @ woocommerce-delivery-notes
|
488 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
489 |
+
msgid "N/A"
|
490 |
+
msgstr "N/A"
|
491 |
+
|
492 |
+
# @ woocommerce-delivery-notes
|
493 |
+
#: ../templates/print-order/print-content.php:37
|
494 |
+
msgid "Shipping Address"
|
495 |
+
msgstr "Doručovací adresa"
|
496 |
+
|
497 |
+
# @ woocommerce-delivery-notes
|
498 |
+
#: ../templates/print-order/print-content.php:70
|
499 |
+
msgid "Product"
|
500 |
+
msgstr "Produkt"
|
501 |
+
|
502 |
+
#: ../templates/print-order/print-content.php:71
|
503 |
+
msgid "Price"
|
504 |
+
msgstr "Cena"
|
505 |
+
|
506 |
+
#: ../templates/print-order/print-content.php:72
|
507 |
+
msgid "Quantity"
|
508 |
+
msgstr "Množství"
|
509 |
+
|
510 |
+
# @ woocommerce-delivery-notes
|
511 |
+
#: ../templates/print-order/print-content.php:73
|
512 |
+
msgid "Total"
|
513 |
+
msgstr "Celkem"
|
514 |
+
|
515 |
+
# @ woocommerce-delivery-notes
|
516 |
+
#: ../templates/print-order/print-content.php:97
|
517 |
+
msgid "Download:"
|
518 |
+
msgstr "Stažení:"
|
519 |
+
|
520 |
+
# @ woocommerce-delivery-notes
|
521 |
+
#: ../templates/print-order/print-content.php:98
|
522 |
+
#, php-format
|
523 |
+
msgid "%s Files"
|
524 |
+
msgstr "%s souborů"
|
525 |
+
|
526 |
+
# @ woocommerce-delivery-notes
|
527 |
+
#: ../templates/print-order/print-content.php:147
|
528 |
+
msgid "Customer Note"
|
529 |
+
msgstr "Poznámka"
|
530 |
+
|
531 |
+
# @ woocommerce-delivery-notes
|
532 |
+
#: ../woocommerce-delivery-notes.php:181
|
533 |
+
msgid "Go to the settings page"
|
534 |
+
msgstr "Jít na stránku nastavení"
|
535 |
+
|
536 |
+
# @ woocommerce-delivery-notes
|
537 |
+
#: ../woocommerce-delivery-notes.php:181
|
538 |
+
msgid "Settings"
|
539 |
+
msgstr "Nastavení"
|
languages/woocommerce-delivery-notes-da_DK.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-da_DK.po
CHANGED
@@ -2,296 +2,512 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
|
16 |
-
#:
|
17 |
-
msgid "
|
18 |
-
msgstr ""
|
19 |
|
20 |
-
#:
|
21 |
-
|
22 |
-
|
|
|
23 |
|
24 |
-
#:
|
25 |
-
msgid "
|
26 |
-
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
|
|
|
|
|
|
|
|
|
30 |
msgstr ""
|
|
|
|
|
|
|
31 |
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgstr ""
|
|
|
|
|
|
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
msgstr ""
|
|
|
|
|
39 |
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
-
|
|
|
|
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
-
|
|
|
|
|
|
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#:
|
65 |
-
|
66 |
-
|
67 |
-
msgstr "N/A"
|
68 |
|
69 |
-
#:
|
70 |
-
msgid "
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
#:
|
74 |
-
msgid "
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#:
|
78 |
-
msgid "
|
79 |
-
msgstr "
|
80 |
|
81 |
-
#:
|
82 |
-
msgid "
|
83 |
-
|
|
|
|
|
84 |
|
85 |
-
#:
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgstr "Sekventiel ordrenummer"
|
92 |
|
93 |
-
#:
|
94 |
msgid "Sequential numbering is enabled."
|
95 |
msgstr "Sekventiel ordrenummer er aktiveret"
|
96 |
|
97 |
-
#:
|
|
|
98 |
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
msgstr "Installer og aktiver den gratis <a href=\"%s\">WooCommerce Sekventil ordrenummer</ a>Plugin."
|
100 |
|
101 |
-
#:
|
102 |
-
|
103 |
-
|
|
|
|
|
104 |
|
105 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
msgid "Delivery Note"
|
107 |
msgstr "Følgeseddel"
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#:
|
114 |
-
|
115 |
-
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Du har ikke tilladelse til at se denne side."
|
119 |
|
120 |
-
#:
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#:
|
125 |
-
msgid "
|
126 |
-
msgstr "
|
127 |
|
128 |
-
#:
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
|
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
|
|
|
139 |
|
140 |
-
#:
|
141 |
msgid "SKU:"
|
142 |
msgstr "SKU:"
|
143 |
|
144 |
-
#: templates/print/print-
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#:
|
153 |
-
|
154 |
-
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Note:"
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#:
|
174 |
-
|
175 |
-
|
176 |
-
msgstr "Om plugin'en"
|
177 |
|
178 |
-
#:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
|
182 |
-
|
183 |
-
|
184 |
-
|
|
|
|
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
msgstr "Fakturaer og Følgesedler"
|
201 |
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
|
|
|
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
msgstr "Efterlad tom for at bruge standard-hjemmeside / blog titel defineret under WordPress-indstillinger."
|
209 |
|
210 |
-
|
211 |
-
|
212 |
-
msgstr "Firma/Shop Adresse"
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
msgstr "Efterlad tomt felt for ikke at udskrive en adresse."
|
217 |
|
218 |
-
|
219 |
-
|
220 |
-
msgstr "Personlige Besked:"
|
221 |
|
222 |
-
|
223 |
-
|
224 |
-
msgstr "Efterlad tomt felt for ikke at udskrive nogen besked."
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
msgstr "Her kan du tilføje vilkår mv. For eksempel tilføje en returpolitik i tilfælde af at kunden gerne vil sende varer tilbage. I nogle lande (f.eks i Den Europæiske Union) dette er påkrævet, så kan du tilføje alle nødvendige oplysninger i overensstemmelse med de lovmæssige bestemmelser."
|
229 |
|
230 |
-
|
231 |
-
|
232 |
-
msgstr "Efterlad tomt felt for ikke at udskrive noget."
|
233 |
|
234 |
-
|
235 |
-
|
236 |
-
msgstr "Footer Imprint"
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
msgstr "Efterlad tomt felt for ikke at udskrive footer."
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
msgstr "Ordrer Nummererings-muligheder"
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
msgstr "Udskriv Ordrer"
|
249 |
|
250 |
-
|
251 |
-
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr "Udskriv Faktura"
|
255 |
|
256 |
-
|
257 |
-
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Udskriv Følgeseddel"
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
msgstr "Faktura"
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
msgstr "Modtager"
|
271 |
|
272 |
-
|
273 |
-
|
274 |
-
msgstr "Kundebemærkninger"
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
msgstr "WooCommerce Udskriver Faktura og Følgeseddel"
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
msgstr "Udskriv ordrer, fakturaer og følgesedler for WooCommerce butik plugin. Du kan tilføje firma/shop info samt personlige noter og politikker til de udskrivne sider."
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
|
|
|
|
|
|
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
msgstr ""
|
291 |
-
"Denne plugin giver dig mulighed for at tilføje en Faktura eller Leveringsbetingelse til udskrift af dine ordre i WooCommerce shop plugin. Du kan tilføje dit firma's post-adresse og andre personlige meddelelser, politik om refundering og andet, fodnoter og andet. Dette kan hjælpe dig i den daglige administration af din shop. \n"
|
292 |
-
"I nogle lande (f.eks i Den Europæiske Union) er det også nødvendigt at rådgive kunden med rette tilbagebetaling politikker, så det kan denne lille plugin også hjælpe dig med."
|
293 |
|
294 |
-
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
+
"POT-Creation-Date: 2014-11-09 23:06+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-11-22 20:14+0100\n"
|
9 |
+
"Last-Translator: Emil Stahl <emil@emilstahl.dk>\n"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: da_DK\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.7beta2\n"
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
#: ../includes/class-wcdn-settings.php:72
|
19 |
+
msgid "Do you really want to reset the counter to zero?"
|
20 |
+
msgstr "Vil du virkelig nulstille tælleren til nul?"
|
21 |
|
22 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
|
23 |
+
#: ../includes/class-wcdn-theme.php:90 ../includes/wcdn-template-functions.php:127
|
24 |
+
msgid "Print"
|
25 |
+
msgstr "Udskriv"
|
26 |
|
27 |
+
#: ../includes/class-wcdn-settings.php:157
|
28 |
+
msgid "Print Order"
|
29 |
+
msgstr "Udskriv ordre"
|
30 |
|
31 |
+
#: ../includes/class-wcdn-settings.php:176
|
32 |
+
#, php-format
|
33 |
+
msgid ""
|
34 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target="
|
35 |
+
"\"%4$s\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> "
|
36 |
+
"template."
|
37 |
msgstr ""
|
38 |
+
"Du kan se et eksempel på <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">faktura</a>, <a href=\"%2$s\" "
|
39 |
+
"target=\"%4$s\" class=\"%5$s\">følgeseddel</a> eller <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s"
|
40 |
+
"\">kvittering</a> skabelonen."
|
41 |
|
42 |
+
# @ woocommerce-delivery-notes
|
43 |
+
#: ../includes/class-wcdn-settings.php:177
|
44 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
45 |
+
msgstr "I readme-filen finder du en FAQ hvor du kan lære hvordan du tilpasser skabelonerne."
|
46 |
+
|
47 |
+
#: ../includes/class-wcdn-settings.php:188
|
48 |
+
msgid "Company/Shop Logo"
|
49 |
+
msgstr "Firma/Shop Logo"
|
50 |
+
|
51 |
+
#: ../includes/class-wcdn-settings.php:194
|
52 |
+
msgid "Remove Logo"
|
53 |
+
msgstr "Fjern Logo"
|
54 |
+
|
55 |
+
#: ../includes/class-wcdn-settings.php:195
|
56 |
+
msgid "Set Logo"
|
57 |
+
msgstr "Indsæt Logo"
|
58 |
+
|
59 |
+
#: ../includes/class-wcdn-settings.php:199
|
60 |
+
msgid "A company/shop logo representing your business."
|
61 |
+
msgstr "Et virksomhed/butik logo der repræsenterer din virksomhed."
|
62 |
+
|
63 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
64 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
65 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
66 |
+
#: ../includes/class-wcdn-settings.php:369 ../includes/class-wcdn-settings.php:384
|
67 |
+
#: ../includes/class-wcdn-settings.php:399
|
68 |
+
msgid "Note:"
|
69 |
+
msgstr "Note:"
|
70 |
+
|
71 |
+
#: ../includes/class-wcdn-settings.php:201
|
72 |
+
msgid ""
|
73 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. "
|
74 |
+
"This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a "
|
75 |
+
"width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
76 |
msgstr ""
|
77 |
+
"Når billedet udskrives, vil dens pixeltæthed automatisk være otte gange højere end den oprindelige. Dette "
|
78 |
+
"betyder, at 1 cm papir er ca 113 pixels på skærmen. Eksempel: et billede med en bredde på 600 pixel og en "
|
79 |
+
"højde på 400 pixels har en trykt størrelse på omkring 5,3 * 3,5 cm."
|
80 |
|
81 |
+
#: ../includes/class-wcdn-settings.php:207
|
82 |
+
msgid "Company/Shop Name"
|
83 |
+
msgstr "Firme/Shop Navn"
|
84 |
+
|
85 |
+
#: ../includes/class-wcdn-settings.php:212
|
86 |
+
msgid "Your company/shop name for the Delivery Note."
|
87 |
+
msgstr "Dit firma/shop navn til følgesedlen."
|
88 |
+
|
89 |
+
#: ../includes/class-wcdn-settings.php:214
|
90 |
+
msgid ""
|
91 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored "
|
92 |
+
"when a Logo is set."
|
93 |
msgstr ""
|
94 |
+
"Efterlad tom for at bruge standard-hjemmeside/blog titel defineret under WordPress-indstillinger.Navnet "
|
95 |
+
"vil blive ignoreret, når et logo er valgt."
|
96 |
|
97 |
+
#: ../includes/class-wcdn-settings.php:220
|
98 |
+
msgid "Company/Shop Address"
|
99 |
+
msgstr "Firma/Shop Adresse"
|
100 |
|
101 |
+
#: ../includes/class-wcdn-settings.php:225
|
102 |
+
msgid ""
|
103 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the "
|
104 |
+
"company/shop name."
|
105 |
+
msgstr "Postadressen bliver trykt til højre for Firma/Shop navn, ovenover ordrelisten."
|
106 |
|
107 |
+
#: ../includes/class-wcdn-settings.php:227
|
108 |
+
msgid "Leave blank to not print an address."
|
109 |
+
msgstr "Efterlad tomt for ikke at udskrive en adresse."
|
110 |
|
111 |
+
#: ../includes/class-wcdn-settings.php:233
|
112 |
+
msgid "Complimentary Close"
|
113 |
+
msgstr "Personlig afslutning"
|
114 |
|
115 |
+
#: ../includes/class-wcdn-settings.php:238
|
116 |
+
msgid ""
|
117 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry "
|
118 |
+
"Christmas!, etc.)."
|
119 |
+
msgstr ""
|
120 |
+
"Tilføj nogle personlige beskeder, eller lignende (f.eks Tak for din bestilling!, Glædelig Jul!, Osv.)."
|
121 |
|
122 |
+
#: ../includes/class-wcdn-settings.php:240
|
123 |
+
msgid "Leave blank to not print any personal notes."
|
124 |
+
msgstr "Efterlad tomt for ikke at udskrive nogen personlige noter."
|
125 |
|
126 |
+
#: ../includes/class-wcdn-settings.php:246
|
127 |
+
msgid "Returns Policy, Conditions, etc"
|
128 |
+
msgstr "Returpolitik, Salgsbetingelser mv:"
|
|
|
129 |
|
130 |
+
#: ../includes/class-wcdn-settings.php:251
|
131 |
+
msgid ""
|
132 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client "
|
133 |
+
"would like to send back some goods. In some countries (e.g. in the European Union) this is required so "
|
134 |
+
"please add any required info in accordance with the statutory regulations."
|
135 |
+
msgstr ""
|
136 |
+
"Her kan du tilføje vilkår mv. For eksempel tilføje en returpolitik i tilfælde af at kunden gerne vil sende "
|
137 |
+
"varer tilbage. I nogle lande (f.eks i Den Europæiske Union) dette er påkrævet, så kan du tilføje alle "
|
138 |
+
"nødvendige oplysninger i overensstemmelse med de lovmæssige bestemmelser."
|
139 |
|
140 |
+
#: ../includes/class-wcdn-settings.php:253
|
141 |
+
msgid "Leave blank to not print any policies or conditions."
|
142 |
+
msgstr "Efterlad tomt for ikke at udskrive betingelser."
|
143 |
|
144 |
+
#: ../includes/class-wcdn-settings.php:259
|
145 |
+
msgid "Footer"
|
146 |
+
msgstr "Sidefod"
|
147 |
|
148 |
+
#: ../includes/class-wcdn-settings.php:264
|
149 |
+
msgid ""
|
150 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a "
|
151 |
+
"bit more branded."
|
152 |
+
msgstr "Tilføj nogle yderligere Footer imprints, ophavsret bemærkninger osv. "
|
153 |
|
154 |
+
#: ../includes/class-wcdn-settings.php:266
|
155 |
+
msgid "Leave blank to not print a footer."
|
156 |
+
msgstr "Efterlad tomt for ikke at udskrive sidefod."
|
157 |
|
158 |
+
#: ../includes/class-wcdn-settings.php:272
|
159 |
+
msgid "Types"
|
160 |
+
msgstr "Typer"
|
161 |
+
|
162 |
+
#: ../includes/class-wcdn-settings.php:279
|
163 |
+
msgid "Enable Invoices"
|
164 |
+
msgstr "Aktiver fakturaer"
|
165 |
+
|
166 |
+
#: ../includes/class-wcdn-settings.php:286
|
167 |
+
msgid "Enable Delivery Notes"
|
168 |
+
msgstr "Aktiver følgesedler"
|
169 |
+
|
170 |
+
#: ../includes/class-wcdn-settings.php:293
|
171 |
+
msgid "Enable Receipts"
|
172 |
+
msgstr "Aktiver kvitteringer"
|
173 |
+
|
174 |
+
#: ../includes/class-wcdn-settings.php:301
|
175 |
+
msgid "Front-end Options"
|
176 |
+
msgstr "Frontend indstillinger"
|
177 |
+
|
178 |
+
# @ woocommerce-delivery-notes
|
179 |
+
#: ../includes/class-wcdn-settings.php:306
|
180 |
+
msgid "Print Page Endpoint"
|
181 |
+
msgstr "Print-sidens slutpunkt"
|
182 |
+
|
183 |
+
# @ woocommerce-delivery-notes
|
184 |
+
#: ../includes/class-wcdn-settings.php:313
|
185 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
186 |
+
msgstr "Dette slutpunkt bliver tilføjet på konto-sidens URL når der printes en ordre. Dette skal være unikt."
|
187 |
+
|
188 |
+
#: ../includes/class-wcdn-settings.php:319
|
189 |
+
msgid "Print Buttons"
|
190 |
+
msgstr "Print-knapper"
|
191 |
+
|
192 |
+
# @ woocommerce-delivery-notes
|
193 |
+
#: ../includes/class-wcdn-settings.php:326
|
194 |
+
msgid "Show print button on the \"View Order\" page"
|
195 |
+
msgstr "Vis print-knapper på \"Vis ordre\" -siden"
|
196 |
+
|
197 |
+
# @ woocommerce-delivery-notes
|
198 |
+
#: ../includes/class-wcdn-settings.php:333
|
199 |
+
msgid "Show print buttons on the \"My Account\" page"
|
200 |
+
msgstr "Vis print-knapperne by \"Min Konto\" -siden"
|
201 |
+
|
202 |
+
#: ../includes/class-wcdn-settings.php:341
|
203 |
+
msgid "Order Numbering"
|
204 |
+
msgstr "Ordre nummerering"
|
205 |
+
|
206 |
+
#: ../includes/class-wcdn-settings.php:346 ../includes/wcdn-template-functions.php:224
|
207 |
+
msgid "Invoice Number"
|
208 |
+
msgstr "Fakturanummer"
|
209 |
+
|
210 |
+
#: ../includes/class-wcdn-settings.php:354
|
211 |
+
msgid "Create invoice numbers"
|
212 |
+
msgstr "Opret fakturerings-numre"
|
213 |
+
|
214 |
+
#: ../includes/class-wcdn-settings.php:361
|
215 |
+
msgid "Invoice Number Start"
|
216 |
+
msgstr "Fakturerings-start nr."
|
217 |
+
|
218 |
+
#: ../includes/class-wcdn-settings.php:368
|
219 |
+
msgid "Start the numbering at the specified number."
|
220 |
+
msgstr "Start faktureringen ved et specifikt nr."
|
221 |
+
|
222 |
+
#: ../includes/class-wcdn-settings.php:370
|
223 |
+
msgid "Use only integers."
|
224 |
+
msgstr "Brug kun hele tal."
|
225 |
+
|
226 |
+
#: ../includes/class-wcdn-settings.php:376
|
227 |
+
msgid "Invoice Number Prefix"
|
228 |
+
msgstr "Faktureringsnummer præfiks"
|
229 |
+
|
230 |
+
#: ../includes/class-wcdn-settings.php:383
|
231 |
+
msgid "This text will be prepended to the invoice number."
|
232 |
+
msgstr "Denne tekst vil blive sat foran faktureringsnummeret."
|
233 |
+
|
234 |
+
#: ../includes/class-wcdn-settings.php:385
|
235 |
+
msgid "Leave blank to not add a prefix."
|
236 |
+
msgstr "Efterlad tomt for ikke at tilføje et præfiks."
|
237 |
+
|
238 |
+
#: ../includes/class-wcdn-settings.php:391
|
239 |
+
msgid "Invoice Number Suffix"
|
240 |
+
msgstr "Faktureringsnummer suffiks"
|
241 |
+
|
242 |
+
#: ../includes/class-wcdn-settings.php:398
|
243 |
+
msgid "This text will be appended to the invoice number."
|
244 |
+
msgstr "Denne tekst vil blive sat bagefter faktureringsnummeret."
|
245 |
+
|
246 |
+
#: ../includes/class-wcdn-settings.php:400
|
247 |
+
msgid "Leave blank to not add a suffix."
|
248 |
+
msgstr "Efterlad tomt for ikke at tilføje et suffix."
|
249 |
+
|
250 |
+
#: ../includes/class-wcdn-settings.php:406
|
251 |
+
msgid "Invoice Number Counter"
|
252 |
+
msgstr "Fakturanummer tæller"
|
253 |
+
|
254 |
+
#: ../includes/class-wcdn-settings.php:415
|
255 |
+
msgid "Reset Counter"
|
256 |
+
msgstr "Nulstil tæller"
|
257 |
+
|
258 |
+
#: ../includes/class-wcdn-settings.php:421
|
259 |
+
msgid "Sequential Order Number"
|
260 |
msgstr "Sekventiel ordrenummer"
|
261 |
|
262 |
+
#: ../includes/class-wcdn-settings.php:426
|
263 |
msgid "Sequential numbering is enabled."
|
264 |
msgstr "Sekventiel ordrenummer er aktiveret"
|
265 |
|
266 |
+
#: ../includes/class-wcdn-settings.php:428
|
267 |
+
#, php-format
|
268 |
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
269 |
msgstr "Installer og aktiver den gratis <a href=\"%s\">WooCommerce Sekventil ordrenummer</ a>Plugin."
|
270 |
|
271 |
+
#: ../includes/class-wcdn-writepanel.php:101 ../includes/class-wcdn-writepanel.php:102
|
272 |
+
#: ../includes/class-wcdn-writepanel.php:135 ../includes/class-wcdn-writepanel.php:136
|
273 |
+
#: ../includes/class-wcdn-writepanel.php:267
|
274 |
+
msgid "Print Invoice"
|
275 |
+
msgstr "Udskriv faktura"
|
276 |
|
277 |
+
#: ../includes/class-wcdn-writepanel.php:107 ../includes/class-wcdn-writepanel.php:108
|
278 |
+
#: ../includes/class-wcdn-writepanel.php:140 ../includes/class-wcdn-writepanel.php:141
|
279 |
+
#: ../includes/class-wcdn-writepanel.php:271
|
280 |
+
msgid "Print Delivery Note"
|
281 |
+
msgstr "Udskriv følgeseddel"
|
282 |
+
|
283 |
+
#: ../includes/class-wcdn-writepanel.php:113 ../includes/class-wcdn-writepanel.php:114
|
284 |
+
#: ../includes/class-wcdn-writepanel.php:145 ../includes/class-wcdn-writepanel.php:146
|
285 |
+
#: ../includes/class-wcdn-writepanel.php:275
|
286 |
+
msgid "Print Receipt"
|
287 |
+
msgstr "Udskriv kvittering"
|
288 |
+
|
289 |
+
#: ../includes/class-wcdn-writepanel.php:237
|
290 |
+
#, php-format
|
291 |
+
msgid "Invoice created."
|
292 |
+
msgid_plural "%s invoices created."
|
293 |
+
msgstr[0] "Faktura oprettet."
|
294 |
+
msgstr[1] "%s fakturaer er oprettet."
|
295 |
+
|
296 |
+
#: ../includes/class-wcdn-writepanel.php:239
|
297 |
+
#, php-format
|
298 |
+
msgid "Delivery note created."
|
299 |
+
msgid_plural "%s delivery notes created."
|
300 |
+
msgstr[0] "Følgeseddel oprettet."
|
301 |
+
msgstr[1] "%s følgesedler oprettet."
|
302 |
+
|
303 |
+
#: ../includes/class-wcdn-writepanel.php:241
|
304 |
+
#, php-format
|
305 |
+
msgid "Receipt created."
|
306 |
+
msgid_plural "%s receipts created."
|
307 |
+
msgstr[0] "Kvittering oprettet."
|
308 |
+
msgstr[1] "%s kvitteringer er oprettet."
|
309 |
+
|
310 |
+
#: ../includes/class-wcdn-writepanel.php:245
|
311 |
+
msgid "Print now"
|
312 |
+
msgstr "Udskriv nu"
|
313 |
+
|
314 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
315 |
+
msgid "Order Printing"
|
316 |
+
msgstr "Ordre udskrivning"
|
317 |
+
|
318 |
+
#: ../includes/class-wcdn-writepanel.php:288
|
319 |
+
msgid "Invoice number: "
|
320 |
+
msgstr "Fakturanummer:"
|
321 |
+
|
322 |
+
#: ../includes/class-wcdn-writepanel.php:289
|
323 |
+
msgid "Invoice date: "
|
324 |
+
msgstr "Faktura dato:"
|
325 |
+
|
326 |
+
#: ../includes/wcdn-template-functions.php:39
|
327 |
+
msgid "Invoice"
|
328 |
+
msgstr "Faktura"
|
329 |
+
|
330 |
+
#: ../includes/wcdn-template-functions.php:41
|
331 |
msgid "Delivery Note"
|
332 |
msgstr "Følgeseddel"
|
333 |
|
334 |
+
#: ../includes/wcdn-template-functions.php:43
|
335 |
+
msgid "Receipt"
|
336 |
+
msgstr "Kvittering"
|
337 |
|
338 |
+
#: ../includes/wcdn-template-functions.php:45
|
339 |
+
msgid "Order"
|
340 |
+
msgstr "Ordre"
|
|
|
|
|
|
|
341 |
|
342 |
+
#: ../includes/wcdn-template-functions.php:230
|
343 |
+
msgid "Order Number"
|
344 |
+
msgstr "Ordrenummer"
|
345 |
|
346 |
+
#: ../includes/wcdn-template-functions.php:235
|
347 |
+
msgid "Order Date"
|
348 |
+
msgstr "Ordre dato"
|
349 |
|
350 |
+
#: ../includes/wcdn-template-functions.php:240
|
351 |
+
msgid "Payment Method"
|
352 |
+
msgstr "Betalingsmetode"
|
353 |
|
354 |
+
# @ woocommerce-delivery-notes
|
355 |
+
#: ../includes/wcdn-template-functions.php:246
|
356 |
+
msgid "Email"
|
357 |
+
msgstr "E-mail"
|
358 |
|
359 |
+
# @ woocommerce-delivery-notes
|
360 |
+
#: ../includes/wcdn-template-functions.php:253
|
361 |
+
msgid "Telephone"
|
362 |
+
msgstr "Telefon"
|
363 |
|
364 |
+
#: ../includes/wcdn-template-functions.php:286
|
365 |
msgid "SKU:"
|
366 |
msgstr "SKU:"
|
367 |
|
368 |
+
#: ../templates/print-order/print-content.php:28
|
369 |
+
msgid "Billing Address"
|
370 |
+
msgstr "Faktureringsadresse"
|
371 |
|
372 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
373 |
+
msgid "N/A"
|
374 |
+
msgstr "N/A"
|
375 |
|
376 |
+
#: ../templates/print-order/print-content.php:37
|
377 |
+
msgid "Shipping Address"
|
378 |
+
msgstr "Leveringsadresse"
|
|
|
|
|
|
|
|
|
|
|
379 |
|
380 |
+
#: ../templates/print-order/print-content.php:70
|
381 |
+
msgid "Product"
|
382 |
+
msgstr "Produkt"
|
383 |
|
384 |
+
#: ../templates/print-order/print-content.php:71
|
385 |
+
msgid "Price"
|
386 |
+
msgstr "Pris"
|
387 |
|
388 |
+
#: ../templates/print-order/print-content.php:72
|
389 |
+
msgid "Quantity"
|
390 |
+
msgstr "Antal"
|
391 |
|
392 |
+
#: ../templates/print-order/print-content.php:73
|
393 |
+
msgid "Total"
|
394 |
+
msgstr "Total"
|
|
|
395 |
|
396 |
+
#: ../templates/print-order/print-content.php:97
|
397 |
+
msgid "Download:"
|
398 |
+
msgstr "Download:"
|
399 |
|
400 |
+
# @ woocommerce-delivery-notes
|
401 |
+
#: ../templates/print-order/print-content.php:98
|
402 |
+
#, php-format
|
403 |
+
msgid "%s Files"
|
404 |
+
msgstr "%s filer"
|
405 |
|
406 |
+
#: ../templates/print-order/print-content.php:149
|
407 |
+
msgid "Customer Note"
|
408 |
+
msgstr "Kundebemærkninger"
|
409 |
|
410 |
+
#: ../woocommerce-delivery-notes.php:180
|
411 |
+
msgid "Go to the settings page"
|
412 |
+
msgstr "Gå til indstillinger"
|
413 |
|
414 |
+
#: ../woocommerce-delivery-notes.php:180
|
415 |
+
msgid "Settings"
|
416 |
+
msgstr "Indstillinger"
|
417 |
|
418 |
+
#~ msgid "Already created invoice numbers are not affected by changes."
|
419 |
+
#~ msgstr "Allerede oprettede faktureringsnumre er ikke påvirket af ændringerne"
|
|
|
420 |
|
421 |
+
#~ msgid ""
|
422 |
+
#~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to "
|
423 |
+
#~ "<code>your-theme-name/woocommerce/print/style.css</code>."
|
424 |
+
#~ msgstr ""
|
425 |
+
#~ "For mere avanceret kontrol, kopier <code>woocommerce-delivery-notes/templates/print-order/style.css</"
|
426 |
+
#~ "code> til <code>dit-tema/woocommerce/print-order/style.css</code>."
|
427 |
|
428 |
+
#~ msgid "2.0"
|
429 |
+
#~ msgstr "2.0"
|
|
|
430 |
|
431 |
+
#~ msgid "Get Community Support"
|
432 |
+
#~ msgstr "Få Community Support"
|
|
|
433 |
|
434 |
+
#~ msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
435 |
+
#~ msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
|
|
436 |
|
437 |
+
#~ msgid "You do not have sufficient permissions to access this page."
|
438 |
+
#~ msgstr "Du har ikke tilladelse til at se denne side."
|
|
|
439 |
|
440 |
+
#~ msgid "FAQ"
|
441 |
+
#~ msgstr "OSS"
|
|
|
442 |
|
443 |
+
#~ msgid "Support"
|
444 |
+
#~ msgstr "Support"
|
|
|
445 |
|
446 |
+
#~ msgid "Weight:"
|
447 |
+
#~ msgstr "Vægt:"
|
|
|
448 |
|
449 |
+
#~ msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
450 |
+
#~ msgstr "Plugin: WooCommerce udskriv Fakturaer og Følgesedler"
|
|
|
451 |
|
452 |
+
#~ msgid "About the Plugin"
|
453 |
+
#~ msgstr "Om plugin'en"
|
|
|
454 |
|
455 |
+
#~ msgid "For more information:"
|
456 |
+
#~ msgstr "For mere information:"
|
|
|
457 |
|
458 |
+
#~ msgid "Frequently Asked Questions"
|
459 |
+
#~ msgstr "Ofte Stillede Spørgsmål"
|
|
|
460 |
|
461 |
+
#~ msgid "Project on WordPress.org"
|
462 |
+
#~ msgstr "Projekt på WordPress.org"
|
|
|
|
|
|
|
463 |
|
464 |
+
#~ msgid "Project on GitHub"
|
465 |
+
#~ msgstr "Projekt på GitHub"
|
|
|
|
|
|
|
|
|
|
|
466 |
|
467 |
+
#~ msgid "Invoices and Delivery Notes"
|
468 |
+
#~ msgstr "Fakturaer og Følgesedler"
|
|
|
469 |
|
470 |
+
#~ msgid "Personal Notes"
|
471 |
+
#~ msgstr "Personlige Besked:"
|
|
|
472 |
|
473 |
+
#~ msgid "Order Numbering Options"
|
474 |
+
#~ msgstr "Ordrer Nummererings-muligheder"
|
|
|
475 |
|
476 |
+
#~ msgid "Recipient"
|
477 |
+
#~ msgstr "Modtager"
|
|
|
478 |
|
479 |
+
#~ msgid "WooCommerce Print Invoices & Delivery Notes"
|
480 |
+
#~ msgstr "WooCommerce Udskriver Faktura og Følgeseddel"
|
|
|
481 |
|
482 |
+
#~ msgid ""
|
483 |
+
#~ "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as "
|
484 |
+
#~ "well as personal notes & policies to print pages."
|
485 |
+
#~ msgstr ""
|
486 |
+
#~ "Udskriv ordrer, fakturaer og følgesedler for WooCommerce butik plugin. Du kan tilføje firma/shop info "
|
487 |
+
#~ "samt personlige noter og politikker til de udskrivne sider."
|
488 |
|
489 |
+
#~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
490 |
+
#~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
|
|
|
|
|
|
491 |
|
492 |
+
#~ msgid ""
|
493 |
+
#~ "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in "
|
494 |
+
#~ "WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or "
|
495 |
+
#~ "other policies and a footer note/branding. This helps speed up your daily shop and order management. In "
|
496 |
+
#~ "some countries (e.g. in the European Union) it is also required to advice the customer with proper "
|
497 |
+
#~ "refund policies so this little plugin might help you a bit with that too."
|
498 |
+
#~ msgstr ""
|
499 |
+
#~ "Dette plugin giver dig mulighed for at tilføje en Faktura eller Leveringsbetingelse til udskrift af "
|
500 |
+
#~ "dine ordre i WooCommerce shop plugin. Du kan tilføje dit firma's post-adresse og andre personlige "
|
501 |
+
#~ "meddelelser, politik om refundering og andet, fodnoter og andet. Dette kan hjælpe dig i den daglige "
|
502 |
+
#~ "administration af din shop. \n"
|
503 |
+
#~ "I nogle lande (f.eks i Den Europæiske Union) er det også nødvendigt at rådgive kunden med rette "
|
504 |
+
#~ "tilbagebetaling politikker, så det kan denne lille plugin også hjælpe dig med."
|
505 |
|
506 |
+
#~ msgid ""
|
507 |
+
#~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the "
|
508 |
+
#~ "right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or "
|
509 |
+
#~ "delivery note printing page. Yes, it is that easy :-)."
|
510 |
+
#~ msgstr ""
|
511 |
+
#~ "Se under <a href=\"%1$s\"> WooCommerce> Ordrer </ a>, og derfra gå til den enkelte ordre udsigt. På "
|
512 |
+
#~ "højre side vil du se Udskriv Ordrer meta boks. Klik på en af knapperne, og du får en faktura eller "
|
513 |
+
#~ "følgeseddel udskrivning side. Ja, det er faktisk så let :-)."
|
languages/woocommerce-delivery-notes-de_DE.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-de_DE.po
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
-
"POT-Creation-Date:
|
13 |
-
"PO-Revision-Date:
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: de_DE\n"
|
@@ -18,446 +18,582 @@ msgstr ""
|
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
-
"X-Generator: Poedit 1.
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
24 |
-
"
|
25 |
-
"esc_attr_e;esc_attr__\n"
|
26 |
"X-Poedit-Basepath: .\n"
|
27 |
"X-Textdomain-Support: yes\n"
|
28 |
"X-Poedit-SearchPath-0: ..\n"
|
29 |
|
30 |
# @ woocommerce-delivery-notes
|
31 |
-
#: ../includes/class-wcdn-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
# @ woocommerce-delivery-notes
|
38 |
-
#: ../includes/class-wcdn-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Print Order"
|
40 |
msgstr "Bestellung drucken"
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
# @ woocommerce-delivery-notes
|
43 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
#, php-format
|
45 |
msgid ""
|
46 |
-
"You can preview the <a href=\"%1$s\" target=\"%
|
47 |
-
"
|
48 |
-
"note template</a>."
|
49 |
msgstr ""
|
50 |
-
"Sie können eine Vorschau der <a href=\"%1$s\" target=\"%
|
51 |
-
"\">
|
52 |
-
"
|
53 |
|
54 |
-
#: ../includes/class-wcdn-settings.php:
|
55 |
-
msgid ""
|
56 |
-
"
|
57 |
-
msgstr ""
|
58 |
-
"Mit den häufig gestellten Fragen in der Liesmich-Datei erfahren Sie, wie Sie "
|
59 |
-
"die Vorlage anpassen können."
|
60 |
|
61 |
# @ woocommerce-delivery-notes
|
62 |
-
#: ../includes/class-wcdn-settings.php:
|
63 |
msgid "Company/Shop Logo"
|
64 |
msgstr "Firmen-/ Shop-Logo"
|
65 |
|
66 |
# @ woocommerce-delivery-notes
|
67 |
-
#: ../includes/class-wcdn-settings.php:
|
68 |
msgid "Remove Logo"
|
69 |
msgstr "Logo entfernen"
|
70 |
|
71 |
# @ woocommerce-delivery-notes
|
72 |
-
#: ../includes/class-wcdn-settings.php:
|
73 |
msgid "Set Logo"
|
74 |
msgstr "Logo festlegen"
|
75 |
|
76 |
# @ woocommerce-delivery-notes
|
77 |
-
#: ../includes/class-wcdn-settings.php:
|
78 |
msgid "A company/shop logo representing your business."
|
79 |
msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
|
80 |
|
81 |
# @ woocommerce-delivery-notes
|
82 |
-
#: ../includes/class-wcdn-settings.php:
|
83 |
-
#: ../includes/class-wcdn-settings.php:
|
84 |
-
#: ../includes/class-wcdn-settings.php:
|
85 |
-
#: ../includes/class-wcdn-settings.php:
|
86 |
-
#: ../includes/class-wcdn-settings.php:
|
87 |
-
#: ../includes/class-wcdn-settings.php:236
|
88 |
-
#: ../includes/class-wcdn-settings.php:312
|
89 |
-
#: ../includes/class-wcdn-settings.php:328
|
90 |
-
#: ../includes/class-wcdn-settings.php:344
|
91 |
msgid "Note:"
|
92 |
msgstr "Hinweis:"
|
93 |
|
94 |
# @ woocommerce-delivery-notes
|
95 |
-
#: ../includes/class-wcdn-settings.php:
|
96 |
msgid ""
|
97 |
-
"When the image is printed, its pixel density will automatically be eight "
|
98 |
-
"
|
99 |
-
"
|
100 |
-
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
101 |
-
"to 1 inch."
|
102 |
msgstr ""
|
103 |
-
"Wenn das Bild gedruckt wird, wird dessen Pixeldichte automatisch höher sein "
|
104 |
-
"
|
105 |
-
"
|
106 |
-
"
|
107 |
-
"von 288 Pixeln wird eine gedruckte Größe von etwa 2 Zoll x 1 Zoll aufweisen "
|
108 |
-
"(ca. 5.08 cm x 2.54cm)."
|
109 |
|
110 |
# @ woocommerce-delivery-notes
|
111 |
-
#: ../includes/class-wcdn-settings.php:
|
112 |
msgid "Company/Shop Name"
|
113 |
msgstr "Firmen-/ Shopname"
|
114 |
|
115 |
# @ woocommerce-delivery-notes
|
116 |
-
#: ../includes/class-wcdn-settings.php:
|
117 |
msgid "Your company/shop name for the Delivery Note."
|
118 |
msgstr "Ihr Firmen-/ Shop-Name für den Lieferschein/ die Rechnung."
|
119 |
|
120 |
# @ woocommerce-delivery-notes
|
121 |
-
#: ../includes/class-wcdn-settings.php:
|
122 |
msgid ""
|
123 |
-
"Leave blank to use the default Website/Blog title defined in WordPress "
|
124 |
-
"
|
125 |
msgstr ""
|
126 |
-
"Leer lassen, um den standardmäßigen Webseiten- bzw. Blogtitel zu verwenden, "
|
127 |
-
"
|
128 |
|
129 |
# @ woocommerce-delivery-notes
|
130 |
-
#: ../includes/class-wcdn-settings.php:
|
131 |
msgid "Company/Shop Address"
|
132 |
msgstr "Firmen-/ Shop-Anschrift"
|
133 |
|
134 |
# @ woocommerce-delivery-notes
|
135 |
-
#: ../includes/class-wcdn-settings.php:
|
136 |
msgid ""
|
137 |
-
"The postal address of the company/shop or even e-mail or telephone, which "
|
138 |
-
"
|
139 |
msgstr ""
|
140 |
-
"Die Postanschrift der Firma bzw. des Shops, welche rechts neben dem Firmen-/ "
|
141 |
-
"
|
142 |
|
143 |
# @ woocommerce-delivery-notes
|
144 |
-
#: ../includes/class-wcdn-settings.php:
|
145 |
msgid "Leave blank to not print an address."
|
146 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
147 |
|
148 |
-
#: ../includes/class-wcdn-settings.php:
|
149 |
-
#, fuzzy
|
150 |
msgid "Complimentary Close"
|
151 |
msgstr "Schlussformel"
|
152 |
|
153 |
# @ woocommerce-delivery-notes
|
154 |
-
#: ../includes/class-wcdn-settings.php:
|
155 |
msgid ""
|
156 |
-
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
157 |
-
"Your Order!, Merry Christmas!, etc.)."
|
158 |
msgstr ""
|
159 |
-
"Fügen Sie einige persönliche Anmerkungen wie Dank, jahreszeitliche Grüße "
|
160 |
-
"
|
161 |
|
162 |
# @ woocommerce-delivery-notes
|
163 |
-
#: ../includes/class-wcdn-settings.php:
|
164 |
msgid "Leave blank to not print any personal notes."
|
165 |
msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
|
166 |
|
167 |
# @ woocommerce-delivery-notes
|
168 |
-
#: ../includes/class-wcdn-settings.php:
|
169 |
msgid "Returns Policy, Conditions, etc"
|
170 |
msgstr "Rückgabe- und sonstige Bedingungen:"
|
171 |
|
172 |
# @ woocommerce-delivery-notes
|
173 |
-
#: ../includes/class-wcdn-settings.php:
|
174 |
msgid ""
|
175 |
-
"Here you can add some more policies, conditions etc. For example add a "
|
176 |
-
"
|
177 |
-
"
|
178 |
-
"any required info in accordance with the statutory regulations."
|
179 |
msgstr ""
|
180 |
-
"Hier können Sie einige weitere Bedingungen angeben. Zum Beispiel Bedingungen "
|
181 |
-
"
|
182 |
-
"
|
183 |
-
"entsprechenden gesetzlichen Bestimmungen für Ihr Land."
|
184 |
|
185 |
# @ woocommerce-delivery-notes
|
186 |
-
#: ../includes/class-wcdn-settings.php:
|
187 |
msgid "Leave blank to not print any policies or conditions."
|
188 |
msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
|
189 |
|
190 |
# @ woocommerce-delivery-notes
|
191 |
-
#: ../includes/class-wcdn-settings.php:
|
192 |
msgid "Footer"
|
193 |
msgstr "Fußzeile"
|
194 |
|
195 |
# @ woocommerce-delivery-notes
|
196 |
-
#: ../includes/class-wcdn-settings.php:
|
197 |
msgid ""
|
198 |
-
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
199 |
-
"
|
200 |
msgstr ""
|
201 |
-
"Fügen Sie Impressumangaben in der Fußzeile hinzu. Damit können die Ausdrucke "
|
202 |
-
"
|
203 |
|
204 |
# @ woocommerce-delivery-notes
|
205 |
-
#: ../includes/class-wcdn-settings.php:
|
206 |
msgid "Leave blank to not print a footer."
|
207 |
-
msgstr ""
|
208 |
-
|
|
|
|
|
|
|
209 |
|
210 |
-
#: ../includes/class-wcdn-settings.php:
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
|
214 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
215 |
msgid "Print Page Endpoint"
|
216 |
msgstr "Bestellung Drucken Endpunkt"
|
217 |
|
218 |
-
#: ../includes/class-wcdn-settings.php:
|
219 |
-
msgid ""
|
220 |
-
"
|
221 |
-
"should be unique."
|
222 |
-
msgstr ""
|
223 |
-
"Der Endpunkt wird der Konto-URL angehängt, um die Bestellung zu drucken. Sie "
|
224 |
-
"sollte eindeutig sein."
|
225 |
|
226 |
-
#: ../includes/class-wcdn-settings.php:
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#: ../includes/class-wcdn-settings.php:
|
231 |
msgid "Show print button on the \"View Order\" page"
|
232 |
-
msgstr "
|
233 |
|
234 |
-
#: ../includes/class-wcdn-settings.php:
|
235 |
msgid "Show print buttons on the \"My Account\" page"
|
236 |
-
msgstr "
|
237 |
|
238 |
# @ woocommerce-delivery-notes
|
239 |
-
#: ../includes/class-wcdn-settings.php:
|
240 |
-
msgid "
|
241 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
# @ woocommerce-delivery-notes
|
244 |
-
#: ../includes/class-wcdn-settings.php:
|
245 |
-
|
246 |
-
|
247 |
-
msgstr "Rechnungsnummer"
|
248 |
|
249 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
250 |
msgid "Create invoice numbers"
|
251 |
-
msgstr "
|
252 |
|
253 |
# @ woocommerce-delivery-notes
|
254 |
-
#: ../includes/class-wcdn-settings.php:
|
255 |
msgid "Invoice Number Start"
|
256 |
msgstr "Rechnungsnummer Start"
|
257 |
|
258 |
-
#: ../includes/class-wcdn-settings.php:
|
259 |
msgid "Start the numbering at the specified number."
|
260 |
msgstr "Die Nummerierung beginnt bei der eingegebenen Zahl."
|
261 |
|
262 |
-
#: ../includes/class-wcdn-settings.php:
|
263 |
msgid "Use only integers."
|
264 |
msgstr "Nur Ganzzahlen verwenden."
|
265 |
|
266 |
-
#: ../includes/class-wcdn-settings.php:314
|
267 |
-
#: ../includes/class-wcdn-settings.php:330
|
268 |
-
#: ../includes/class-wcdn-settings.php:346
|
269 |
-
msgid "Already created invoice numbers are not affected by changes."
|
270 |
-
msgstr "Bereits erzeugte Rechnungsnummern sind von Änderungen nicht betroffen."
|
271 |
-
|
272 |
# @ woocommerce-delivery-notes
|
273 |
-
#: ../includes/class-wcdn-settings.php:
|
274 |
msgid "Invoice Number Prefix"
|
275 |
msgstr "Rechnungsnummer Präfix"
|
276 |
|
277 |
-
#: ../includes/class-wcdn-settings.php:
|
278 |
msgid "This text will be prepended to the invoice number."
|
279 |
msgstr "Dieser Text wird vor der Rechnungsnummer angefügt."
|
280 |
|
281 |
# @ woocommerce-delivery-notes
|
282 |
-
#: ../includes/class-wcdn-settings.php:
|
283 |
msgid "Leave blank to not add a prefix."
|
284 |
msgstr "Leer lassen, um kein Präfix zu verwenden."
|
285 |
|
286 |
# @ woocommerce-delivery-notes
|
287 |
-
#: ../includes/class-wcdn-settings.php:
|
288 |
msgid "Invoice Number Suffix"
|
289 |
msgstr "Rechnungsnummer Suffix"
|
290 |
|
291 |
-
#: ../includes/class-wcdn-settings.php:
|
292 |
msgid "This text will be appended to the invoice number."
|
293 |
msgstr "Dieser Text wird nach der Rechnungsnummer angefügt."
|
294 |
|
295 |
# @ woocommerce-delivery-notes
|
296 |
-
#: ../includes/class-wcdn-settings.php:
|
297 |
msgid "Leave blank to not add a suffix."
|
298 |
msgstr "Leer lassen, um kein Suffix zu verwenden."
|
299 |
|
300 |
# @ woocommerce-delivery-notes
|
301 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Sequential Order Number"
|
303 |
msgstr "Fortlaufende Bestellnummer"
|
304 |
|
305 |
# @ woocommerce-delivery-notes
|
306 |
-
#: ../includes/class-wcdn-settings.php:
|
307 |
msgid "Sequential numbering is enabled."
|
308 |
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
309 |
|
310 |
# @ woocommerce-delivery-notes
|
311 |
-
#: ../includes/class-wcdn-settings.php:
|
312 |
#, php-format
|
313 |
-
msgid ""
|
314 |
-
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
315 |
-
"Numbers</a> Plugin."
|
316 |
msgstr ""
|
317 |
-
"Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s"
|
318 |
-
"\">WooCommerce Sequential Order Numbers</a>."
|
319 |
-
|
320 |
-
# @ woocommerce-delivery-notes
|
321 |
-
#: ../includes/class-wcdn-writepanel.php:83
|
322 |
-
#: ../includes/class-wcdn-writepanel.php:84
|
323 |
-
#: ../includes/class-wcdn-writepanel.php:105
|
324 |
-
#: ../includes/class-wcdn-writepanel.php:106
|
325 |
-
#: ../includes/class-wcdn-writepanel.php:192
|
326 |
-
msgid "Print Invoice"
|
327 |
-
msgstr "Rechnung drucken"
|
328 |
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
#: ../includes/class-wcdn-writepanel.php:108
|
333 |
-
#: ../includes/class-wcdn-writepanel.php:109
|
334 |
-
#: ../includes/class-wcdn-writepanel.php:193
|
335 |
-
msgid "Print Delivery Note"
|
336 |
-
msgstr "Lieferschein drucken"
|
337 |
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
msgid "Invoice created."
|
342 |
-
msgid_plural "%s invoices created."
|
343 |
-
msgstr[0] "Rechnung erstellt."
|
344 |
-
msgstr[1] "%s Rechnungen erstellt."
|
345 |
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
msgid "Delivery note created."
|
350 |
-
msgid_plural "%s delivery notes created."
|
351 |
-
msgstr[0] "Lieferschein erstellt."
|
352 |
-
msgstr[1] "%s Lieferscheine erstellt."
|
353 |
|
354 |
# @ woocommerce-delivery-notes
|
355 |
-
#: ../includes/class-wcdn-writepanel.php:
|
356 |
msgid "Print now"
|
357 |
msgstr "Jetzt drucken"
|
358 |
|
359 |
# @ woocommerce-delivery-notes
|
360 |
-
#: ../includes/class-wcdn-writepanel.php:
|
361 |
msgid "Order Printing"
|
362 |
msgstr "Bestellung drucken"
|
363 |
|
364 |
# @ woocommerce-delivery-notes
|
365 |
-
#: ../includes/class-wcdn-writepanel.php:
|
366 |
msgid "Invoice number: "
|
367 |
msgstr "Rechnungsnummer:"
|
368 |
|
369 |
# @ woocommerce-delivery-notes
|
370 |
-
#: ../includes/wcdn-
|
371 |
-
msgid "Invoice"
|
372 |
-
msgstr "
|
373 |
-
|
374 |
-
# @ woocommerce-delivery-notes
|
375 |
-
#: ../includes/wcdn-template-functions.php:34
|
376 |
-
msgid "Delivery Note"
|
377 |
-
msgstr "Lieferschein"
|
378 |
|
379 |
# @ woocommerce-delivery-notes
|
380 |
-
#: ../includes/wcdn-template-functions.php:
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
# @ woocommerce-delivery-notes
|
385 |
-
#: ../includes/wcdn-template-functions.php:
|
386 |
msgid "Order Number"
|
387 |
msgstr "Bestellnummer"
|
388 |
|
389 |
# @ woocommerce-delivery-notes
|
390 |
-
#: ../includes/wcdn-template-functions.php:
|
391 |
msgid "Order Date"
|
392 |
msgstr "Bestelldatum"
|
393 |
|
394 |
# @ woocommerce-delivery-notes
|
395 |
-
#: ../includes/wcdn-template-functions.php:
|
396 |
msgid "Payment Method"
|
397 |
msgstr "Zahlungsart"
|
398 |
|
399 |
-
|
400 |
-
#: ../includes/wcdn-template-functions.php:230
|
401 |
-
msgid "Email"
|
402 |
-
msgstr "E-Mail"
|
403 |
-
|
404 |
-
#: ../includes/wcdn-template-functions.php:237
|
405 |
msgid "Telephone"
|
406 |
msgstr "Telefon"
|
407 |
|
408 |
-
#: ../includes/wcdn-template-functions.php:
|
409 |
msgid "SKU:"
|
410 |
msgstr "Art.-Nr.:"
|
411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
#: ../templates/print-order/print-content.php:28
|
413 |
msgid "Billing Address"
|
414 |
msgstr "Rechnungsadresse"
|
415 |
|
416 |
# @ woocommerce-delivery-notes
|
417 |
-
#: ../templates/print-order/print-content.php:31
|
418 |
-
#: ../templates/print-order/print-content.php:42
|
419 |
msgid "N/A"
|
420 |
msgstr "k.A."
|
421 |
|
422 |
# @ woocommerce-delivery-notes
|
423 |
-
#: ../templates/print-order/print-content.php:
|
424 |
msgid "Shipping Address"
|
425 |
msgstr "Lieferadresse"
|
426 |
|
427 |
# @ woocommerce-delivery-notes
|
428 |
-
#: ../templates/print-order/print-content.php:
|
429 |
msgid "Product"
|
430 |
msgstr "Produkt"
|
431 |
|
432 |
-
#: ../templates/print-order/print-content.php:
|
|
|
|
|
|
|
|
|
433 |
msgid "Quantity"
|
434 |
msgstr "Menge"
|
435 |
|
436 |
# @ woocommerce-delivery-notes
|
437 |
-
#: ../templates/print-order/print-content.php:
|
438 |
msgid "Total"
|
439 |
msgstr "Summe"
|
440 |
|
441 |
-
#: ../templates/print-order/print-content.php:
|
442 |
msgid "Download:"
|
443 |
msgstr "Download: "
|
444 |
|
445 |
-
#: ../templates/print-order/print-content.php:
|
446 |
#, php-format
|
447 |
msgid "%s Files"
|
448 |
msgstr "%s Dateien"
|
449 |
|
450 |
# @ woocommerce-delivery-notes
|
451 |
-
#: ../templates/print-order/print-content.php:
|
452 |
msgid "Customer Note"
|
453 |
msgstr "Kundennotizen"
|
454 |
|
455 |
# @ woocommerce-delivery-notes
|
456 |
-
#: ../woocommerce-delivery-notes.php:
|
457 |
msgid "Go to the settings page"
|
458 |
msgstr "Zur Einstellungsseite des Plugins"
|
459 |
|
460 |
# @ woocommerce-delivery-notes
|
461 |
-
#: ../woocommerce-delivery-notes.php:
|
462 |
msgid "Settings"
|
463 |
msgstr "Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2015-01-31 15:45+0100\n"
|
13 |
+
"PO-Revision-Date: 2015-01-31 15:46+0100\n"
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: de_DE\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
+
"X-Generator: Poedit 1.7.4\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
24 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
|
|
25 |
"X-Poedit-Basepath: .\n"
|
26 |
"X-Textdomain-Support: yes\n"
|
27 |
"X-Poedit-SearchPath-0: ..\n"
|
28 |
|
29 |
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-print.php:41
|
31 |
+
msgid "Invoice"
|
32 |
+
msgstr "Rechnung"
|
33 |
+
|
34 |
+
# @ woocommerce-delivery-notes
|
35 |
+
#: ../includes/class-wcdn-print.php:42
|
36 |
+
msgid "Invoices"
|
37 |
+
msgstr "Rechnungen"
|
38 |
+
|
39 |
+
# @ woocommerce-delivery-notes
|
40 |
+
#: ../includes/class-wcdn-print.php:43
|
41 |
+
msgid "Print Invoice"
|
42 |
+
msgstr "Rechnung drucken"
|
43 |
+
|
44 |
+
#: ../includes/class-wcdn-print.php:44
|
45 |
+
msgid "Print Invoices"
|
46 |
+
msgstr "Rechnungen drucken"
|
47 |
+
|
48 |
+
# @ woocommerce-delivery-notes
|
49 |
+
#: ../includes/class-wcdn-print.php:45
|
50 |
+
msgid "Invoice created."
|
51 |
+
msgstr "Rechnung erstellt."
|
52 |
+
|
53 |
+
#: ../includes/class-wcdn-print.php:46
|
54 |
+
msgid "Invoices created."
|
55 |
+
msgstr "Rechnungen erstellt."
|
56 |
+
|
57 |
+
# @ woocommerce-delivery-notes
|
58 |
+
#: ../includes/class-wcdn-print.php:47
|
59 |
+
msgid "Enable Invoices"
|
60 |
+
msgstr "Rechnungen aktivieren"
|
61 |
+
|
62 |
+
# @ woocommerce-delivery-notes
|
63 |
+
#: ../includes/class-wcdn-print.php:53
|
64 |
+
msgid "Delivery Note"
|
65 |
+
msgstr "Lieferschein"
|
66 |
+
|
67 |
+
# @ woocommerce-delivery-notes
|
68 |
+
#: ../includes/class-wcdn-print.php:54
|
69 |
+
msgid "Delivery Notes"
|
70 |
+
msgstr "Lieferscheine"
|
71 |
+
|
72 |
+
# @ woocommerce-delivery-notes
|
73 |
+
#: ../includes/class-wcdn-print.php:55
|
74 |
+
msgid "Print Delivery Note"
|
75 |
+
msgstr "Lieferschein drucken"
|
76 |
+
|
77 |
+
#: ../includes/class-wcdn-print.php:56
|
78 |
+
msgid "Print Delivery Notes"
|
79 |
+
msgstr "Lieferscheine drucken"
|
80 |
+
|
81 |
+
#: ../includes/class-wcdn-print.php:57
|
82 |
+
msgid "Delivery Note created."
|
83 |
+
msgstr "Lieferschein erstellt."
|
84 |
+
|
85 |
+
#: ../includes/class-wcdn-print.php:58
|
86 |
+
msgid "Delivery Notes created."
|
87 |
+
msgstr "Lieferscheine erstellt."
|
88 |
+
|
89 |
+
#: ../includes/class-wcdn-print.php:59
|
90 |
+
msgid "Enable Delivery Notes"
|
91 |
+
msgstr "Lieferscheine aktivieren"
|
92 |
+
|
93 |
+
#: ../includes/class-wcdn-print.php:65
|
94 |
+
msgid "Receipt"
|
95 |
+
msgstr "Beleg"
|
96 |
+
|
97 |
+
#: ../includes/class-wcdn-print.php:66
|
98 |
+
msgid "Receipts"
|
99 |
+
msgstr "Belege"
|
100 |
|
101 |
# @ woocommerce-delivery-notes
|
102 |
+
#: ../includes/class-wcdn-print.php:67
|
103 |
+
msgid "Print Receipt"
|
104 |
+
msgstr "Beleg drucken"
|
105 |
+
|
106 |
+
#: ../includes/class-wcdn-print.php:68
|
107 |
+
msgid "Print Receipts"
|
108 |
+
msgstr "Belege drucken"
|
109 |
+
|
110 |
+
# @ woocommerce-delivery-notes
|
111 |
+
#: ../includes/class-wcdn-print.php:69
|
112 |
+
msgid "Receipt created."
|
113 |
+
msgstr "Beleg erstellt."
|
114 |
+
|
115 |
+
#: ../includes/class-wcdn-print.php:70
|
116 |
+
msgid "Receipts created."
|
117 |
+
msgstr "Belege erstellt."
|
118 |
+
|
119 |
+
# @ woocommerce-delivery-notes
|
120 |
+
#: ../includes/class-wcdn-print.php:71
|
121 |
+
msgid "Enable Receipts"
|
122 |
+
msgstr "Belege aktivieren"
|
123 |
+
|
124 |
+
# @ woocommerce-delivery-notes
|
125 |
+
#: ../includes/class-wcdn-print.php:80
|
126 |
+
msgid "Order"
|
127 |
+
msgstr "Bestellung"
|
128 |
+
|
129 |
+
# @ woocommerce-delivery-notes
|
130 |
+
#: ../includes/class-wcdn-print.php:81
|
131 |
+
msgid "Orders"
|
132 |
+
msgstr "Bestellungen"
|
133 |
+
|
134 |
+
# @ woocommerce-delivery-notes
|
135 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
136 |
msgid "Print Order"
|
137 |
msgstr "Bestellung drucken"
|
138 |
|
139 |
+
#: ../includes/class-wcdn-print.php:83
|
140 |
+
msgid "Print Orders"
|
141 |
+
msgstr "Bestellungen drucken"
|
142 |
+
|
143 |
+
#: ../includes/class-wcdn-settings.php:72
|
144 |
+
msgid "Do you really want to reset the counter to zero? This process can't be undone."
|
145 |
+
msgstr "Den Rechnungsnummerzähler auf Null zurücksetzen? Dieser Vorgang kann nicht rückgängig gemacht werden."
|
146 |
+
|
147 |
# @ woocommerce-delivery-notes
|
148 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
|
149 |
+
#: ../includes/wcdn-template-functions.php:127
|
150 |
+
msgid "Print"
|
151 |
+
msgstr "Drucken"
|
152 |
+
|
153 |
+
# @ woocommerce-delivery-notes
|
154 |
+
#: ../includes/class-wcdn-settings.php:176
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
158 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
|
|
159 |
msgstr ""
|
160 |
+
"Sie können eine Vorschau der <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">Rechnung</a>, des <a href=\"%2$s\" "
|
161 |
+
"target=\"%4$s\" class=\"%5$s\">Lieferscheins</a> oder des <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">Belegs</"
|
162 |
+
"a> anzeigen."
|
163 |
|
164 |
+
#: ../includes/class-wcdn-settings.php:177
|
165 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
166 |
+
msgstr "Mit den häufig gestellten Fragen in der Liesmich-Datei erfahren Sie, wie Sie die Vorlage anpassen können."
|
|
|
|
|
|
|
167 |
|
168 |
# @ woocommerce-delivery-notes
|
169 |
+
#: ../includes/class-wcdn-settings.php:188
|
170 |
msgid "Company/Shop Logo"
|
171 |
msgstr "Firmen-/ Shop-Logo"
|
172 |
|
173 |
# @ woocommerce-delivery-notes
|
174 |
+
#: ../includes/class-wcdn-settings.php:194
|
175 |
msgid "Remove Logo"
|
176 |
msgstr "Logo entfernen"
|
177 |
|
178 |
# @ woocommerce-delivery-notes
|
179 |
+
#: ../includes/class-wcdn-settings.php:195
|
180 |
msgid "Set Logo"
|
181 |
msgstr "Logo festlegen"
|
182 |
|
183 |
# @ woocommerce-delivery-notes
|
184 |
+
#: ../includes/class-wcdn-settings.php:199
|
185 |
msgid "A company/shop logo representing your business."
|
186 |
msgstr "Ein Firmen-/ Shop-Logo, welches Ihr Geschäft repräsentiert."
|
187 |
|
188 |
# @ woocommerce-delivery-notes
|
189 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
190 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
191 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
192 |
+
#: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
|
193 |
+
#: ../includes/class-wcdn-settings.php:412
|
|
|
|
|
|
|
|
|
194 |
msgid "Note:"
|
195 |
msgstr "Hinweis:"
|
196 |
|
197 |
# @ woocommerce-delivery-notes
|
198 |
+
#: ../includes/class-wcdn-settings.php:201
|
199 |
msgid ""
|
200 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
201 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
202 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
|
|
|
|
203 |
msgstr ""
|
204 |
+
"Wenn das Bild gedruckt wird, wird dessen Pixeldichte automatisch höher sein als das Original. Dies bedeutet, die "
|
205 |
+
"Fläche von einem gedruckten Quadratzoll (ca. 2.54cm x 2.54cm) wird mit 288 Pixeln auf dem Bildschirm in "
|
206 |
+
"Verbindung stehen. Beispiel: Ein Bild mit einer Breite von 576 Pixeln und einer Höhe von 288 Pixeln wird eine "
|
207 |
+
"gedruckte Größe von etwa 2 Zoll x 1 Zoll aufweisen (ca. 5.08 cm x 2.54cm)."
|
|
|
|
|
208 |
|
209 |
# @ woocommerce-delivery-notes
|
210 |
+
#: ../includes/class-wcdn-settings.php:207
|
211 |
msgid "Company/Shop Name"
|
212 |
msgstr "Firmen-/ Shopname"
|
213 |
|
214 |
# @ woocommerce-delivery-notes
|
215 |
+
#: ../includes/class-wcdn-settings.php:212
|
216 |
msgid "Your company/shop name for the Delivery Note."
|
217 |
msgstr "Ihr Firmen-/ Shop-Name für den Lieferschein/ die Rechnung."
|
218 |
|
219 |
# @ woocommerce-delivery-notes
|
220 |
+
#: ../includes/class-wcdn-settings.php:214
|
221 |
msgid ""
|
222 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
223 |
+
"Logo is set."
|
224 |
msgstr ""
|
225 |
+
"Leer lassen, um den standardmäßigen Webseiten- bzw. Blogtitel zu verwenden, der in den WordPress-Einstellungen "
|
226 |
+
"festgelegt wird."
|
227 |
|
228 |
# @ woocommerce-delivery-notes
|
229 |
+
#: ../includes/class-wcdn-settings.php:220
|
230 |
msgid "Company/Shop Address"
|
231 |
msgstr "Firmen-/ Shop-Anschrift"
|
232 |
|
233 |
# @ woocommerce-delivery-notes
|
234 |
+
#: ../includes/class-wcdn-settings.php:225
|
235 |
msgid ""
|
236 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
237 |
+
"shop name."
|
238 |
msgstr ""
|
239 |
+
"Die Postanschrift der Firma bzw. des Shops, welche rechts neben dem Firmen-/ Shopname ausgegeben wird, über den "
|
240 |
+
"Bestelldaten."
|
241 |
|
242 |
# @ woocommerce-delivery-notes
|
243 |
+
#: ../includes/class-wcdn-settings.php:227
|
244 |
msgid "Leave blank to not print an address."
|
245 |
msgstr "Leer lassen, um keine Anschrift mit auszudrucken."
|
246 |
|
247 |
+
#: ../includes/class-wcdn-settings.php:233
|
|
|
248 |
msgid "Complimentary Close"
|
249 |
msgstr "Schlussformel"
|
250 |
|
251 |
# @ woocommerce-delivery-notes
|
252 |
+
#: ../includes/class-wcdn-settings.php:238
|
253 |
msgid ""
|
254 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
|
|
255 |
msgstr ""
|
256 |
+
"Fügen Sie einige persönliche Anmerkungen wie Dank, jahreszeitliche Grüße hinzu (z.B.: Danke für Ihre Bestellung!, "
|
257 |
+
"Frohe Weihnachten!, etc.)."
|
258 |
|
259 |
# @ woocommerce-delivery-notes
|
260 |
+
#: ../includes/class-wcdn-settings.php:240
|
261 |
msgid "Leave blank to not print any personal notes."
|
262 |
msgstr "Leer lassen, um keine persönlichen Anmerkungen mit auszudrucken."
|
263 |
|
264 |
# @ woocommerce-delivery-notes
|
265 |
+
#: ../includes/class-wcdn-settings.php:246
|
266 |
msgid "Returns Policy, Conditions, etc"
|
267 |
msgstr "Rückgabe- und sonstige Bedingungen:"
|
268 |
|
269 |
# @ woocommerce-delivery-notes
|
270 |
+
#: ../includes/class-wcdn-settings.php:251
|
271 |
msgid ""
|
272 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
273 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
274 |
+
"required info in accordance with the statutory regulations."
|
|
|
275 |
msgstr ""
|
276 |
+
"Hier können Sie einige weitere Bedingungen angeben. Zum Beispiel Bedingungen für die Rückgabe, Widerrufsbelehrung "
|
277 |
+
"etc. In einigen Ländern (z.B. innerhalb der EU) ist dies sogar vorgeschrieben - informieren Sie sich daher über "
|
278 |
+
"die entsprechenden gesetzlichen Bestimmungen für Ihr Land."
|
|
|
279 |
|
280 |
# @ woocommerce-delivery-notes
|
281 |
+
#: ../includes/class-wcdn-settings.php:253
|
282 |
msgid "Leave blank to not print any policies or conditions."
|
283 |
msgstr "Leer lassen, um keine Bedingungen mit auszudrucken."
|
284 |
|
285 |
# @ woocommerce-delivery-notes
|
286 |
+
#: ../includes/class-wcdn-settings.php:259
|
287 |
msgid "Footer"
|
288 |
msgstr "Fußzeile"
|
289 |
|
290 |
# @ woocommerce-delivery-notes
|
291 |
+
#: ../includes/class-wcdn-settings.php:264
|
292 |
msgid ""
|
293 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
294 |
+
"branded."
|
295 |
msgstr ""
|
296 |
+
"Fügen Sie Impressumangaben in der Fußzeile hinzu. Damit können die Ausdrucke noch stärker an Ihr CI angepasst "
|
297 |
+
"werden."
|
298 |
|
299 |
# @ woocommerce-delivery-notes
|
300 |
+
#: ../includes/class-wcdn-settings.php:266
|
301 |
msgid "Leave blank to not print a footer."
|
302 |
+
msgstr "Leer lassen, um keine Impressumangaben in der Fußzeile mit auszudrucken."
|
303 |
+
|
304 |
+
#: ../includes/class-wcdn-settings.php:273
|
305 |
+
msgid "Print Options"
|
306 |
+
msgstr "Druckoptionen"
|
307 |
|
308 |
+
#: ../includes/class-wcdn-settings.php:278
|
309 |
+
msgid "Types"
|
310 |
+
msgstr "Arten"
|
311 |
|
312 |
+
#: ../includes/class-wcdn-settings.php:297
|
313 |
+
msgid "Theme Options"
|
314 |
+
msgstr "Themeoptionen"
|
315 |
+
|
316 |
+
#: ../includes/class-wcdn-settings.php:302
|
317 |
msgid "Print Page Endpoint"
|
318 |
msgstr "Bestellung Drucken Endpunkt"
|
319 |
|
320 |
+
#: ../includes/class-wcdn-settings.php:309
|
321 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
322 |
+
msgstr "Der Endpunkt wird der Konto-URL angehängt, um die Bestellung zu drucken. Sie sollte eindeutig sein."
|
|
|
|
|
|
|
|
|
323 |
|
324 |
+
#: ../includes/class-wcdn-settings.php:315
|
325 |
+
msgid "My Account"
|
326 |
+
msgstr "Mein Konto"
|
327 |
|
328 |
+
#: ../includes/class-wcdn-settings.php:322
|
329 |
msgid "Show print button on the \"View Order\" page"
|
330 |
+
msgstr "Auf der \"Bestellung anzeigen\"-Seite eine Druck-Taste einblenden"
|
331 |
|
332 |
+
#: ../includes/class-wcdn-settings.php:329
|
333 |
msgid "Show print buttons on the \"My Account\" page"
|
334 |
+
msgstr "Auf der \"Konto bearbeiten\"-Seite eine Druck-Taste einblenden"
|
335 |
|
336 |
# @ woocommerce-delivery-notes
|
337 |
+
#: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
|
338 |
+
msgid "Email"
|
339 |
+
msgstr "E-Mail"
|
340 |
+
|
341 |
+
#: ../includes/class-wcdn-settings.php:343
|
342 |
+
msgid "Show print link in customer emails"
|
343 |
+
msgstr "In Kunden-E-Mails einen Druck-Link einblenden"
|
344 |
+
|
345 |
+
#: ../includes/class-wcdn-settings.php:347
|
346 |
+
msgid ""
|
347 |
+
"This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
|
348 |
+
"also includes the link."
|
349 |
+
msgstr ""
|
350 |
+
"Damit eingeschlossen sind E-Mails für eine neue, in Bearbeitung befindliche und abgeschlossene Bestellung. "
|
351 |
+
"Darüber hinaus ist der Link auch in der Kundenrechnung-E-Mail vorhanden."
|
352 |
|
353 |
# @ woocommerce-delivery-notes
|
354 |
+
#: ../includes/class-wcdn-settings.php:354
|
355 |
+
msgid "Order Numbering"
|
356 |
+
msgstr "Bestellnummerierung"
|
|
|
357 |
|
358 |
+
#: ../includes/class-wcdn-settings.php:359
|
359 |
+
msgid "Invoice Numbering"
|
360 |
+
msgstr "Rechnungsnummerierung"
|
361 |
+
|
362 |
+
#: ../includes/class-wcdn-settings.php:367
|
363 |
msgid "Create invoice numbers"
|
364 |
+
msgstr "Rechnungsnummern erzeugen"
|
365 |
|
366 |
# @ woocommerce-delivery-notes
|
367 |
+
#: ../includes/class-wcdn-settings.php:374
|
368 |
msgid "Invoice Number Start"
|
369 |
msgstr "Rechnungsnummer Start"
|
370 |
|
371 |
+
#: ../includes/class-wcdn-settings.php:381
|
372 |
msgid "Start the numbering at the specified number."
|
373 |
msgstr "Die Nummerierung beginnt bei der eingegebenen Zahl."
|
374 |
|
375 |
+
#: ../includes/class-wcdn-settings.php:383
|
376 |
msgid "Use only integers."
|
377 |
msgstr "Nur Ganzzahlen verwenden."
|
378 |
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
# @ woocommerce-delivery-notes
|
380 |
+
#: ../includes/class-wcdn-settings.php:389
|
381 |
msgid "Invoice Number Prefix"
|
382 |
msgstr "Rechnungsnummer Präfix"
|
383 |
|
384 |
+
#: ../includes/class-wcdn-settings.php:396
|
385 |
msgid "This text will be prepended to the invoice number."
|
386 |
msgstr "Dieser Text wird vor der Rechnungsnummer angefügt."
|
387 |
|
388 |
# @ woocommerce-delivery-notes
|
389 |
+
#: ../includes/class-wcdn-settings.php:398
|
390 |
msgid "Leave blank to not add a prefix."
|
391 |
msgstr "Leer lassen, um kein Präfix zu verwenden."
|
392 |
|
393 |
# @ woocommerce-delivery-notes
|
394 |
+
#: ../includes/class-wcdn-settings.php:404
|
395 |
msgid "Invoice Number Suffix"
|
396 |
msgstr "Rechnungsnummer Suffix"
|
397 |
|
398 |
+
#: ../includes/class-wcdn-settings.php:411
|
399 |
msgid "This text will be appended to the invoice number."
|
400 |
msgstr "Dieser Text wird nach der Rechnungsnummer angefügt."
|
401 |
|
402 |
# @ woocommerce-delivery-notes
|
403 |
+
#: ../includes/class-wcdn-settings.php:413
|
404 |
msgid "Leave blank to not add a suffix."
|
405 |
msgstr "Leer lassen, um kein Suffix zu verwenden."
|
406 |
|
407 |
# @ woocommerce-delivery-notes
|
408 |
+
#: ../includes/class-wcdn-settings.php:419
|
409 |
+
msgid "Invoice Number Counter"
|
410 |
+
msgstr "Rechnungsnummer Zähler"
|
411 |
+
|
412 |
+
#: ../includes/class-wcdn-settings.php:428
|
413 |
+
msgid "Reset Counter …"
|
414 |
+
msgstr "Zähler zurücksetzen …"
|
415 |
+
|
416 |
+
# @ woocommerce-delivery-notes
|
417 |
+
#: ../includes/class-wcdn-settings.php:434
|
418 |
msgid "Sequential Order Number"
|
419 |
msgstr "Fortlaufende Bestellnummer"
|
420 |
|
421 |
# @ woocommerce-delivery-notes
|
422 |
+
#: ../includes/class-wcdn-settings.php:439
|
423 |
msgid "Sequential numbering is enabled."
|
424 |
msgstr "Fortlaufende Nummerierung ist aktiviert."
|
425 |
|
426 |
# @ woocommerce-delivery-notes
|
427 |
+
#: ../includes/class-wcdn-settings.php:441
|
428 |
#, php-format
|
429 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
|
|
|
|
430 |
msgstr ""
|
431 |
+
"Installieren und aktivieren Sie das kostenlose Plugin <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
|
433 |
+
#: ../includes/class-wcdn-theme.php:106
|
434 |
+
msgid "Print your order"
|
435 |
+
msgstr "Bestellung drucken"
|
|
|
|
|
|
|
|
|
|
|
436 |
|
437 |
+
#: ../includes/class-wcdn-theme.php:112
|
438 |
+
msgid "Print:"
|
439 |
+
msgstr "Drucken:"
|
|
|
|
|
|
|
|
|
440 |
|
441 |
+
#: ../includes/class-wcdn-theme.php:112
|
442 |
+
msgid "Open print view in browser"
|
443 |
+
msgstr "Druck-Ansicht im Browser öffnen"
|
|
|
|
|
|
|
|
|
444 |
|
445 |
# @ woocommerce-delivery-notes
|
446 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
447 |
msgid "Print now"
|
448 |
msgstr "Jetzt drucken"
|
449 |
|
450 |
# @ woocommerce-delivery-notes
|
451 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
452 |
msgid "Order Printing"
|
453 |
msgstr "Bestellung drucken"
|
454 |
|
455 |
# @ woocommerce-delivery-notes
|
456 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
457 |
msgid "Invoice number: "
|
458 |
msgstr "Rechnungsnummer:"
|
459 |
|
460 |
# @ woocommerce-delivery-notes
|
461 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
462 |
+
msgid "Invoice date: "
|
463 |
+
msgstr "Rechnungsdatum:"
|
|
|
|
|
|
|
|
|
|
|
464 |
|
465 |
# @ woocommerce-delivery-notes
|
466 |
+
#: ../includes/wcdn-template-functions.php:232
|
467 |
+
msgid "Invoice Number"
|
468 |
+
msgstr "Rechnungsnummer"
|
469 |
|
470 |
# @ woocommerce-delivery-notes
|
471 |
+
#: ../includes/wcdn-template-functions.php:238
|
472 |
msgid "Order Number"
|
473 |
msgstr "Bestellnummer"
|
474 |
|
475 |
# @ woocommerce-delivery-notes
|
476 |
+
#: ../includes/wcdn-template-functions.php:243
|
477 |
msgid "Order Date"
|
478 |
msgstr "Bestelldatum"
|
479 |
|
480 |
# @ woocommerce-delivery-notes
|
481 |
+
#: ../includes/wcdn-template-functions.php:248
|
482 |
msgid "Payment Method"
|
483 |
msgstr "Zahlungsart"
|
484 |
|
485 |
+
#: ../includes/wcdn-template-functions.php:261
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid "Telephone"
|
487 |
msgstr "Telefon"
|
488 |
|
489 |
+
#: ../includes/wcdn-template-functions.php:294
|
490 |
msgid "SKU:"
|
491 |
msgstr "Art.-Nr.:"
|
492 |
|
493 |
+
#: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
|
494 |
+
#, php-format
|
495 |
+
msgid "(Includes %s)"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../includes/wcdn-template-functions.php:400
|
499 |
+
msgid "Refund"
|
500 |
+
msgstr "Rückerstattung"
|
501 |
+
|
502 |
+
#: ../includes/wcdn-template-functions.php:412
|
503 |
+
msgid "Order Subtotal"
|
504 |
+
msgstr "Zwischensumme Bestellung"
|
505 |
+
|
506 |
#: ../templates/print-order/print-content.php:28
|
507 |
msgid "Billing Address"
|
508 |
msgstr "Rechnungsadresse"
|
509 |
|
510 |
# @ woocommerce-delivery-notes
|
511 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
|
|
512 |
msgid "N/A"
|
513 |
msgstr "k.A."
|
514 |
|
515 |
# @ woocommerce-delivery-notes
|
516 |
+
#: ../templates/print-order/print-content.php:37
|
517 |
msgid "Shipping Address"
|
518 |
msgstr "Lieferadresse"
|
519 |
|
520 |
# @ woocommerce-delivery-notes
|
521 |
+
#: ../templates/print-order/print-content.php:70
|
522 |
msgid "Product"
|
523 |
msgstr "Produkt"
|
524 |
|
525 |
+
#: ../templates/print-order/print-content.php:71
|
526 |
+
msgid "Price"
|
527 |
+
msgstr "Preis"
|
528 |
+
|
529 |
+
#: ../templates/print-order/print-content.php:72
|
530 |
msgid "Quantity"
|
531 |
msgstr "Menge"
|
532 |
|
533 |
# @ woocommerce-delivery-notes
|
534 |
+
#: ../templates/print-order/print-content.php:73
|
535 |
msgid "Total"
|
536 |
msgstr "Summe"
|
537 |
|
538 |
+
#: ../templates/print-order/print-content.php:97
|
539 |
msgid "Download:"
|
540 |
msgstr "Download: "
|
541 |
|
542 |
+
#: ../templates/print-order/print-content.php:98
|
543 |
#, php-format
|
544 |
msgid "%s Files"
|
545 |
msgstr "%s Dateien"
|
546 |
|
547 |
# @ woocommerce-delivery-notes
|
548 |
+
#: ../templates/print-order/print-content.php:147
|
549 |
msgid "Customer Note"
|
550 |
msgstr "Kundennotizen"
|
551 |
|
552 |
# @ woocommerce-delivery-notes
|
553 |
+
#: ../woocommerce-delivery-notes.php:181
|
554 |
msgid "Go to the settings page"
|
555 |
msgstr "Zur Einstellungsseite des Plugins"
|
556 |
|
557 |
# @ woocommerce-delivery-notes
|
558 |
+
#: ../woocommerce-delivery-notes.php:181
|
559 |
msgid "Settings"
|
560 |
msgstr "Einstellungen"
|
561 |
+
|
562 |
+
#~ msgid "Reset Counter"
|
563 |
+
#~ msgstr "Zähler zurücksetzen"
|
564 |
+
|
565 |
+
#~ msgid "Do you really want to reset the counter to zero?"
|
566 |
+
#~ msgstr "Den Zähler auf Null zurücksetzen?"
|
567 |
+
|
568 |
+
#~ msgid "Enable Invoices2"
|
569 |
+
#~ msgstr "Rechnungen aktivierend"
|
570 |
+
|
571 |
+
#~ msgid "Order created."
|
572 |
+
#~ msgstr "Bestellung erstellt."
|
573 |
+
|
574 |
+
#~ msgid "Orders created."
|
575 |
+
#~ msgstr "Bestellungen erstellt."
|
576 |
+
|
577 |
+
#~ msgid "Enable Orders"
|
578 |
+
#~ msgstr "Bestellungen aktivieren"
|
579 |
+
|
580 |
+
#~ msgid "Front-end Options"
|
581 |
+
#~ msgstr "Themeoptionen"
|
582 |
+
|
583 |
+
#~ msgid "Open Print View"
|
584 |
+
#~ msgstr "Druckansicht öffnen"
|
585 |
+
|
586 |
+
#~ msgid "Print Buttons"
|
587 |
+
#~ msgstr "Druck-Tasten"
|
588 |
+
|
589 |
+
#~ msgid "Add print link to customer emails"
|
590 |
+
#~ msgstr "Drucken Link in Kunden-E-Mails "
|
591 |
+
|
592 |
+
# @ woocommerce-delivery-notes
|
593 |
+
#~ msgid "Delivery note created."
|
594 |
+
#~ msgid_plural "%s delivery notes created."
|
595 |
+
#~ msgstr[0] "Lieferschein erstellt."
|
596 |
+
#~ msgstr[1] "%s Lieferscheine erstellt."
|
597 |
+
|
598 |
+
#~ msgid "Already created invoice numbers are not affected by changes."
|
599 |
+
#~ msgstr "Bereits erzeugte Rechnungsnummern sind von Änderungen nicht betroffen."
|
languages/woocommerce-delivery-notes-es_ES.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-es_ES.po
CHANGED
@@ -2,296 +2,487 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr ""
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
-
msgstr ""
|
59 |
|
60 |
-
|
61 |
-
|
|
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
-
|
65 |
-
#:
|
66 |
-
msgid "
|
67 |
msgstr ""
|
68 |
|
69 |
-
#:
|
70 |
msgid "Company/Shop Logo"
|
71 |
msgstr "Logo Empresa/Tienda"
|
72 |
|
73 |
-
#:
|
74 |
msgid "Remove Logo"
|
75 |
msgstr "Eliminar Logo"
|
76 |
|
77 |
-
#:
|
78 |
msgid "Set Logo"
|
79 |
msgstr "Definir Logo"
|
80 |
|
81 |
-
#:
|
82 |
msgid "A company/shop logo representing your business."
|
83 |
msgstr "Logo de la empresa/tienda que represente su negocio."
|
84 |
|
85 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "Your company/shop name for the Delivery Note."
|
87 |
msgstr "Nombre de tu empresa/tienda para las Notas de Entrega."
|
88 |
|
89 |
-
#:
|
90 |
-
|
91 |
-
|
|
|
92 |
|
93 |
-
#:
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#:
|
98 |
-
|
99 |
-
|
|
|
100 |
|
101 |
-
#:
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "No tienes los permisos suficientes para acceder a esta página."
|
119 |
|
120 |
-
#:
|
121 |
-
msgid "
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#:
|
125 |
-
|
126 |
-
|
|
|
127 |
|
128 |
-
#:
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
|
132 |
-
#:
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#:
|
137 |
-
|
138 |
-
|
|
|
139 |
|
140 |
-
#:
|
141 |
-
|
142 |
-
|
|
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
|
152 |
-
#:
|
153 |
-
|
154 |
-
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Nota:"
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#:
|
166 |
-
|
167 |
-
|
|
|
168 |
|
169 |
-
#:
|
170 |
-
|
171 |
-
|
|
|
172 |
|
173 |
-
#:
|
174 |
-
|
175 |
-
|
176 |
-
msgstr "Acerca del Plugin"
|
177 |
|
178 |
-
#:
|
179 |
-
|
180 |
-
|
|
|
181 |
|
182 |
-
#:
|
183 |
-
|
184 |
-
|
|
|
|
|
|
|
|
|
185 |
|
186 |
-
#:
|
187 |
-
|
188 |
-
|
|
|
|
|
|
|
|
|
189 |
|
190 |
-
#:
|
191 |
-
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
193 |
|
194 |
-
#:
|
195 |
-
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
-
#:
|
203 |
-
|
204 |
-
|
|
|
205 |
|
206 |
-
#:
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
|
210 |
-
#:
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
|
214 |
-
#:
|
215 |
-
msgid "
|
216 |
-
msgstr "
|
217 |
|
218 |
-
#:
|
219 |
-
|
220 |
-
|
|
|
221 |
|
222 |
-
#:
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
|
234 |
-
|
235 |
-
|
236 |
-
|
|
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
241 |
|
242 |
-
#:
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#:
|
251 |
-
#:
|
252 |
-
|
253 |
-
|
254 |
-
msgstr "Imprimir Factura"
|
255 |
|
256 |
-
#:
|
257 |
-
|
258 |
-
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Imprimir Nota de Entrega"
|
263 |
|
264 |
-
#:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: templates/print/print-
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#: templates/print/print-
|
273 |
-
|
274 |
-
|
|
|
275 |
|
276 |
-
#:
|
277 |
-
msgid "
|
278 |
-
msgstr "
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
|
|
283 |
|
284 |
-
#:
|
285 |
-
|
286 |
-
|
|
|
287 |
|
288 |
-
#:
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#:
|
293 |
-
msgid "
|
294 |
-
msgstr ""
|
295 |
-
"Mira debajo de <a href=\"%1$s\">WooCommerce > Pedidos</a> y allí estará. \n"
|
296 |
-
"En el lado derecho veras el meta box de Imprimir Pedido. Haz click en uno de los botones y obtendrás tu Factura o Nota de Entrega para imprimir. Si es así de fácil :-)."
|
297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
+
"POT-Creation-Date: 2014-06-28 17:13+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-07-14 17:37+0100\n"
|
9 |
+
"Last-Translator: César Díaz Menes"
|
10 |
+
"Language-Team: \n"
|
11 |
+
"Language: es_ES\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
#: ../includes/class-wcdn-settings.php:90
|
19 |
+
#: ../includes/class-wcdn-theme.php:48
|
20 |
+
#: ../includes/class-wcdn-theme.php:83
|
21 |
+
#: ../includes/wcdn-template-functions.php:120
|
22 |
+
msgid "Print"
|
23 |
+
msgstr "Imprimir"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
#: ../includes/class-wcdn-settings.php:128
|
26 |
+
msgid "Print Order"
|
27 |
+
msgstr "Print Order"
|
28 |
|
29 |
+
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-settings.php:147
|
31 |
+
#, php-format
|
32 |
+
msgid "You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery note template</a>."
|
33 |
msgstr ""
|
34 |
|
35 |
+
# @ woocommerce-delivery-notes
|
36 |
+
#: ../includes/class-wcdn-settings.php:148
|
37 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../includes/class-wcdn-settings.php:159
|
41 |
msgid "Company/Shop Logo"
|
42 |
msgstr "Logo Empresa/Tienda"
|
43 |
|
44 |
+
#: ../includes/class-wcdn-settings.php:165
|
45 |
msgid "Remove Logo"
|
46 |
msgstr "Eliminar Logo"
|
47 |
|
48 |
+
#: ../includes/class-wcdn-settings.php:166
|
49 |
msgid "Set Logo"
|
50 |
msgstr "Definir Logo"
|
51 |
|
52 |
+
#: ../includes/class-wcdn-settings.php:170
|
53 |
msgid "A company/shop logo representing your business."
|
54 |
msgstr "Logo de la empresa/tienda que represente su negocio."
|
55 |
|
56 |
+
#: ../includes/class-wcdn-settings.php:171
|
57 |
+
#: ../includes/class-wcdn-settings.php:184
|
58 |
+
#: ../includes/class-wcdn-settings.php:197
|
59 |
+
#: ../includes/class-wcdn-settings.php:210
|
60 |
+
#: ../includes/class-wcdn-settings.php:223
|
61 |
+
#: ../includes/class-wcdn-settings.php:236
|
62 |
+
#: ../includes/class-wcdn-settings.php:312
|
63 |
+
#: ../includes/class-wcdn-settings.php:328
|
64 |
+
#: ../includes/class-wcdn-settings.php:344
|
65 |
+
msgid "Note:"
|
66 |
+
msgstr "Nota:"
|
67 |
+
|
68 |
+
#: ../includes/class-wcdn-settings.php:172
|
69 |
+
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../includes/class-wcdn-settings.php:178
|
73 |
+
msgid "Company/Shop Name"
|
74 |
+
msgstr "Empresa/Nombre de la tienda"
|
75 |
+
|
76 |
+
#: ../includes/class-wcdn-settings.php:183
|
77 |
msgid "Your company/shop name for the Delivery Note."
|
78 |
msgstr "Nombre de tu empresa/tienda para las Notas de Entrega."
|
79 |
|
80 |
+
#: ../includes/class-wcdn-settings.php:185
|
81 |
+
#, fuzzy
|
82 |
+
msgid "Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a Logo is set."
|
83 |
+
msgstr "Dejar en blanco para usar el Website por defecto/ Título del blog definido en los ajustes de WordPress."
|
84 |
|
85 |
+
#: ../includes/class-wcdn-settings.php:191
|
86 |
+
msgid "Company/Shop Address"
|
87 |
+
msgstr "Empresa/Dirección de la tienda"
|
88 |
|
89 |
+
#: ../includes/class-wcdn-settings.php:196
|
90 |
+
#, fuzzy
|
91 |
+
msgid "The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/shop name."
|
92 |
+
msgstr "La dirección postal de la compañia/tienda, quedara impresa a la derecha del nombre de la compañia/tienda, debajo del listado de pedido."
|
93 |
|
94 |
+
#: ../includes/class-wcdn-settings.php:198
|
95 |
+
msgid "Leave blank to not print an address."
|
96 |
+
msgstr "Dejar en blanco para no imprimir la dirección."
|
97 |
|
98 |
+
#: ../includes/class-wcdn-settings.php:204
|
99 |
+
msgid "Complimentary Close"
|
100 |
+
msgstr "Cierre gratuito"
|
101 |
|
102 |
+
#: ../includes/class-wcdn-settings.php:209
|
103 |
+
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
104 |
+
msgstr "Añade notas personales, o felicitaciones o cualquier cosa (ej. ¡Gracias por tu pedido!, ¡Feliz Navidad!, ect.)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
+
#: ../includes/class-wcdn-settings.php:211
|
107 |
+
msgid "Leave blank to not print any personal notes."
|
108 |
+
msgstr "Dejar en blanco para no imprimir notas personales."
|
109 |
|
110 |
+
#: ../includes/class-wcdn-settings.php:217
|
111 |
+
#, fuzzy
|
112 |
+
msgid "Returns Policy, Conditions, etc"
|
113 |
+
msgstr "Política de Devoluciones, Condiciones, etc.:"
|
114 |
|
115 |
+
#: ../includes/class-wcdn-settings.php:222
|
116 |
+
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
117 |
+
msgstr "Aquí puedes añadir algunas claúsulas, condiciones etc. Por ejemplo añade una política de de devolución en el caso de que el cliente quiera devolver algunos artículos. En algunos países (p.ej en la Unión Europea) esto es obligatorio, asi que por favor añade cualquier información obligatoria de acuerdo con las regulaciones estatutarias. "
|
118 |
|
119 |
+
#: ../includes/class-wcdn-settings.php:224
|
120 |
+
msgid "Leave blank to not print any policies or conditions."
|
121 |
+
msgstr "Dejar en blanco para no imprimir cláusulas o condiciones."
|
122 |
|
123 |
+
#: ../includes/class-wcdn-settings.php:230
|
124 |
+
#, fuzzy
|
125 |
+
msgid "Footer"
|
126 |
+
msgstr "Pie de Página"
|
127 |
|
128 |
+
#: ../includes/class-wcdn-settings.php:235
|
129 |
+
#, fuzzy
|
130 |
+
msgid "Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more branded."
|
131 |
+
msgstr "Añade además de notas a pie de página, notas de copyright etc. para obtener hojas impresas que se ajusten un poco mas a tu marca."
|
132 |
|
133 |
+
#: ../includes/class-wcdn-settings.php:237
|
134 |
+
msgid "Leave blank to not print a footer."
|
135 |
+
msgstr "Dejar en blanco para no imprimir el pie de página."
|
136 |
|
137 |
+
#: ../includes/class-wcdn-settings.php:244
|
138 |
+
msgid "Front-end Options"
|
139 |
+
msgstr "Opciones Front-end"
|
140 |
+
|
141 |
+
# @ woocommerce-delivery-notes
|
142 |
+
#: ../includes/class-wcdn-settings.php:249
|
143 |
+
msgid "Print Page Endpoint"
|
144 |
+
msgstr "Endpoint Pagina de Impresión"
|
145 |
+
|
146 |
+
# @ woocommerce-delivery-notes
|
147 |
+
#: ../includes/class-wcdn-settings.php:256
|
148 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
149 |
+
msgstr "El Endpoint es añadido a la URL de la pagina de cuenta para ser impreso"
|
150 |
+
|
151 |
+
#: ../includes/class-wcdn-settings.php:262
|
152 |
+
msgid "Print Buttons"
|
153 |
+
msgstr "Botones de Impresión"
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:269
|
157 |
+
msgid "Show print button on the \"View Order\" page"
|
158 |
+
msgstr "Mostrar botón de impresión en la página \"View Order\""
|
159 |
+
|
160 |
+
# @ woocommerce-delivery-notes
|
161 |
+
#: ../includes/class-wcdn-settings.php:276
|
162 |
+
msgid "Show print buttons on the \"My Account\" page"
|
163 |
+
msgstr "Mostrar botón de impresión en la página \"My Account\""
|
164 |
+
|
165 |
+
#: ../includes/class-wcdn-settings.php:284
|
166 |
+
#, fuzzy
|
167 |
+
msgid "Order Numbering"
|
168 |
+
msgstr "Número de Pedido"
|
169 |
+
|
170 |
+
#: ../includes/class-wcdn-settings.php:289
|
171 |
+
#: ../includes/wcdn-template-functions.php:209
|
172 |
+
msgid "Invoice Number"
|
173 |
+
msgstr "Número de Factura"
|
174 |
+
|
175 |
+
#: ../includes/class-wcdn-settings.php:297
|
176 |
+
msgid "Create invoice numbers"
|
177 |
+
msgstr "Crear números de factua"
|
178 |
+
|
179 |
+
#: ../includes/class-wcdn-settings.php:304
|
180 |
+
msgid "Invoice Number Start"
|
181 |
+
msgstr "Comiezo de números de factura"
|
182 |
+
|
183 |
+
#: ../includes/class-wcdn-settings.php:311
|
184 |
+
msgid "Start the numbering at the specified number."
|
185 |
+
msgstr "Empezar el conteo en un número específico"
|
186 |
+
|
187 |
+
#: ../includes/class-wcdn-settings.php:313
|
188 |
+
msgid "Use only integers."
|
189 |
+
msgstr "Usar únicamente enteros"
|
190 |
+
|
191 |
+
#: ../includes/class-wcdn-settings.php:314
|
192 |
+
#: ../includes/class-wcdn-settings.php:330
|
193 |
+
#: ../includes/class-wcdn-settings.php:346
|
194 |
+
msgid "Already created invoice numbers are not affected by changes."
|
195 |
+
msgstr "Los números de factura ya creados no están afectados por los cambios"
|
196 |
+
|
197 |
+
#: ../includes/class-wcdn-settings.php:320
|
198 |
+
msgid "Invoice Number Prefix"
|
199 |
+
msgstr "Prefijo de Número de Factura"
|
200 |
+
|
201 |
+
#: ../includes/class-wcdn-settings.php:327
|
202 |
+
msgid "This text will be prepended to the invoice number."
|
203 |
+
msgstr "Este texto será adjuntado al número de factura"
|
204 |
+
|
205 |
+
#: ../includes/class-wcdn-settings.php:329
|
206 |
+
#, fuzzy
|
207 |
+
msgid "Leave blank to not add a prefix."
|
208 |
+
msgstr "Dejar en blanco para no imprimir la dirección."
|
209 |
|
210 |
+
#: ../includes/class-wcdn-settings.php:336
|
211 |
+
msgid "Invoice Number Suffix"
|
212 |
+
msgstr "Sufijo de número de factua"
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
+
#: ../includes/class-wcdn-settings.php:343
|
215 |
+
msgid "This text will be appended to the invoice number."
|
216 |
+
msgstr "Este texto sera anexado al número de factura"
|
217 |
|
218 |
+
#: ../includes/class-wcdn-settings.php:345
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Leave blank to not add a suffix."
|
221 |
+
msgstr "Dejar en blanco para no imprimir el pie de página."
|
222 |
|
223 |
+
#: ../includes/class-wcdn-settings.php:352
|
224 |
+
#, fuzzy
|
225 |
+
msgid "Sequential Order Number"
|
226 |
+
msgstr "Número de pedido secuencial"
|
227 |
|
228 |
+
#: ../includes/class-wcdn-settings.php:356
|
229 |
+
msgid "Sequential numbering is enabled."
|
230 |
+
msgstr "La numeración secuencial esta activada."
|
|
|
231 |
|
232 |
+
#: ../includes/class-wcdn-settings.php:358
|
233 |
+
#, php-format
|
234 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
235 |
+
msgstr "Instalar y activar el plugin gratuito <a href=\"%s\">WooCommerce Números de Pedido Secuenciales</a>."
|
236 |
|
237 |
+
#: ../includes/class-wcdn-writepanel.php:83
|
238 |
+
#: ../includes/class-wcdn-writepanel.php:84
|
239 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
240 |
+
#: ../includes/class-wcdn-writepanel.php:109
|
241 |
+
#: ../includes/class-wcdn-writepanel.php:205
|
242 |
+
msgid "Print Invoice"
|
243 |
+
msgstr "Imprimir Factura"
|
244 |
|
245 |
+
#: ../includes/class-wcdn-writepanel.php:86
|
246 |
+
#: ../includes/class-wcdn-writepanel.php:87
|
247 |
+
#: ../includes/class-wcdn-writepanel.php:111
|
248 |
+
#: ../includes/class-wcdn-writepanel.php:112
|
249 |
+
#: ../includes/class-wcdn-writepanel.php:206
|
250 |
+
msgid "Print Delivery Note"
|
251 |
+
msgstr "Imprimir Nota de Entrega"
|
252 |
|
253 |
+
#: ../includes/class-wcdn-writepanel.php:89
|
254 |
+
#: ../includes/class-wcdn-writepanel.php:90
|
255 |
+
#: ../includes/class-wcdn-writepanel.php:115
|
256 |
+
#: ../includes/class-wcdn-writepanel.php:116
|
257 |
+
#: ../includes/class-wcdn-writepanel.php:207
|
258 |
+
#, fuzzy
|
259 |
+
msgid "Print Receipt"
|
260 |
+
msgstr "Imprimir Factura"
|
261 |
|
262 |
+
#: ../includes/class-wcdn-writepanel.php:176
|
263 |
+
#, fuzzy, php-format
|
264 |
+
msgid "Invoice created."
|
265 |
+
msgid_plural "%s invoices created."
|
266 |
+
msgstr[0] "Factura"
|
267 |
+
msgstr[1] "Factura"
|
268 |
+
|
269 |
+
#: ../includes/class-wcdn-writepanel.php:178
|
270 |
+
#, fuzzy, php-format
|
271 |
+
msgid "Delivery note created."
|
272 |
+
msgid_plural "%s delivery notes created."
|
273 |
+
msgstr[0] "Nota de Entrega"
|
274 |
+
msgstr[1] "Nota de Entrega"
|
275 |
+
|
276 |
+
#: ../includes/class-wcdn-writepanel.php:180
|
277 |
+
#, php-format
|
278 |
+
msgid "Receipt created."
|
279 |
+
msgid_plural "%s receipts created."
|
280 |
+
msgstr[0] "Recibo creado"
|
281 |
+
msgstr[1] "%s recibos creados"
|
282 |
+
|
283 |
+
#: ../includes/class-wcdn-writepanel.php:184
|
284 |
+
#, fuzzy
|
285 |
+
msgid "Print now"
|
286 |
+
msgstr "Imprimir ahora"
|
287 |
+
|
288 |
+
#: ../includes/class-wcdn-writepanel.php:195
|
289 |
+
#, fuzzy
|
290 |
+
msgid "Order Printing"
|
291 |
+
msgstr "Imprimir pedido"
|
292 |
|
293 |
+
#: ../includes/class-wcdn-writepanel.php:218
|
294 |
+
msgid "Invoice number: "
|
295 |
+
msgstr "Número de factura: "
|
296 |
|
297 |
+
#: ../includes/class-wcdn-writepanel.php:219
|
298 |
+
#, fuzzy
|
299 |
+
msgid "Invoice date: "
|
300 |
+
msgstr "Fecha de factura:"
|
301 |
|
302 |
+
#: ../includes/wcdn-template-functions.php:32
|
303 |
+
msgid "Invoice"
|
304 |
+
msgstr "Factura"
|
305 |
|
306 |
+
#: ../includes/wcdn-template-functions.php:34
|
307 |
+
msgid "Delivery Note"
|
308 |
+
msgstr "Nota de Entrega"
|
309 |
|
310 |
+
#: ../includes/wcdn-template-functions.php:36
|
311 |
+
msgid "Receipt"
|
312 |
+
msgstr ""
|
313 |
|
314 |
+
#: ../includes/wcdn-template-functions.php:38
|
315 |
+
#, fuzzy
|
316 |
+
msgid "Order"
|
317 |
+
msgstr "Imprimir pedido"
|
318 |
|
319 |
+
#: ../includes/wcdn-template-functions.php:215
|
320 |
+
msgid "Order Number"
|
321 |
+
msgstr "Numero de Pedido"
|
322 |
|
323 |
+
#: ../includes/wcdn-template-functions.php:220
|
324 |
+
msgid "Order Date"
|
325 |
+
msgstr "Fecha de pedido"
|
326 |
|
327 |
+
#: ../includes/wcdn-template-functions.php:225
|
328 |
+
msgid "Payment Method"
|
329 |
+
msgstr "Forma de Pago"
|
330 |
|
331 |
+
# @ woocommerce-delivery-notes
|
332 |
+
#: ../includes/wcdn-template-functions.php:231
|
333 |
+
msgid "Email"
|
334 |
+
msgstr "Email"
|
335 |
|
336 |
+
# @ woocommerce-delivery-notes
|
337 |
+
#: ../includes/wcdn-template-functions.php:238
|
338 |
+
msgid "Telephone"
|
339 |
+
msgstr "Teléfono"
|
340 |
|
341 |
+
#: ../includes/wcdn-template-functions.php:271
|
342 |
+
msgid "SKU:"
|
343 |
+
msgstr "SKU:"
|
344 |
|
345 |
+
#: ../templates/print-order/print-content.php:28
|
346 |
+
msgid "Billing Address"
|
347 |
+
msgstr "Dirección de Facturación"
|
348 |
|
349 |
+
#: ../templates/print-order/print-content.php:31
|
350 |
+
#: ../templates/print-order/print-content.php:42
|
351 |
+
msgid "N/A"
|
352 |
+
msgstr "No Disponible"
|
|
|
353 |
|
354 |
+
#: ../templates/print-order/print-content.php:39
|
355 |
+
msgid "Shipping Address"
|
356 |
+
msgstr "Dirección de Envío"
|
|
|
|
|
|
|
|
|
357 |
|
358 |
+
#: ../templates/print-order/print-content.php:74
|
359 |
+
msgid "Product"
|
360 |
+
msgstr "Producto"
|
361 |
|
362 |
+
#: ../templates/print-order/print-content.php:75
|
363 |
+
msgid "Quantity"
|
364 |
+
msgstr "Cantidad"
|
365 |
|
366 |
+
#: ../templates/print-order/print-content.php:76
|
367 |
+
#, fuzzy
|
368 |
+
msgid "Total"
|
369 |
+
msgstr "Total"
|
370 |
|
371 |
+
#: ../templates/print-order/print-content.php:100
|
372 |
+
msgid "Download:"
|
373 |
+
msgstr "Descarga:"
|
374 |
|
375 |
+
# @ woocommerce-delivery-notes
|
376 |
+
#: ../templates/print-order/print-content.php:101
|
377 |
+
#, php-format
|
378 |
+
msgid "%s Files"
|
379 |
+
msgstr "%s Ficheros"
|
380 |
|
381 |
+
#: ../templates/print-order/print-content.php:148
|
382 |
+
#, fuzzy
|
383 |
+
msgid "Customer Note"
|
384 |
+
msgstr "Notas del Cliente"
|
385 |
|
386 |
+
#: ../woocommerce-delivery-notes.php:144
|
387 |
+
msgid "Go to the settings page"
|
388 |
+
msgstr "Ir a la página de ajustes"
|
389 |
|
390 |
+
#: ../woocommerce-delivery-notes.php:144
|
391 |
+
msgid "Settings"
|
392 |
+
msgstr "Ajustes"
|
|
|
|
|
393 |
|
394 |
+
#~ msgid "2.0"
|
395 |
+
#~ msgstr "2.0"
|
396 |
+
|
397 |
+
#~ msgid "Get Community Support"
|
398 |
+
#~ msgstr "Obten Soporte de la comunidad"
|
399 |
+
|
400 |
+
#~ msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
401 |
+
#~ msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
402 |
+
|
403 |
+
#~ msgid "You do not have sufficient permissions to access this page."
|
404 |
+
#~ msgstr "No tienes los permisos suficientes para acceder a esta página."
|
405 |
+
|
406 |
+
#~ msgid "FAQ"
|
407 |
+
#~ msgstr "FAQ"
|
408 |
+
|
409 |
+
#~ msgid "Support"
|
410 |
+
#~ msgstr "Soporte"
|
411 |
+
|
412 |
+
#~ msgid "Weight:"
|
413 |
+
#~ msgstr "Peso:"
|
414 |
+
|
415 |
+
#~ msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
416 |
+
#~ msgstr "Plugin: WooCommerce Imprimir Facturas & Notas de Entrega"
|
417 |
+
|
418 |
+
#~ msgid "About the Plugin"
|
419 |
+
#~ msgstr "Acerca del Plugin"
|
420 |
+
|
421 |
+
#~ msgid "For more information:"
|
422 |
+
#~ msgstr "Para más información:"
|
423 |
+
|
424 |
+
#~ msgid "Frequently Asked Questions"
|
425 |
+
#~ msgstr "Preguntas más frecuentes"
|
426 |
+
|
427 |
+
#~ msgid "Project on WordPress.org"
|
428 |
+
#~ msgstr "Proyecto en WordPress.org"
|
429 |
+
|
430 |
+
#~ msgid "Project on GitHub"
|
431 |
+
#~ msgstr "Proyecto en GitHub"
|
432 |
+
|
433 |
+
#~ msgid "Invoices and Delivery Notes"
|
434 |
+
#~ msgstr "Facturas y Notas de Entrega"
|
435 |
+
|
436 |
+
#~ msgid "Personal Notes"
|
437 |
+
#~ msgstr "Notas Personales"
|
438 |
+
|
439 |
+
#~ msgid "Order Numbering Options"
|
440 |
+
#~ msgstr "Opciones de Numeración del pedido"
|
441 |
+
|
442 |
+
#~ msgid "Recipient"
|
443 |
+
#~ msgstr "Destinatario"
|
444 |
+
|
445 |
+
#~ msgid "WooCommerce Print Invoices & Delivery Notes"
|
446 |
+
#~ msgstr "WooCommerce Imprimir Facturas & Notas de Entrega"
|
447 |
+
|
448 |
+
#~ msgid ""
|
449 |
+
#~ "Print order invoices & delivery notes for WooCommerce shop plugin. You "
|
450 |
+
#~ "can add company/shop info as well as personal notes & policies to print "
|
451 |
+
#~ "pages."
|
452 |
+
#~ msgstr ""
|
453 |
+
#~ "Imprime facturas de pedido y notas de entrega para el plugin WooCommerce. "
|
454 |
+
#~ "Puedes añadir información de tu empresa/tienda, así como notas personales "
|
455 |
+
#~ "y cláusulas o condiciones de uso a las páginas a imprimir."
|
456 |
+
|
457 |
+
#~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
458 |
+
#~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
459 |
+
|
460 |
+
#~ msgid ""
|
461 |
+
#~ "This plugin enables you to add a Invoice or simple Delivery Note page for "
|
462 |
+
#~ "printing for your orders in WooCommerce shop plugin. You can add your "
|
463 |
+
#~ "company postal address, further add personal notes, refund or other "
|
464 |
+
#~ "policies and a footer note/branding. This helps speed up your daily shop "
|
465 |
+
#~ "and order management. In some countries (e.g. in the European Union) it "
|
466 |
+
#~ "is also required to advice the customer with proper refund policies so "
|
467 |
+
#~ "this little plugin might help you a bit with that too."
|
468 |
+
#~ msgstr ""
|
469 |
+
#~ "Este plugin permite añadir una factura o una nota de entrega simple para "
|
470 |
+
#~ "imprimir tus pedidos en el plugin WooCommerce. Puedes añadir la dirección "
|
471 |
+
#~ "postal de tu empresa, añadir notas personales, políticas de devolución, "
|
472 |
+
#~ "condiciones de uso u otras cláusulas y notas a pie de página. Esto ayuda "
|
473 |
+
#~ "a agilizar tus tareas diarias y la gestión de pedidos. En algunos países "
|
474 |
+
#~ "(p.ej en la Unión Europea) es obligatorio avisar al cliente con las "
|
475 |
+
#~ "políticas de devolución de la tienda, así que este pequeño plugin también "
|
476 |
+
#~ "podrá ayudarte un poco con eso."
|
477 |
+
|
478 |
+
#~ msgid ""
|
479 |
+
#~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to "
|
480 |
+
#~ "a single order view. On the right side you will see the Order Print meta "
|
481 |
+
#~ "box. Click one of the buttons and you get the invoice or delivery note "
|
482 |
+
#~ "printing page. Yes, it is that easy :-)."
|
483 |
+
#~ msgstr ""
|
484 |
+
#~ "Mira debajo de <a href=\"%1$s\">WooCommerce > Pedidos</a> y allí "
|
485 |
+
#~ "estará. \n"
|
486 |
+
#~ "En el lado derecho veras el meta box de Imprimir Pedido. Haz click en uno "
|
487 |
+
#~ "de los botones y obtendrás tu Factura o Nota de Entrega para imprimir. Si "
|
488 |
+
#~ "es así de fácil :-)."
|
languages/woocommerce-delivery-notes-et.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-et.po
ADDED
@@ -0,0 +1,471 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
+
msgid ""
|
9 |
+
msgstr ""
|
10 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2014-12-29 12:21+0200\n"
|
13 |
+
"PO-Revision-Date: 2014-12-29 13:07+0200\n"
|
14 |
+
"Last-Translator: Risto Niinemets <risto@konekt.ee>\n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"Language: et_EE\n"
|
17 |
+
"MIME-Version: 1.0\n"
|
18 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
+
"Content-Transfer-Encoding: 8bit\n"
|
20 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
+
"X-Generator: Poedit 1.7.1\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
24 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
25 |
+
"X-Poedit-Basepath: .\n"
|
26 |
+
"X-Textdomain-Support: yes\n"
|
27 |
+
"X-Poedit-SearchPath-0: ..\n"
|
28 |
+
|
29 |
+
#: ../includes/class-wcdn-settings.php:72
|
30 |
+
msgid "Do you really want to reset the counter to zero?"
|
31 |
+
msgstr "Kas oled kindel, et soovid algseadistada arvenumbri?"
|
32 |
+
|
33 |
+
# @ woocommerce-delivery-notes
|
34 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55 ../includes/class-wcdn-theme.php:90
|
35 |
+
#: ../includes/wcdn-template-functions.php:127
|
36 |
+
msgid "Print"
|
37 |
+
msgstr "Prindi"
|
38 |
+
|
39 |
+
# @ woocommerce-delivery-notes
|
40 |
+
#: ../includes/class-wcdn-settings.php:157
|
41 |
+
msgid "Print Order"
|
42 |
+
msgstr "Tellimuste printimine"
|
43 |
+
|
44 |
+
#: ../includes/class-wcdn-settings.php:176
|
45 |
+
#, php-format
|
46 |
+
msgid ""
|
47 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
48 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
49 |
+
msgstr ""
|
50 |
+
"Eelvaates on võimalik vaadata <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">arve</a>, <a href=\"%2$s\" target="
|
51 |
+
"\"%4$s\" class=\"%5$s\">saatepaberi</a> ning <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">kviitungi</a> "
|
52 |
+
"kujundust."
|
53 |
+
|
54 |
+
# @ woocommerce-delivery-notes
|
55 |
+
#: ../includes/class-wcdn-settings.php:177
|
56 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
57 |
+
msgstr "Arvete, saatepaberite ning kviitungite kujunduse muutmise kohta on kirjas readme failis FAQ sektsioonis."
|
58 |
+
|
59 |
+
# @ woocommerce-delivery-notes
|
60 |
+
#: ../includes/class-wcdn-settings.php:188
|
61 |
+
msgid "Company/Shop Logo"
|
62 |
+
msgstr "Ettevõtte logo"
|
63 |
+
|
64 |
+
# @ woocommerce-delivery-notes
|
65 |
+
#: ../includes/class-wcdn-settings.php:194
|
66 |
+
msgid "Remove Logo"
|
67 |
+
msgstr "Eemalda logo"
|
68 |
+
|
69 |
+
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-settings.php:195
|
71 |
+
msgid "Set Logo"
|
72 |
+
msgstr "Määra logo"
|
73 |
+
|
74 |
+
# @ woocommerce-delivery-notes
|
75 |
+
#: ../includes/class-wcdn-settings.php:199
|
76 |
+
msgid "A company/shop logo representing your business."
|
77 |
+
msgstr "Ettevõtte/poe tunnusgraafika."
|
78 |
+
|
79 |
+
# @ woocommerce-delivery-notes
|
80 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
81 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
82 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
83 |
+
#: ../includes/class-wcdn-settings.php:369 ../includes/class-wcdn-settings.php:384
|
84 |
+
#: ../includes/class-wcdn-settings.php:399
|
85 |
+
msgid "Note:"
|
86 |
+
msgstr "Märkus:"
|
87 |
+
|
88 |
+
# @ woocommerce-delivery-notes
|
89 |
+
#: ../includes/class-wcdn-settings.php:201
|
90 |
+
msgid ""
|
91 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
92 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
93 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
94 |
+
msgstr ""
|
95 |
+
"Logo printimisel on pikslite tihedus automaatselt 8 korda kõrgem kui originaalis. See tähendab, et prinditud 1 "
|
96 |
+
"toll (2.54cm) on vastav umbes 288 pikslile arvuti ekraanil. Näiteks: logo laiusega 576 pikslit ning kõrgusega 288 "
|
97 |
+
"pikslit, on prinditult umbes 2 tolli laiune ning 1 tolli kõrgune."
|
98 |
+
|
99 |
+
# @ woocommerce-delivery-notes
|
100 |
+
#: ../includes/class-wcdn-settings.php:207
|
101 |
+
msgid "Company/Shop Name"
|
102 |
+
msgstr "Ettevõtte nimi"
|
103 |
+
|
104 |
+
# @ woocommerce-delivery-notes
|
105 |
+
#: ../includes/class-wcdn-settings.php:212
|
106 |
+
msgid "Your company/shop name for the Delivery Note."
|
107 |
+
msgstr "Sinu ettevõtte/poe nimetus saatepaberil."
|
108 |
+
|
109 |
+
# @ woocommerce-delivery-notes
|
110 |
+
#: ../includes/class-wcdn-settings.php:214
|
111 |
+
msgid ""
|
112 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
113 |
+
"Logo is set."
|
114 |
+
msgstr ""
|
115 |
+
"Tühjaks jätmisel kasutatakse lehekülje vaikimisi pealkirja, mis on seadistatud sätetes. Nime ei näidata juhul, "
|
116 |
+
"kui logo on määratud."
|
117 |
+
|
118 |
+
# @ woocommerce-delivery-notes
|
119 |
+
#: ../includes/class-wcdn-settings.php:220
|
120 |
+
msgid "Company/Shop Address"
|
121 |
+
msgstr "Ettevõtte aadress"
|
122 |
+
|
123 |
+
# @ woocommerce-delivery-notes
|
124 |
+
#: ../includes/class-wcdn-settings.php:225
|
125 |
+
msgid ""
|
126 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
127 |
+
"shop name."
|
128 |
+
msgstr "Ettevõtte/poe postiaadress, e-post või hoopis telefoni number, mis prinditakse nime järele."
|
129 |
+
|
130 |
+
# @ woocommerce-delivery-notes
|
131 |
+
#: ../includes/class-wcdn-settings.php:227
|
132 |
+
msgid "Leave blank to not print an address."
|
133 |
+
msgstr "Aadressi mitte printimiseks jäta see tühjaks."
|
134 |
+
|
135 |
+
#: ../includes/class-wcdn-settings.php:233
|
136 |
+
msgid "Complimentary Close"
|
137 |
+
msgstr "Täiendav informatsioon"
|
138 |
+
|
139 |
+
# @ woocommerce-delivery-notes
|
140 |
+
#: ../includes/class-wcdn-settings.php:238
|
141 |
+
msgid ""
|
142 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
143 |
+
msgstr "Lisa näiteks tänutähed, hooajaline tervitus või midagi sarnast (näiteks Aitäh tellimuse eest! vms)."
|
144 |
+
|
145 |
+
# @ woocommerce-delivery-notes
|
146 |
+
#: ../includes/class-wcdn-settings.php:240
|
147 |
+
msgid "Leave blank to not print any personal notes."
|
148 |
+
msgstr "Täiendava informatsiooni mitte printimiseks jäta see tühjaks."
|
149 |
+
|
150 |
+
# @ woocommerce-delivery-notes
|
151 |
+
#: ../includes/class-wcdn-settings.php:246
|
152 |
+
msgid "Returns Policy, Conditions, etc"
|
153 |
+
msgstr "Tingimused"
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:251
|
157 |
+
msgid ""
|
158 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
159 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
160 |
+
"required info in accordance with the statutory regulations."
|
161 |
+
msgstr ""
|
162 |
+
"Siia on võimalik lisada tagastamise ja ostutingimused või muud taolist. Näiteks lisa tagastamise tingimused "
|
163 |
+
"juhuks, kui klient soovib saata midagi tagasi. Euroopa liidus on selline informatsioon nõutud."
|
164 |
+
|
165 |
+
# @ woocommerce-delivery-notes
|
166 |
+
#: ../includes/class-wcdn-settings.php:253
|
167 |
+
msgid "Leave blank to not print any policies or conditions."
|
168 |
+
msgstr "Kasutustingimuste mitte printimiseks jäta see tühjaks."
|
169 |
+
|
170 |
+
# @ woocommerce-delivery-notes
|
171 |
+
#: ../includes/class-wcdn-settings.php:259
|
172 |
+
msgid "Footer"
|
173 |
+
msgstr "Jalus"
|
174 |
+
|
175 |
+
# @ woocommerce-delivery-notes
|
176 |
+
#: ../includes/class-wcdn-settings.php:264
|
177 |
+
msgid ""
|
178 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
179 |
+
"branded."
|
180 |
+
msgstr ""
|
181 |
+
"Lisa jalusesse veel lisaks informatsiooni, nagu näiteks e-posti aadress, telefon, kasutusõigused (copyright) või "
|
182 |
+
"muud taolist. See muudab prinditud leheküljed rohkem esinduslikumaks."
|
183 |
+
|
184 |
+
# @ woocommerce-delivery-notes
|
185 |
+
#: ../includes/class-wcdn-settings.php:266
|
186 |
+
msgid "Leave blank to not print a footer."
|
187 |
+
msgstr "Jaluse mitte printimiseks jäta see tühjaks."
|
188 |
+
|
189 |
+
#: ../includes/class-wcdn-settings.php:272
|
190 |
+
msgid "Types"
|
191 |
+
msgstr "Funktsioonid"
|
192 |
+
|
193 |
+
#: ../includes/class-wcdn-settings.php:279
|
194 |
+
msgid "Enable Invoices"
|
195 |
+
msgstr "Aktiveeri arved"
|
196 |
+
|
197 |
+
#: ../includes/class-wcdn-settings.php:286
|
198 |
+
msgid "Enable Delivery Notes"
|
199 |
+
msgstr "Aktiveeri saatekirjad"
|
200 |
+
|
201 |
+
#: ../includes/class-wcdn-settings.php:293
|
202 |
+
msgid "Enable Receipts"
|
203 |
+
msgstr "Aktiveeri kviitungid"
|
204 |
+
|
205 |
+
#: ../includes/class-wcdn-settings.php:301
|
206 |
+
msgid "Front-end Options"
|
207 |
+
msgstr "Avalehe seadistused"
|
208 |
+
|
209 |
+
# @ woocommerce-delivery-notes
|
210 |
+
#: ../includes/class-wcdn-settings.php:306
|
211 |
+
msgid "Print Page Endpoint"
|
212 |
+
msgstr "Printimise sihtpunkt"
|
213 |
+
|
214 |
+
# @ woocommerce-delivery-notes
|
215 |
+
#: ../includes/class-wcdn-settings.php:313
|
216 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
217 |
+
msgstr "Sihtpunkt lisatakse \"Minu Konto\" aadressi lõppu. See peab olema unikaalne."
|
218 |
+
|
219 |
+
#: ../includes/class-wcdn-settings.php:319
|
220 |
+
msgid "Print Buttons"
|
221 |
+
msgstr "Printimise nupud"
|
222 |
+
|
223 |
+
# @ woocommerce-delivery-notes
|
224 |
+
#: ../includes/class-wcdn-settings.php:326
|
225 |
+
msgid "Show print button on the \"View Order\" page"
|
226 |
+
msgstr "Näita printimise nuppu \"Vaata tellimust\" leheküljel"
|
227 |
+
|
228 |
+
# @ woocommerce-delivery-notes
|
229 |
+
#: ../includes/class-wcdn-settings.php:333
|
230 |
+
msgid "Show print buttons on the \"My Account\" page"
|
231 |
+
msgstr "Näita printimise nuppu \"Minu konto\" leheküljel"
|
232 |
+
|
233 |
+
# @ woocommerce-delivery-notes
|
234 |
+
#: ../includes/class-wcdn-settings.php:341
|
235 |
+
msgid "Order Numbering"
|
236 |
+
msgstr "Tellimuste nummerdamine"
|
237 |
+
|
238 |
+
#: ../includes/class-wcdn-settings.php:346 ../includes/wcdn-template-functions.php:224
|
239 |
+
msgid "Invoice Number"
|
240 |
+
msgstr "Arve number"
|
241 |
+
|
242 |
+
#: ../includes/class-wcdn-settings.php:354
|
243 |
+
msgid "Create invoice numbers"
|
244 |
+
msgstr "Aktiveeri arvete nummerdamine"
|
245 |
+
|
246 |
+
#: ../includes/class-wcdn-settings.php:361
|
247 |
+
msgid "Invoice Number Start"
|
248 |
+
msgstr "Arvete algusnumber"
|
249 |
+
|
250 |
+
#: ../includes/class-wcdn-settings.php:368
|
251 |
+
msgid "Start the numbering at the specified number."
|
252 |
+
msgstr "Nummerdamist alustatakse sellest numbrist alates."
|
253 |
+
|
254 |
+
#: ../includes/class-wcdn-settings.php:370
|
255 |
+
msgid "Use only integers."
|
256 |
+
msgstr "Kasuta ainult numbrilisi väärtuseid"
|
257 |
+
|
258 |
+
#: ../includes/class-wcdn-settings.php:376
|
259 |
+
msgid "Invoice Number Prefix"
|
260 |
+
msgstr "Arvenumbri eesliide"
|
261 |
+
|
262 |
+
#: ../includes/class-wcdn-settings.php:383
|
263 |
+
msgid "This text will be prepended to the invoice number."
|
264 |
+
msgstr "See tekst lisatakse arvenumbri ette."
|
265 |
+
|
266 |
+
#: ../includes/class-wcdn-settings.php:385
|
267 |
+
msgid "Leave blank to not add a prefix."
|
268 |
+
msgstr "Eesliite mitte lisamiseks jäta see tühjaks."
|
269 |
+
|
270 |
+
#: ../includes/class-wcdn-settings.php:391
|
271 |
+
msgid "Invoice Number Suffix"
|
272 |
+
msgstr "Arvenumbri järelliide"
|
273 |
+
|
274 |
+
#: ../includes/class-wcdn-settings.php:398
|
275 |
+
msgid "This text will be appended to the invoice number."
|
276 |
+
msgstr "See tekst lisatakse arvenumbri lõppu."
|
277 |
+
|
278 |
+
#: ../includes/class-wcdn-settings.php:400
|
279 |
+
msgid "Leave blank to not add a suffix."
|
280 |
+
msgstr "Järelliite mitte lisamiseks jäta see tühjaks."
|
281 |
+
|
282 |
+
#: ../includes/class-wcdn-settings.php:406
|
283 |
+
msgid "Invoice Number Counter"
|
284 |
+
msgstr "Arvenumbri hetkeväärtus"
|
285 |
+
|
286 |
+
#: ../includes/class-wcdn-settings.php:415
|
287 |
+
msgid "Reset Counter"
|
288 |
+
msgstr "Algseadista nummerdus"
|
289 |
+
|
290 |
+
#: ../includes/class-wcdn-settings.php:421
|
291 |
+
msgid "Sequential Order Number"
|
292 |
+
msgstr "Järjestikune tellimuste nummerdamine"
|
293 |
+
|
294 |
+
# @ woocommerce-delivery-notes
|
295 |
+
#: ../includes/class-wcdn-settings.php:426
|
296 |
+
msgid "Sequential numbering is enabled."
|
297 |
+
msgstr "Järjestikune nummerdamine on aktiveeritud."
|
298 |
+
|
299 |
+
# @ woocommerce-delivery-notes
|
300 |
+
#: ../includes/class-wcdn-settings.php:428
|
301 |
+
#, php-format
|
302 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
303 |
+
msgstr "Lae alla ja aktiveeri tasuta <a href=\"%s\">WooCommerce Sequential Order Numbers</a> plugin."
|
304 |
+
|
305 |
+
# @ woocommerce-delivery-notes
|
306 |
+
#: ../includes/class-wcdn-writepanel.php:101 ../includes/class-wcdn-writepanel.php:102
|
307 |
+
#: ../includes/class-wcdn-writepanel.php:135 ../includes/class-wcdn-writepanel.php:136
|
308 |
+
#: ../includes/class-wcdn-writepanel.php:267
|
309 |
+
msgid "Print Invoice"
|
310 |
+
msgstr "Prindi arve"
|
311 |
+
|
312 |
+
# @ woocommerce-delivery-notes
|
313 |
+
#: ../includes/class-wcdn-writepanel.php:107 ../includes/class-wcdn-writepanel.php:108
|
314 |
+
#: ../includes/class-wcdn-writepanel.php:140 ../includes/class-wcdn-writepanel.php:141
|
315 |
+
#: ../includes/class-wcdn-writepanel.php:271
|
316 |
+
msgid "Print Delivery Note"
|
317 |
+
msgstr "Prindi saatepaber"
|
318 |
+
|
319 |
+
#: ../includes/class-wcdn-writepanel.php:113 ../includes/class-wcdn-writepanel.php:114
|
320 |
+
#: ../includes/class-wcdn-writepanel.php:145 ../includes/class-wcdn-writepanel.php:146
|
321 |
+
#: ../includes/class-wcdn-writepanel.php:275
|
322 |
+
msgid "Print Receipt"
|
323 |
+
msgstr "Prindi kviitung"
|
324 |
+
|
325 |
+
# @ woocommerce-delivery-notes
|
326 |
+
#: ../includes/class-wcdn-writepanel.php:237
|
327 |
+
#, php-format
|
328 |
+
msgid "Invoice created."
|
329 |
+
msgid_plural "%s invoices created."
|
330 |
+
msgstr[0] "Arve on loodud."
|
331 |
+
msgstr[1] "Kokku loodi %s arvet."
|
332 |
+
|
333 |
+
# @ woocommerce-delivery-notes
|
334 |
+
#: ../includes/class-wcdn-writepanel.php:239
|
335 |
+
#, php-format
|
336 |
+
msgid "Delivery note created."
|
337 |
+
msgid_plural "%s delivery notes created."
|
338 |
+
msgstr[0] "Saatepaber on loodud."
|
339 |
+
msgstr[1] "Kokku loodi %s saatepaberit."
|
340 |
+
|
341 |
+
#: ../includes/class-wcdn-writepanel.php:241
|
342 |
+
#, php-format
|
343 |
+
msgid "Receipt created."
|
344 |
+
msgid_plural "%s receipts created."
|
345 |
+
msgstr[0] "Kviitung on loodud."
|
346 |
+
msgstr[1] "Kokku loodi %s kviitungit."
|
347 |
+
|
348 |
+
# @ woocommerce-delivery-notes
|
349 |
+
#: ../includes/class-wcdn-writepanel.php:245
|
350 |
+
msgid "Print now"
|
351 |
+
msgstr "Prindi välja"
|
352 |
+
|
353 |
+
# @ woocommerce-delivery-notes
|
354 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
355 |
+
msgid "Order Printing"
|
356 |
+
msgstr "Tellimuse printimine"
|
357 |
+
|
358 |
+
#: ../includes/class-wcdn-writepanel.php:288
|
359 |
+
msgid "Invoice number: "
|
360 |
+
msgstr "Arve number:"
|
361 |
+
|
362 |
+
#: ../includes/class-wcdn-writepanel.php:289
|
363 |
+
msgid "Invoice date: "
|
364 |
+
msgstr "Arve kuupäev:"
|
365 |
+
|
366 |
+
# @ woocommerce-delivery-notes
|
367 |
+
#: ../includes/wcdn-template-functions.php:39
|
368 |
+
msgid "Invoice"
|
369 |
+
msgstr "Arve"
|
370 |
+
|
371 |
+
# @ woocommerce-delivery-notes
|
372 |
+
#: ../includes/wcdn-template-functions.php:41
|
373 |
+
msgid "Delivery Note"
|
374 |
+
msgstr "Saatepaber"
|
375 |
+
|
376 |
+
#: ../includes/wcdn-template-functions.php:43
|
377 |
+
msgid "Receipt"
|
378 |
+
msgstr "Kviitung"
|
379 |
+
|
380 |
+
# @ woocommerce-delivery-notes
|
381 |
+
#: ../includes/wcdn-template-functions.php:45
|
382 |
+
msgid "Order"
|
383 |
+
msgstr "Tellimus"
|
384 |
+
|
385 |
+
# @ woocommerce-delivery-notes
|
386 |
+
#: ../includes/wcdn-template-functions.php:230
|
387 |
+
msgid "Order Number"
|
388 |
+
msgstr "Tellimuse nr"
|
389 |
+
|
390 |
+
# @ woocommerce-delivery-notes
|
391 |
+
#: ../includes/wcdn-template-functions.php:235
|
392 |
+
msgid "Order Date"
|
393 |
+
msgstr "Tellimuse kuupäev"
|
394 |
+
|
395 |
+
# @ woocommerce-delivery-notes
|
396 |
+
#: ../includes/wcdn-template-functions.php:240
|
397 |
+
msgid "Payment Method"
|
398 |
+
msgstr "Maksemeetod"
|
399 |
+
|
400 |
+
# @ woocommerce-delivery-notes
|
401 |
+
#: ../includes/wcdn-template-functions.php:246
|
402 |
+
msgid "Email"
|
403 |
+
msgstr "E-post"
|
404 |
+
|
405 |
+
# @ woocommerce-delivery-notes
|
406 |
+
#: ../includes/wcdn-template-functions.php:253
|
407 |
+
msgid "Telephone"
|
408 |
+
msgstr "Telefon"
|
409 |
+
|
410 |
+
#: ../includes/wcdn-template-functions.php:286
|
411 |
+
msgid "SKU:"
|
412 |
+
msgstr "SKU:"
|
413 |
+
|
414 |
+
# @ woocommerce-delivery-notes
|
415 |
+
#: ../templates/print-order/print-content.php:28
|
416 |
+
msgid "Billing Address"
|
417 |
+
msgstr "Arvelduse aadress"
|
418 |
+
|
419 |
+
# @ woocommerce-delivery-notes
|
420 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
421 |
+
msgid "N/A"
|
422 |
+
msgstr "N/A"
|
423 |
+
|
424 |
+
# @ woocommerce-delivery-notes
|
425 |
+
#: ../templates/print-order/print-content.php:37
|
426 |
+
msgid "Shipping Address"
|
427 |
+
msgstr "Tarneaadress"
|
428 |
+
|
429 |
+
# @ woocommerce-delivery-notes
|
430 |
+
#: ../templates/print-order/print-content.php:70
|
431 |
+
msgid "Product"
|
432 |
+
msgstr "Toote"
|
433 |
+
|
434 |
+
#: ../templates/print-order/print-content.php:71
|
435 |
+
msgid "Price"
|
436 |
+
msgstr "Hind"
|
437 |
+
|
438 |
+
#: ../templates/print-order/print-content.php:72
|
439 |
+
msgid "Quantity"
|
440 |
+
msgstr "Kogus"
|
441 |
+
|
442 |
+
# @ woocommerce-delivery-notes
|
443 |
+
#: ../templates/print-order/print-content.php:73
|
444 |
+
msgid "Total"
|
445 |
+
msgstr "Kokku"
|
446 |
+
|
447 |
+
# @ woocommerce-delivery-notes
|
448 |
+
#: ../templates/print-order/print-content.php:97
|
449 |
+
msgid "Download:"
|
450 |
+
msgstr "Lae alla:"
|
451 |
+
|
452 |
+
# @ woocommerce-delivery-notes
|
453 |
+
#: ../templates/print-order/print-content.php:98
|
454 |
+
#, php-format
|
455 |
+
msgid "%s Files"
|
456 |
+
msgstr "%s faili"
|
457 |
+
|
458 |
+
# @ woocommerce-delivery-notes
|
459 |
+
#: ../templates/print-order/print-content.php:149
|
460 |
+
msgid "Customer Note"
|
461 |
+
msgstr "Kliendi märkmed"
|
462 |
+
|
463 |
+
# @ woocommerce-delivery-notes
|
464 |
+
#: ../woocommerce-delivery-notes.php:180
|
465 |
+
msgid "Go to the settings page"
|
466 |
+
msgstr "Mine seadete leheküljele"
|
467 |
+
|
468 |
+
# @ woocommerce-delivery-notes
|
469 |
+
#: ../woocommerce-delivery-notes.php:180
|
470 |
+
msgid "Settings"
|
471 |
+
msgstr "Seaded"
|
languages/woocommerce-delivery-notes-fa_IR.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-fa_IR.po
CHANGED
@@ -2,14 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: برگه رسید فروشگاه\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date: 2014-
|
6 |
"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
|
7 |
"Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>\n"
|
8 |
"Language: fa\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.6.
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: برگه رسید فروشگاه\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2014-06-28 17:15+0100\n"
|
6 |
"Last-Translator: Khalil Delavaran <khalil.delavaran@gmail.com>\n"
|
7 |
"Language-Team: www.qooqnos.com <khalil.delavaran@gmail.com>\n"
|
8 |
"Language: fa\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.6.5\n"
|
13 |
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SearchPath-0: .\n"
|
languages/woocommerce-delivery-notes-fi.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-fi.po
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
# Translation of WooCommerce Print Invoices & Delivery Notes in Finnish
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-03-11 14:49+0100\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woocommerce-delivery-notes.php:0
|
41 |
-
msgid "2.0"
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr "Hanki yhteisön tukea"
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr "Kun kuva tulostetaan, sen pikselitiheys tulee automaattisesti olemaan kahdeksan kertaa korkeampi kuin alkuperäinen. Tämä tarkoittaa sitä, että 1 tulostettu cm vastaa noin 113 pikseliä näytöllä. Esimerkki: kuva jonka leveys on 576 pikseliä ja korkeus 288 pikseliä tulee näkymään tulostettuna suurinpiirtein koossa 6 cm / 3 cm."
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr "Tuote"
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr "Yhteensä"
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr "Lataa:"
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr "N/A"
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
-
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Yrityksen/kaupan logo"
|
72 |
-
|
73 |
-
#: classes/class-wcdn-settings.php:207
|
74 |
-
msgid "Remove Logo"
|
75 |
-
msgstr "Poista logo"
|
76 |
-
|
77 |
-
#: classes/class-wcdn-settings.php:208
|
78 |
-
msgid "Set Logo"
|
79 |
-
msgstr "Aseta logo"
|
80 |
-
|
81 |
-
#: classes/class-wcdn-settings.php:210
|
82 |
-
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr "Liiketoimintaasi edustava yrityksen/kaupan logo."
|
84 |
-
|
85 |
-
#: classes/class-wcdn-settings.php:223
|
86 |
-
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr "Lähetteessä näkyvä yrityksen/kaupan nimi."
|
88 |
-
|
89 |
-
#: classes/class-wcdn-settings.php:314
|
90 |
-
msgid "Sequential order number"
|
91 |
-
msgstr "Juokseva tilausnumero"
|
92 |
-
|
93 |
-
#: classes/class-wcdn-settings.php:318
|
94 |
-
msgid "Sequential numbering is enabled."
|
95 |
-
msgstr "Juokseva numerointi on käytössä."
|
96 |
-
|
97 |
-
#: classes/class-wcdn-settings.php:320
|
98 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
-
msgstr "Asenna ja aktivoi ilmainen <a href=\"%s\">WooCommerce Sequential Order Numbers</a> -lisäosa."
|
100 |
-
|
101 |
-
#: woocommerce-delivery-notes.php:0
|
102 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
-
|
105 |
-
#: woocommerce-delivery-notes.php:203
|
106 |
-
msgid "Delivery Note"
|
107 |
-
msgstr "Lähete"
|
108 |
-
|
109 |
-
#: templates/print/print-delivery-note.php:59
|
110 |
-
msgid "Quantity"
|
111 |
-
msgstr "Määrä"
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Sinulla ei ole riittäviä käyttöoikeuksia päästäksesi tälle sivulle."
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr "Siirry asetukset-sivulle"
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr "Asetukset"
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr "UKK"
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr "Tuki"
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr "Palautusoikeudet, ehdot, jne.:"
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr "Tnro:"
|
143 |
-
|
144 |
-
#: templates/print/print-delivery-note.php:69
|
145 |
-
msgid "Weight:"
|
146 |
-
msgstr "Paino:"
|
147 |
-
|
148 |
-
#: classes/class-wcdn-settings.php:134
|
149 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
-
msgstr "Lisäosa: WooCommerce Print Invoices & Delivery Notes"
|
151 |
-
|
152 |
-
#: classes/class-wcdn-settings.php:211
|
153 |
-
#: classes/class-wcdn-settings.php:224
|
154 |
-
#: classes/class-wcdn-settings.php:237
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Huomio:"
|
160 |
-
|
161 |
-
#: classes/class-wcdn-settings.php:236
|
162 |
-
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
-
msgstr "Yrityksen/kaupan postiosoite, joka tulostetaan heti yrityksen/kaupan nimen jälkeen, tilausrivien yläpuolelle."
|
164 |
-
|
165 |
-
#: classes/class-wcdn-settings.php:249
|
166 |
-
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
-
msgstr "Lisää joitain henkilökohtaisia huomioita, vuodenaikoihin liittyviä tervehdyksiä tai mitä tahansa (esim. Kiitos tilauksesta!, Hyvää joulua!, jne.)."
|
168 |
-
|
169 |
-
#: classes/class-wcdn-settings.php:275
|
170 |
-
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
-
msgstr "Lisää edelleen alatunnisteeseen tekstiä, tekijänoikeushuomautuksen tms. saadaksesi tulostussivun vastaamaan paremmin tarpeitasi."
|
172 |
-
|
173 |
-
#: classes/class-wcdn-settings.php:132
|
174 |
-
#: classes/class-wcdn-settings.php:135
|
175 |
-
msgid "About the Plugin"
|
176 |
-
msgstr "Tietoja lisäosasta"
|
177 |
-
|
178 |
-
#: classes/class-wcdn-settings.php:142
|
179 |
-
msgid "For more information:"
|
180 |
-
msgstr "Lisätietoja:"
|
181 |
-
|
182 |
-
#: classes/class-wcdn-settings.php:143
|
183 |
-
msgid "Frequently Asked Questions"
|
184 |
-
msgstr "Usein kysytyt kysymykset"
|
185 |
-
|
186 |
-
#: classes/class-wcdn-settings.php:145
|
187 |
-
msgid "Project on WordPress.org"
|
188 |
-
msgstr "Projekti WordPress.org:ssa"
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:146
|
191 |
-
msgid "Project on GitHub"
|
192 |
-
msgstr "Projekti GitHubissa"
|
193 |
-
|
194 |
-
#: classes/class-wcdn-settings.php:154
|
195 |
-
msgid "Print"
|
196 |
-
msgstr "Tulosta"
|
197 |
-
|
198 |
-
#: classes/class-wcdn-settings.php:194
|
199 |
-
msgid "Invoices and Delivery Notes"
|
200 |
-
msgstr "Laskut ja lähetteet"
|
201 |
-
|
202 |
-
#: classes/class-wcdn-settings.php:218
|
203 |
-
msgid "Company/Shop Name"
|
204 |
-
msgstr "Yrityksen/kaupan nimi"
|
205 |
-
|
206 |
-
#: classes/class-wcdn-settings.php:225
|
207 |
-
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
-
msgstr "Jätä tyhjäksi käyttääksesi WordPress-asetuksissa määriteltyä verkkosivun/blogin otsikkoa."
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:231
|
211 |
-
msgid "Company/Shop Address"
|
212 |
-
msgstr "Yrityksen/kaupan osoite"
|
213 |
-
|
214 |
-
#: classes/class-wcdn-settings.php:238
|
215 |
-
msgid "Leave blank to not print an address."
|
216 |
-
msgstr "Jätä tyhjäksi jättääksesi osoitteen tulostamatta."
|
217 |
-
|
218 |
-
#: classes/class-wcdn-settings.php:244
|
219 |
-
msgid "Personal Notes"
|
220 |
-
msgstr "Henkilökohtaiset huomiot"
|
221 |
-
|
222 |
-
#: classes/class-wcdn-settings.php:251
|
223 |
-
msgid "Leave blank to not print any personal notes."
|
224 |
-
msgstr "Jätä tyhjäksi jättääksesi henkilökohtaiset huomiot tulostamatta."
|
225 |
-
|
226 |
-
#: classes/class-wcdn-settings.php:262
|
227 |
-
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
228 |
-
msgstr "Täällä voit lisätä lisää käytäntöjä, ehtoja yms. Lisää esimerkiksi palautusehdot siinä tapauksessa, että asiakas haluaa lähettää joitain tuotteita takaisin. Joissain maissa (kuten Euroopan Unionissa) tämä vaaditaan, joten lisää kaikki vaadittava lakisääteinen tieto."
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:264
|
231 |
-
msgid "Leave blank to not print any policies or conditions."
|
232 |
-
msgstr "Jätä tyhjäksi jättääksesi käytännöt ja ehdot tulostamatta."
|
233 |
-
|
234 |
-
#: classes/class-wcdn-settings.php:270
|
235 |
-
msgid "Footer Imprint"
|
236 |
-
msgstr "Alatunnisteen merkintä"
|
237 |
-
|
238 |
-
#: classes/class-wcdn-settings.php:277
|
239 |
-
msgid "Leave blank to not print a footer."
|
240 |
-
msgstr "Jätä tyhjäksi jättääksesi alatunnisteen tulostumatta."
|
241 |
-
|
242 |
-
#: classes/class-wcdn-settings.php:309
|
243 |
-
msgid "Order Numbering Options"
|
244 |
-
msgstr "Tilauksen numerointivalinnat"
|
245 |
-
|
246 |
-
#: classes/class-wcdn-writepanel.php:92
|
247 |
-
msgid "Order Print"
|
248 |
-
msgstr "Tilauksen tulostus"
|
249 |
-
|
250 |
-
#: classes/class-wcdn-writepanel.php:76
|
251 |
-
#: classes/class-wcdn-writepanel.php:77
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr "Tulosta lasku"
|
255 |
-
|
256 |
-
#: classes/class-wcdn-writepanel.php:78
|
257 |
-
#: classes/class-wcdn-writepanel.php:80
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Tulosta lähete"
|
263 |
-
|
264 |
-
#: woocommerce-delivery-notes.php:201
|
265 |
-
msgid "Invoice"
|
266 |
-
msgstr "Lasku"
|
267 |
-
|
268 |
-
#: templates/print/print-delivery-note.php:20
|
269 |
-
msgid "Recipient"
|
270 |
-
msgstr "Vastaanottaja"
|
271 |
-
|
272 |
-
#: templates/print/print-delivery-note.php:96
|
273 |
-
msgid "Customer Notes"
|
274 |
-
msgstr "Asiakkaan huomautukset"
|
275 |
-
|
276 |
-
#: woocommerce-delivery-notes.php:0
|
277 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
-
msgstr " WooCommerce Print Invoices & Delivery Notes"
|
279 |
-
|
280 |
-
#: woocommerce-delivery-notes.php:0
|
281 |
-
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
-
msgstr "WooCommerce-kaupan lisäosa, joka tulostaa tilauksen laskut & lähetteet. Voit lisätä tulostussivulle yrityksen/kaupan tiedot kuten myös henkilökohtaiset huomiot & käytännöt."
|
283 |
-
|
284 |
-
#: woocommerce-delivery-notes.php:0
|
285 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
-
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
-
|
288 |
-
#: classes/class-wcdn-settings.php:136
|
289 |
-
msgid "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too."
|
290 |
-
msgstr "Tämä lisäosa mahdollistaa laskun tai yksinkertaisen lähetesivujen tulostamisen WooCommerce-kaupan tilauksista. Voit lisätä yrityksen postiosoitteen, henkilökohtaisen huomion, palautusoikeudet ja muut käytännöt sekä alatunnisteen huomiot. Tämä auttaa nopeuttamaan päivittäistä kaupan- ja tilaustenhallintaa. Joissain maissa (kuten Euroopan Unionissa) vaaditaan, että asiakkaille on palautuskäytännöt ohjeistettu riittävällä tasolla, joten tämä pieni lisäosa saattaa auttaa sinua myös hieman tässä."
|
291 |
-
|
292 |
-
#: classes/class-wcdn-settings.php:137
|
293 |
-
msgid "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-)."
|
294 |
-
msgstr "Katso kohdasta <a href=\"%1$s\">WooCommerce > Tilaukset</a> ja mene siellä yksittäisen tilauksen näkymään. Näet oikealla puolella Tilauksen tulostus -laatikon. Napsauta jotain painikkeista ja saat laskun tai lähetteen tulostussivun. Kyllä, se on niin helppoa :-)."
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-delivery-notes-fi_FI.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-fi_FI.po
ADDED
@@ -0,0 +1,500 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
5 |
+
"POT-Creation-Date: 2014-11-09 23:06+0100\n"
|
6 |
+
"PO-Revision-Date: 2014-12-04 15:20+0200\n"
|
7 |
+
"Last-Translator: Juhana Leinonen <juhana.leinonen@mantissa.fi>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: fi_FI\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 1.6.10\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
18 |
+
"esc_attr_e;esc_attr__\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Textdomain-Support: yes\n"
|
21 |
+
"X-Poedit-SearchPath-0: ..\n"
|
22 |
+
|
23 |
+
#: ../includes/class-wcdn-settings.php:72
|
24 |
+
msgid "Do you really want to reset the counter to zero?"
|
25 |
+
msgstr "Haluatko varmasti nollata laskurin?"
|
26 |
+
|
27 |
+
# @ woocommerce-delivery-notes
|
28 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
|
29 |
+
#: ../includes/class-wcdn-theme.php:90
|
30 |
+
#: ../includes/wcdn-template-functions.php:127
|
31 |
+
msgid "Print"
|
32 |
+
msgstr "Tulosta"
|
33 |
+
|
34 |
+
# @ woocommerce-delivery-notes
|
35 |
+
#: ../includes/class-wcdn-settings.php:157
|
36 |
+
msgid "Print Order"
|
37 |
+
msgstr "Tulosta tilaus"
|
38 |
+
|
39 |
+
#: ../includes/class-wcdn-settings.php:176
|
40 |
+
#, php-format
|
41 |
+
msgid ""
|
42 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
|
43 |
+
"a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
|
44 |
+
"href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
45 |
+
msgstr ""
|
46 |
+
"Voit esikatsella <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">lasku-</a>, "
|
47 |
+
"<a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">lähete-</a> tai <a href="
|
48 |
+
"\"%3$s\" target=\"%4$s\" class=\"%5$s\">kuittipohjaa</a>."
|
49 |
+
|
50 |
+
# @ woocommerce-delivery-notes
|
51 |
+
#: ../includes/class-wcdn-settings.php:177
|
52 |
+
msgid ""
|
53 |
+
"With the FAQ in the readme file you can learn how to customize the template."
|
54 |
+
msgstr "FAQ readme-tiedostossa kertoo kuinka muokata pohjaa."
|
55 |
+
|
56 |
+
# @ woocommerce-delivery-notes
|
57 |
+
#: ../includes/class-wcdn-settings.php:188
|
58 |
+
msgid "Company/Shop Logo"
|
59 |
+
msgstr "Yrityksen/kaupan logo"
|
60 |
+
|
61 |
+
# @ woocommerce-delivery-notes
|
62 |
+
#: ../includes/class-wcdn-settings.php:194
|
63 |
+
msgid "Remove Logo"
|
64 |
+
msgstr "Poista logo"
|
65 |
+
|
66 |
+
# @ woocommerce-delivery-notes
|
67 |
+
#: ../includes/class-wcdn-settings.php:195
|
68 |
+
msgid "Set Logo"
|
69 |
+
msgstr "Aseta logo"
|
70 |
+
|
71 |
+
# @ woocommerce-delivery-notes
|
72 |
+
#: ../includes/class-wcdn-settings.php:199
|
73 |
+
msgid "A company/shop logo representing your business."
|
74 |
+
msgstr "Yrityksen/kaupan logo joka kuvaa yritystäsi."
|
75 |
+
|
76 |
+
# @ woocommerce-delivery-notes
|
77 |
+
#: ../includes/class-wcdn-settings.php:200
|
78 |
+
#: ../includes/class-wcdn-settings.php:213
|
79 |
+
#: ../includes/class-wcdn-settings.php:226
|
80 |
+
#: ../includes/class-wcdn-settings.php:239
|
81 |
+
#: ../includes/class-wcdn-settings.php:252
|
82 |
+
#: ../includes/class-wcdn-settings.php:265
|
83 |
+
#: ../includes/class-wcdn-settings.php:369
|
84 |
+
#: ../includes/class-wcdn-settings.php:384
|
85 |
+
#: ../includes/class-wcdn-settings.php:399
|
86 |
+
msgid "Note:"
|
87 |
+
msgstr "Huom:"
|
88 |
+
|
89 |
+
# @ woocommerce-delivery-notes
|
90 |
+
#: ../includes/class-wcdn-settings.php:201
|
91 |
+
msgid ""
|
92 |
+
"When the image is printed, its pixel density will automatically be eight "
|
93 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
94 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
95 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
96 |
+
"to 1 inch."
|
97 |
+
msgstr ""
|
98 |
+
"Kun kuva tulostetaan, sen pikselitiheys on automaattisesti "
|
99 |
+
"kahdeksankertainen alkuperäiseen nähden. Tämä tarkoittaa että yksi tuuma "
|
100 |
+
"paperilla vastaa noin 288 pikseliä ruudulla. Esimerkki: kuva jonka leveys on "
|
101 |
+
"576 pikseliä ja korkeus 288 pikseliä tulostuu noin 2 x 1 tuuman (5 cm x 2,5 "
|
102 |
+
"cm) kokoisena."
|
103 |
+
|
104 |
+
# @ woocommerce-delivery-notes
|
105 |
+
#: ../includes/class-wcdn-settings.php:207
|
106 |
+
msgid "Company/Shop Name"
|
107 |
+
msgstr "Yrityksen/kaupan nimi"
|
108 |
+
|
109 |
+
# @ woocommerce-delivery-notes
|
110 |
+
#: ../includes/class-wcdn-settings.php:212
|
111 |
+
msgid "Your company/shop name for the Delivery Note."
|
112 |
+
msgstr "Yrityksen/kaupan nimi lähetteessä."
|
113 |
+
|
114 |
+
# @ woocommerce-delivery-notes
|
115 |
+
#: ../includes/class-wcdn-settings.php:214
|
116 |
+
msgid ""
|
117 |
+
"Leave blank to use the default Website/Blog title defined in WordPress "
|
118 |
+
"settings. The name will be ignored when a Logo is set."
|
119 |
+
msgstr ""
|
120 |
+
"Jätä tyhjäksi käyttääksesi oletusarvoista verkkosivun/blogin otsikkoa "
|
121 |
+
"WordPressin asetuksissa. Nimeä ei näytetä jos logo on asetettu."
|
122 |
+
|
123 |
+
# @ woocommerce-delivery-notes
|
124 |
+
#: ../includes/class-wcdn-settings.php:220
|
125 |
+
msgid "Company/Shop Address"
|
126 |
+
msgstr "Yrityksen/kaupan osoite"
|
127 |
+
|
128 |
+
# @ woocommerce-delivery-notes
|
129 |
+
#: ../includes/class-wcdn-settings.php:225
|
130 |
+
msgid ""
|
131 |
+
"The postal address of the company/shop or even e-mail or telephone, which "
|
132 |
+
"gets printed right after the company/shop name."
|
133 |
+
msgstr ""
|
134 |
+
"Yrityksen/kaupan postiosoite tai sähköposti tai puhelinnumero, joka tulostuu "
|
135 |
+
"heti yrityksen/kaupan nimen jälkeen."
|
136 |
+
|
137 |
+
# @ woocommerce-delivery-notes
|
138 |
+
#: ../includes/class-wcdn-settings.php:227
|
139 |
+
msgid "Leave blank to not print an address."
|
140 |
+
msgstr "Jättämällä tyhjäksi osoitetta ei tulosteta."
|
141 |
+
|
142 |
+
#: ../includes/class-wcdn-settings.php:233
|
143 |
+
msgid "Complimentary Close"
|
144 |
+
msgstr "Lopputervehdys"
|
145 |
+
|
146 |
+
# @ woocommerce-delivery-notes
|
147 |
+
#: ../includes/class-wcdn-settings.php:238
|
148 |
+
msgid ""
|
149 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
150 |
+
"Your Order!, Merry Christmas!, etc.)."
|
151 |
+
msgstr ""
|
152 |
+
"Lisää henkilökohtaisia viestejä, ajankohtaisia tervehdyksiä tai mitä tahansa "
|
153 |
+
"(esim. kiitos tilauksesta, hyvää joulua, jne)."
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:240
|
157 |
+
msgid "Leave blank to not print any personal notes."
|
158 |
+
msgstr "Jättämällä tyhjäksi lopputervehdystä ei näytetä."
|
159 |
+
|
160 |
+
# @ woocommerce-delivery-notes
|
161 |
+
#: ../includes/class-wcdn-settings.php:246
|
162 |
+
msgid "Returns Policy, Conditions, etc"
|
163 |
+
msgstr "Palautus- ja toimitusehdot jne."
|
164 |
+
|
165 |
+
# @ woocommerce-delivery-notes
|
166 |
+
#: ../includes/class-wcdn-settings.php:251
|
167 |
+
msgid ""
|
168 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
169 |
+
"returns policy in case the client would like to send back some goods. In "
|
170 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
171 |
+
"any required info in accordance with the statutory regulations."
|
172 |
+
msgstr ""
|
173 |
+
"Tähän voi lisätä muita ehtoja, esimerkiksi palautusehdot jos asiakas haluaa "
|
174 |
+
"palauttaa tuotteita. Joissain maissa, kuten Euroopan Unionin jäsenmaissa, "
|
175 |
+
"tämä on pakollista joten ole hyvä ja lisää paikallisten lakien vaatimat "
|
176 |
+
"tiedot."
|
177 |
+
|
178 |
+
# @ woocommerce-delivery-notes
|
179 |
+
#: ../includes/class-wcdn-settings.php:253
|
180 |
+
msgid "Leave blank to not print any policies or conditions."
|
181 |
+
msgstr "Jättämällä tyhjäksi ehtoja ei tulosteta."
|
182 |
+
|
183 |
+
# @ woocommerce-delivery-notes
|
184 |
+
#: ../includes/class-wcdn-settings.php:259
|
185 |
+
msgid "Footer"
|
186 |
+
msgstr "Alatunniste"
|
187 |
+
|
188 |
+
# @ woocommerce-delivery-notes
|
189 |
+
#: ../includes/class-wcdn-settings.php:264
|
190 |
+
msgid ""
|
191 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
192 |
+
"This makes the printed sheets a bit more branded."
|
193 |
+
msgstr ""
|
194 |
+
"Lisää muita alatunnisteita kuten sähköpostiosoite, puhelinnumero, "
|
195 |
+
"tekijänoikeuslauseke jne. Tämä antaa tulosteille ammattimaisemman ilmeen."
|
196 |
+
|
197 |
+
# @ woocommerce-delivery-notes
|
198 |
+
#: ../includes/class-wcdn-settings.php:266
|
199 |
+
msgid "Leave blank to not print a footer."
|
200 |
+
msgstr "Jättämällä tyhjäksi alatunnistetta ei tulosteta."
|
201 |
+
|
202 |
+
#: ../includes/class-wcdn-settings.php:272
|
203 |
+
msgid "Types"
|
204 |
+
msgstr "Tyypit"
|
205 |
+
|
206 |
+
#: ../includes/class-wcdn-settings.php:279
|
207 |
+
msgid "Enable Invoices"
|
208 |
+
msgstr "Ota laskut käyttöön"
|
209 |
+
|
210 |
+
#: ../includes/class-wcdn-settings.php:286
|
211 |
+
msgid "Enable Delivery Notes"
|
212 |
+
msgstr "Ota lähetteet käyttöön"
|
213 |
+
|
214 |
+
#: ../includes/class-wcdn-settings.php:293
|
215 |
+
msgid "Enable Receipts"
|
216 |
+
msgstr "Ota kuitit käyttöön"
|
217 |
+
|
218 |
+
#: ../includes/class-wcdn-settings.php:301
|
219 |
+
msgid "Front-end Options"
|
220 |
+
msgstr "Käyttöliittymän asetukset"
|
221 |
+
|
222 |
+
# @ woocommerce-delivery-notes
|
223 |
+
#: ../includes/class-wcdn-settings.php:306
|
224 |
+
msgid "Print Page Endpoint"
|
225 |
+
msgstr "Tulostussivun pääte"
|
226 |
+
|
227 |
+
# @ woocommerce-delivery-notes
|
228 |
+
#: ../includes/class-wcdn-settings.php:313
|
229 |
+
msgid ""
|
230 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
231 |
+
"should be unique."
|
232 |
+
msgstr ""
|
233 |
+
"Pääte lisätään sivun URL-osoitteeseen jolla tilaus tulostetaan. Sen tulee "
|
234 |
+
"olla yksilöllinen."
|
235 |
+
|
236 |
+
#: ../includes/class-wcdn-settings.php:319
|
237 |
+
msgid "Print Buttons"
|
238 |
+
msgstr "Tulostusnapit"
|
239 |
+
|
240 |
+
# @ woocommerce-delivery-notes
|
241 |
+
#: ../includes/class-wcdn-settings.php:326
|
242 |
+
msgid "Show print button on the \"View Order\" page"
|
243 |
+
msgstr "Näytä tulostusnappi \"Näytä tilaus\"-sivulla"
|
244 |
+
|
245 |
+
# @ woocommerce-delivery-notes
|
246 |
+
#: ../includes/class-wcdn-settings.php:333
|
247 |
+
msgid "Show print buttons on the \"My Account\" page"
|
248 |
+
msgstr "Näytä tulostusnapit \"Käyttäjätilini\"-sivulla"
|
249 |
+
|
250 |
+
# @ woocommerce-delivery-notes
|
251 |
+
#: ../includes/class-wcdn-settings.php:341
|
252 |
+
msgid "Order Numbering"
|
253 |
+
msgstr "Tilausten numerointi"
|
254 |
+
|
255 |
+
#: ../includes/class-wcdn-settings.php:346
|
256 |
+
#: ../includes/wcdn-template-functions.php:224
|
257 |
+
msgid "Invoice Number"
|
258 |
+
msgstr "Laskun numero"
|
259 |
+
|
260 |
+
#: ../includes/class-wcdn-settings.php:354
|
261 |
+
msgid "Create invoice numbers"
|
262 |
+
msgstr "Luo laskujen numerot"
|
263 |
+
|
264 |
+
#: ../includes/class-wcdn-settings.php:361
|
265 |
+
msgid "Invoice Number Start"
|
266 |
+
msgstr "Laskujen numeroinnin alku"
|
267 |
+
|
268 |
+
#: ../includes/class-wcdn-settings.php:368
|
269 |
+
msgid "Start the numbering at the specified number."
|
270 |
+
msgstr "Aloita numerointi tietystä numerosta."
|
271 |
+
|
272 |
+
#: ../includes/class-wcdn-settings.php:370
|
273 |
+
msgid "Use only integers."
|
274 |
+
msgstr "Käytä vain kokonaislukuja."
|
275 |
+
|
276 |
+
#: ../includes/class-wcdn-settings.php:376
|
277 |
+
msgid "Invoice Number Prefix"
|
278 |
+
msgstr "Laskunumeron alkuosa"
|
279 |
+
|
280 |
+
#: ../includes/class-wcdn-settings.php:383
|
281 |
+
msgid "This text will be prepended to the invoice number."
|
282 |
+
msgstr "Tämä teksti liitetään laskun numeron alkuun."
|
283 |
+
|
284 |
+
#: ../includes/class-wcdn-settings.php:385
|
285 |
+
msgid "Leave blank to not add a prefix."
|
286 |
+
msgstr "Jättämällä tyhjäksi alkuun ei liitetä mitään."
|
287 |
+
|
288 |
+
#: ../includes/class-wcdn-settings.php:391
|
289 |
+
msgid "Invoice Number Suffix"
|
290 |
+
msgstr "Laskunumeron loppuosa"
|
291 |
+
|
292 |
+
#: ../includes/class-wcdn-settings.php:398
|
293 |
+
msgid "This text will be appended to the invoice number."
|
294 |
+
msgstr "Tämä teksti liitetään laskun numeron jälkeen."
|
295 |
+
|
296 |
+
#: ../includes/class-wcdn-settings.php:400
|
297 |
+
msgid "Leave blank to not add a suffix."
|
298 |
+
msgstr "Jättämällä tyhjäksi loppuun ei liitetä mitään."
|
299 |
+
|
300 |
+
#: ../includes/class-wcdn-settings.php:406
|
301 |
+
msgid "Invoice Number Counter"
|
302 |
+
msgstr "Laskunumeron laskuri"
|
303 |
+
|
304 |
+
#: ../includes/class-wcdn-settings.php:415
|
305 |
+
msgid "Reset Counter"
|
306 |
+
msgstr "Nollaa laskuri"
|
307 |
+
|
308 |
+
#: ../includes/class-wcdn-settings.php:421
|
309 |
+
msgid "Sequential Order Number"
|
310 |
+
msgstr "Peräkkäiset tilausnumerot"
|
311 |
+
|
312 |
+
# @ woocommerce-delivery-notes
|
313 |
+
#: ../includes/class-wcdn-settings.php:426
|
314 |
+
msgid "Sequential numbering is enabled."
|
315 |
+
msgstr "Peräkkäinen numerointi on päällä."
|
316 |
+
|
317 |
+
# @ woocommerce-delivery-notes
|
318 |
+
#: ../includes/class-wcdn-settings.php:428
|
319 |
+
#, php-format
|
320 |
+
msgid ""
|
321 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
322 |
+
"Numbers</a> Plugin."
|
323 |
+
msgstr ""
|
324 |
+
"Asenna ja aktivoi ilmainen <a href=\"%s\">\"WooCommerce Sequential Order "
|
325 |
+
"Numbers\"</a> -liitännäinen."
|
326 |
+
|
327 |
+
# @ woocommerce-delivery-notes
|
328 |
+
#: ../includes/class-wcdn-writepanel.php:101
|
329 |
+
#: ../includes/class-wcdn-writepanel.php:102
|
330 |
+
#: ../includes/class-wcdn-writepanel.php:135
|
331 |
+
#: ../includes/class-wcdn-writepanel.php:136
|
332 |
+
#: ../includes/class-wcdn-writepanel.php:267
|
333 |
+
msgid "Print Invoice"
|
334 |
+
msgstr "Tulosta lasku"
|
335 |
+
|
336 |
+
# @ woocommerce-delivery-notes
|
337 |
+
#: ../includes/class-wcdn-writepanel.php:107
|
338 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
339 |
+
#: ../includes/class-wcdn-writepanel.php:140
|
340 |
+
#: ../includes/class-wcdn-writepanel.php:141
|
341 |
+
#: ../includes/class-wcdn-writepanel.php:271
|
342 |
+
msgid "Print Delivery Note"
|
343 |
+
msgstr "Tulosta lähete"
|
344 |
+
|
345 |
+
#: ../includes/class-wcdn-writepanel.php:113
|
346 |
+
#: ../includes/class-wcdn-writepanel.php:114
|
347 |
+
#: ../includes/class-wcdn-writepanel.php:145
|
348 |
+
#: ../includes/class-wcdn-writepanel.php:146
|
349 |
+
#: ../includes/class-wcdn-writepanel.php:275
|
350 |
+
msgid "Print Receipt"
|
351 |
+
msgstr "Tulosta kuitti"
|
352 |
+
|
353 |
+
# @ woocommerce-delivery-notes
|
354 |
+
#: ../includes/class-wcdn-writepanel.php:237
|
355 |
+
#, php-format
|
356 |
+
msgid "Invoice created."
|
357 |
+
msgid_plural "%s invoices created."
|
358 |
+
msgstr[0] "Lasku luotu."
|
359 |
+
msgstr[1] "%s laskua luotu."
|
360 |
+
|
361 |
+
# @ woocommerce-delivery-notes
|
362 |
+
#: ../includes/class-wcdn-writepanel.php:239
|
363 |
+
#, php-format
|
364 |
+
msgid "Delivery note created."
|
365 |
+
msgid_plural "%s delivery notes created."
|
366 |
+
msgstr[0] "Lähete luotu."
|
367 |
+
msgstr[1] "%s lähetettä luotu."
|
368 |
+
|
369 |
+
#: ../includes/class-wcdn-writepanel.php:241
|
370 |
+
#, php-format
|
371 |
+
msgid "Receipt created."
|
372 |
+
msgid_plural "%s receipts created."
|
373 |
+
msgstr[0] "Kuitti luotu."
|
374 |
+
msgstr[1] "%s kuittia luotu."
|
375 |
+
|
376 |
+
# @ woocommerce-delivery-notes
|
377 |
+
#: ../includes/class-wcdn-writepanel.php:245
|
378 |
+
msgid "Print now"
|
379 |
+
msgstr "Tulosta nyt"
|
380 |
+
|
381 |
+
# @ woocommerce-delivery-notes
|
382 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
383 |
+
msgid "Order Printing"
|
384 |
+
msgstr "Tilausten tulostaminen"
|
385 |
+
|
386 |
+
#: ../includes/class-wcdn-writepanel.php:288
|
387 |
+
msgid "Invoice number: "
|
388 |
+
msgstr "Laskun numero:"
|
389 |
+
|
390 |
+
#: ../includes/class-wcdn-writepanel.php:289
|
391 |
+
msgid "Invoice date: "
|
392 |
+
msgstr "Laskun päivämäärä:"
|
393 |
+
|
394 |
+
# @ woocommerce-delivery-notes
|
395 |
+
#: ../includes/wcdn-template-functions.php:39
|
396 |
+
msgid "Invoice"
|
397 |
+
msgstr "Lasku"
|
398 |
+
|
399 |
+
# @ woocommerce-delivery-notes
|
400 |
+
#: ../includes/wcdn-template-functions.php:41
|
401 |
+
msgid "Delivery Note"
|
402 |
+
msgstr "Lähete"
|
403 |
+
|
404 |
+
#: ../includes/wcdn-template-functions.php:43
|
405 |
+
msgid "Receipt"
|
406 |
+
msgstr "Kuitti"
|
407 |
+
|
408 |
+
# @ woocommerce-delivery-notes
|
409 |
+
#: ../includes/wcdn-template-functions.php:45
|
410 |
+
msgid "Order"
|
411 |
+
msgstr "Tilaus"
|
412 |
+
|
413 |
+
# @ woocommerce-delivery-notes
|
414 |
+
#: ../includes/wcdn-template-functions.php:230
|
415 |
+
msgid "Order Number"
|
416 |
+
msgstr "Tilausnumero"
|
417 |
+
|
418 |
+
# @ woocommerce-delivery-notes
|
419 |
+
#: ../includes/wcdn-template-functions.php:235
|
420 |
+
msgid "Order Date"
|
421 |
+
msgstr "Tilauksen päivämäärä"
|
422 |
+
|
423 |
+
# @ woocommerce-delivery-notes
|
424 |
+
#: ../includes/wcdn-template-functions.php:240
|
425 |
+
msgid "Payment Method"
|
426 |
+
msgstr "Maksutapa"
|
427 |
+
|
428 |
+
# @ woocommerce-delivery-notes
|
429 |
+
#: ../includes/wcdn-template-functions.php:246
|
430 |
+
msgid "Email"
|
431 |
+
msgstr "Sähköposti"
|
432 |
+
|
433 |
+
# @ woocommerce-delivery-notes
|
434 |
+
#: ../includes/wcdn-template-functions.php:253
|
435 |
+
msgid "Telephone"
|
436 |
+
msgstr "Puhelin"
|
437 |
+
|
438 |
+
#: ../includes/wcdn-template-functions.php:286
|
439 |
+
msgid "SKU:"
|
440 |
+
msgstr "Tuotetunnus:"
|
441 |
+
|
442 |
+
# @ woocommerce-delivery-notes
|
443 |
+
#: ../templates/print-order/print-content.php:28
|
444 |
+
msgid "Billing Address"
|
445 |
+
msgstr "Laskutusosoite"
|
446 |
+
|
447 |
+
# @ woocommerce-delivery-notes
|
448 |
+
#: ../templates/print-order/print-content.php:31
|
449 |
+
#: ../templates/print-order/print-content.php:40
|
450 |
+
msgid "N/A"
|
451 |
+
msgstr "-"
|
452 |
+
|
453 |
+
# @ woocommerce-delivery-notes
|
454 |
+
#: ../templates/print-order/print-content.php:37
|
455 |
+
msgid "Shipping Address"
|
456 |
+
msgstr "Toimitusosoite"
|
457 |
+
|
458 |
+
# @ woocommerce-delivery-notes
|
459 |
+
#: ../templates/print-order/print-content.php:70
|
460 |
+
msgid "Product"
|
461 |
+
msgstr "Tuote"
|
462 |
+
|
463 |
+
#: ../templates/print-order/print-content.php:71
|
464 |
+
msgid "Price"
|
465 |
+
msgstr "Hinta"
|
466 |
+
|
467 |
+
#: ../templates/print-order/print-content.php:72
|
468 |
+
msgid "Quantity"
|
469 |
+
msgstr "Määrä"
|
470 |
+
|
471 |
+
# @ woocommerce-delivery-notes
|
472 |
+
#: ../templates/print-order/print-content.php:73
|
473 |
+
msgid "Total"
|
474 |
+
msgstr "Yhteensä"
|
475 |
+
|
476 |
+
# @ woocommerce-delivery-notes
|
477 |
+
#: ../templates/print-order/print-content.php:97
|
478 |
+
msgid "Download:"
|
479 |
+
msgstr "Lataa:"
|
480 |
+
|
481 |
+
# @ woocommerce-delivery-notes
|
482 |
+
#: ../templates/print-order/print-content.php:98
|
483 |
+
#, php-format
|
484 |
+
msgid "%s Files"
|
485 |
+
msgstr "%s tiedostoa"
|
486 |
+
|
487 |
+
# @ woocommerce-delivery-notes
|
488 |
+
#: ../templates/print-order/print-content.php:149
|
489 |
+
msgid "Customer Note"
|
490 |
+
msgstr "Asiakkaan viesti"
|
491 |
+
|
492 |
+
# @ woocommerce-delivery-notes
|
493 |
+
#: ../woocommerce-delivery-notes.php:180
|
494 |
+
msgid "Go to the settings page"
|
495 |
+
msgstr "Mene asetussivulle"
|
496 |
+
|
497 |
+
# @ woocommerce-delivery-notes
|
498 |
+
#: ../woocommerce-delivery-notes.php:180
|
499 |
+
msgid "Settings"
|
500 |
+
msgstr "Asetukset"
|
languages/woocommerce-delivery-notes-fr_FR.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-fr_FR.po
CHANGED
@@ -1,295 +1,575 @@
|
|
1 |
-
#
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n
|
10 |
-
"X-Generator:
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
#:
|
21 |
-
msgid "
|
22 |
-
msgstr ""
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
30 |
-
msgstr ""
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
-
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
-
msgstr "
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
-
msgstr ""
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgstr ""
|
|
|
|
|
59 |
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgstr ""
|
|
|
|
|
|
|
63 |
|
64 |
-
|
65 |
-
#:
|
66 |
-
msgid "
|
|
|
67 |
msgstr ""
|
|
|
|
|
68 |
|
69 |
-
|
|
|
70 |
msgid "Company/Shop Logo"
|
71 |
-
msgstr ""
|
72 |
|
73 |
-
|
|
|
74 |
msgid "Remove Logo"
|
75 |
-
msgstr ""
|
76 |
|
77 |
-
|
|
|
78 |
msgid "Set Logo"
|
79 |
-
msgstr ""
|
80 |
|
81 |
-
|
|
|
82 |
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "Your company/shop name for the Delivery Note."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
msgstr ""
|
|
|
|
|
88 |
|
89 |
-
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgstr ""
|
|
|
|
|
92 |
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgstr ""
|
|
|
|
|
96 |
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
msgstr ""
|
|
|
|
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#:
|
114 |
-
|
115 |
-
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Vous n'avez pas l'autorisation d'accéder à cette page."
|
119 |
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
-
#:
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
|
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
|
|
|
139 |
|
140 |
-
|
141 |
-
|
142 |
-
|
|
|
|
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
|
|
|
|
150 |
msgstr ""
|
|
|
|
|
151 |
|
152 |
-
|
153 |
-
#:
|
154 |
-
|
155 |
-
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Nota:"
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#:
|
174 |
-
|
175 |
-
|
176 |
-
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
msgid "
|
180 |
-
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
-
msgid "
|
184 |
-
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
msgstr ""
|
189 |
|
190 |
-
#:
|
191 |
-
msgid "
|
192 |
-
msgstr ""
|
193 |
|
194 |
-
#:
|
195 |
-
msgid "
|
196 |
-
msgstr ""
|
197 |
|
198 |
-
#:
|
199 |
-
msgid "
|
200 |
-
msgstr ""
|
201 |
|
202 |
-
#:
|
203 |
-
msgid "
|
204 |
-
msgstr ""
|
205 |
|
206 |
-
#:
|
207 |
-
msgid "
|
208 |
-
msgstr ""
|
209 |
|
210 |
-
#:
|
211 |
-
msgid "
|
212 |
-
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
-
msgid "
|
216 |
-
msgstr ""
|
217 |
|
218 |
-
|
219 |
-
|
220 |
-
|
|
|
221 |
|
222 |
-
|
223 |
-
|
|
|
|
|
|
|
|
|
224 |
msgstr ""
|
|
|
|
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
-
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
-
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
-
msgid "
|
236 |
-
msgstr ""
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr ""
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr ""
|
255 |
|
256 |
-
#:
|
257 |
-
|
258 |
-
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
|
|
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
|
|
|
271 |
|
272 |
-
|
273 |
-
|
274 |
-
|
|
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
|
|
|
279 |
|
280 |
-
#:
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
283 |
|
284 |
-
#:
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#:
|
289 |
-
msgid "
|
290 |
-
msgstr ""
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
+
"Project-Id-Version: Print Invoice & Delivery Note V4.1.3 FR Traduction\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2015-01-29 16:54+0100\n"
|
13 |
+
"PO-Revision-Date: 2015-01-31 18:32+0100\n"
|
14 |
+
"Last-Translator: jharasse <jharasse@free.fr>\n"
|
15 |
+
"Language-Team: jharasse <jharasse@free.fr>\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
20 |
+
"X-Generator: Poedit 1.5.4\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
23 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
24 |
+
"esc_attr_e;esc_attr__\n"
|
25 |
+
"X-Poedit-Basepath: .\n"
|
26 |
+
"X-Textdomain-Support: yes\n"
|
27 |
+
"Language: Français\n"
|
28 |
+
"X-Poedit-SearchPath-0: ..\n"
|
29 |
+
|
30 |
+
# @ woocommerce-delivery-notes
|
31 |
+
#: ../includes/class-wcdn-print.php:41
|
32 |
+
msgid "Invoice"
|
33 |
+
msgstr "Facture"
|
34 |
|
35 |
+
#: ../includes/class-wcdn-print.php:42
|
36 |
+
msgid "Invoices"
|
37 |
+
msgstr "Factures"
|
38 |
|
39 |
+
# @ woocommerce-delivery-notes
|
40 |
+
#: ../includes/class-wcdn-print.php:43
|
41 |
+
msgid "Print Invoice"
|
42 |
+
msgstr "Imprimer la facture"
|
43 |
|
44 |
+
#: ../includes/class-wcdn-print.php:44
|
45 |
+
msgid "Print Invoices"
|
46 |
+
msgstr "Imprimer les factures"
|
47 |
|
48 |
+
# @ woocommerce-delivery-notes
|
49 |
+
#: ../includes/class-wcdn-print.php:45
|
50 |
+
msgid "Invoice created."
|
51 |
+
msgstr "Facture créée"
|
52 |
|
53 |
+
#: ../includes/class-wcdn-print.php:46
|
54 |
+
msgid "Invoices created."
|
55 |
+
msgstr "Factures créées"
|
56 |
|
57 |
+
#: ../includes/class-wcdn-print.php:47
|
58 |
+
msgid "Enable Invoices"
|
59 |
+
msgstr "Factures"
|
60 |
|
61 |
+
# @ woocommerce-delivery-notes
|
62 |
+
#: ../includes/class-wcdn-print.php:53
|
63 |
+
msgid "Delivery Note"
|
64 |
+
msgstr "Bon de livraison"
|
65 |
|
66 |
+
#: ../includes/class-wcdn-print.php:54
|
67 |
+
msgid "Delivery Notes"
|
68 |
+
msgstr "Bons de livraison"
|
69 |
|
70 |
+
# @ woocommerce-delivery-notes
|
71 |
+
#: ../includes/class-wcdn-print.php:55
|
72 |
+
msgid "Print Delivery Note"
|
73 |
+
msgstr "Imprimer le bon de livraison"
|
74 |
+
|
75 |
+
#: ../includes/class-wcdn-print.php:56
|
76 |
+
msgid "Print Delivery Notes"
|
77 |
+
msgstr "Imprimer les bons de livraison"
|
78 |
|
79 |
+
#: ../includes/class-wcdn-print.php:57
|
80 |
+
msgid "Delivery Note created."
|
81 |
+
msgstr "Bon de livraison créé"
|
82 |
+
|
83 |
+
#: ../includes/class-wcdn-print.php:58
|
84 |
+
msgid "Delivery Notes created."
|
85 |
+
msgstr "Bons de livraison créés"
|
86 |
+
|
87 |
+
#: ../includes/class-wcdn-print.php:59
|
88 |
+
msgid "Enable Delivery Notes"
|
89 |
+
msgstr "Bons de livraison"
|
90 |
+
|
91 |
+
#: ../includes/class-wcdn-print.php:65
|
92 |
+
msgid "Receipt"
|
93 |
+
msgstr "Reçu"
|
94 |
+
|
95 |
+
#: ../includes/class-wcdn-print.php:66
|
96 |
+
msgid "Receipts"
|
97 |
+
msgstr "Reçus"
|
98 |
+
|
99 |
+
#: ../includes/class-wcdn-print.php:67
|
100 |
+
msgid "Print Receipt"
|
101 |
+
msgstr "Imprimer le reçu"
|
102 |
+
|
103 |
+
#: ../includes/class-wcdn-print.php:68
|
104 |
+
msgid "Print Receipts"
|
105 |
+
msgstr "Imprimer les reçus"
|
106 |
+
|
107 |
+
#: ../includes/class-wcdn-print.php:69
|
108 |
+
msgid "Receipt created."
|
109 |
+
msgstr "Reçu créé"
|
110 |
+
|
111 |
+
#: ../includes/class-wcdn-print.php:70
|
112 |
+
msgid "Receipts created."
|
113 |
+
msgstr "Reçus créés"
|
114 |
+
|
115 |
+
#: ../includes/class-wcdn-print.php:71
|
116 |
+
msgid "Enable Receipts"
|
117 |
+
msgstr "Reçus"
|
118 |
+
|
119 |
+
# @ woocommerce-delivery-notes
|
120 |
+
#: ../includes/class-wcdn-print.php:80
|
121 |
+
msgid "Order"
|
122 |
+
msgstr "Commande"
|
123 |
+
|
124 |
+
#: ../includes/class-wcdn-print.php:81
|
125 |
+
msgid "Orders"
|
126 |
+
msgstr "Commandes"
|
127 |
+
|
128 |
+
# @ woocommerce-delivery-notes
|
129 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
130 |
+
msgid "Print Order"
|
131 |
+
msgstr "Paramétrage des impressions"
|
132 |
+
|
133 |
+
#: ../includes/class-wcdn-print.php:83
|
134 |
+
msgid "Print Orders"
|
135 |
+
msgstr "Imprimer les commandes"
|
136 |
+
|
137 |
+
#: ../includes/class-wcdn-settings.php:72
|
138 |
+
msgid ""
|
139 |
+
"Do you really want to reset the counter to zero? This process can't be "
|
140 |
+
"undone."
|
141 |
msgstr ""
|
142 |
+
"Voulez-vous vraiement réinitialiser le compteur de facture ? L'opération est "
|
143 |
+
"irréversible."
|
144 |
|
145 |
+
# @ woocommerce-delivery-notes
|
146 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56
|
147 |
+
#: ../includes/class-wcdn-theme.php:91
|
148 |
+
#: ../includes/wcdn-template-functions.php:127
|
149 |
+
msgid "Print"
|
150 |
+
msgstr "Impression"
|
151 |
+
|
152 |
+
#: ../includes/class-wcdn-settings.php:176
|
153 |
+
#, php-format
|
154 |
+
msgid ""
|
155 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
|
156 |
+
"a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
|
157 |
+
"href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
158 |
msgstr ""
|
159 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
|
160 |
+
"a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
|
161 |
+
"href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
162 |
|
163 |
+
# @ woocommerce-delivery-notes
|
164 |
+
#: ../includes/class-wcdn-settings.php:177
|
165 |
+
msgid ""
|
166 |
+
"With the FAQ in the readme file you can learn how to customize the template."
|
167 |
msgstr ""
|
168 |
+
"Avec la FAQ dans le fichier readme vous pouvez apprendre comment "
|
169 |
+
"personnaliser le modèle"
|
170 |
|
171 |
+
# @ woocommerce-delivery-notes
|
172 |
+
#: ../includes/class-wcdn-settings.php:188
|
173 |
msgid "Company/Shop Logo"
|
174 |
+
msgstr "Logo magasin/entreprise"
|
175 |
|
176 |
+
# @ woocommerce-delivery-notes
|
177 |
+
#: ../includes/class-wcdn-settings.php:194
|
178 |
msgid "Remove Logo"
|
179 |
+
msgstr "Enlever le Logo"
|
180 |
|
181 |
+
# @ woocommerce-delivery-notes
|
182 |
+
#: ../includes/class-wcdn-settings.php:195
|
183 |
msgid "Set Logo"
|
184 |
+
msgstr "Mise en place du Logo"
|
185 |
|
186 |
+
# @ woocommerce-delivery-notes
|
187 |
+
#: ../includes/class-wcdn-settings.php:199
|
188 |
msgid "A company/shop logo representing your business."
|
189 |
+
msgstr "Un logo du magasin/entreprise représentant votre activité."
|
190 |
+
|
191 |
+
# @ woocommerce-delivery-notes
|
192 |
+
#: ../includes/class-wcdn-settings.php:200
|
193 |
+
#: ../includes/class-wcdn-settings.php:213
|
194 |
+
#: ../includes/class-wcdn-settings.php:226
|
195 |
+
#: ../includes/class-wcdn-settings.php:239
|
196 |
+
#: ../includes/class-wcdn-settings.php:252
|
197 |
+
#: ../includes/class-wcdn-settings.php:265
|
198 |
+
#: ../includes/class-wcdn-settings.php:382
|
199 |
+
#: ../includes/class-wcdn-settings.php:397
|
200 |
+
#: ../includes/class-wcdn-settings.php:412
|
201 |
+
msgid "Note:"
|
202 |
+
msgstr "Note :"
|
203 |
|
204 |
+
# @ woocommerce-delivery-notes
|
205 |
+
#: ../includes/class-wcdn-settings.php:201
|
206 |
+
msgid ""
|
207 |
+
"When the image is printed, its pixel density will automatically be eight "
|
208 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
209 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
210 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
211 |
+
"to 1 inch."
|
212 |
+
msgstr ""
|
213 |
+
"Quand l'image est imprimée, sa densité de pixels sera automatiquement "
|
214 |
+
"multipliée par 8 par rapport à l'original. Ce qui veut dire qu'un pouce "
|
215 |
+
"correspondra environ à 288 pixels sur l'écran. Exemple : une image avec une "
|
216 |
+
"largeur de 576 pixels et une hauteur de 288 pixels sera imprimée à une "
|
217 |
+
"taille d'environ 5 centimètres sur 2,5. "
|
218 |
+
|
219 |
+
# @ woocommerce-delivery-notes
|
220 |
+
#: ../includes/class-wcdn-settings.php:207
|
221 |
+
msgid "Company/Shop Name"
|
222 |
+
msgstr "Nom magasin/entreprise"
|
223 |
+
|
224 |
+
# @ woocommerce-delivery-notes
|
225 |
+
#: ../includes/class-wcdn-settings.php:212
|
226 |
msgid "Your company/shop name for the Delivery Note."
|
227 |
+
msgstr "Le nom de votre magasin/entreprise pour le bon de livraison."
|
228 |
+
|
229 |
+
# @ woocommerce-delivery-notes
|
230 |
+
#: ../includes/class-wcdn-settings.php:214
|
231 |
+
msgid ""
|
232 |
+
"Leave blank to use the default Website/Blog title defined in WordPress "
|
233 |
+
"settings. The name will be ignored when a Logo is set."
|
234 |
msgstr ""
|
235 |
+
"Laisser blanc pour utiliser le titre de blog/site défini dans les paramètres "
|
236 |
+
"Wordpress. Ce nom sera ignoré si un logo est paramétré."
|
237 |
|
238 |
+
# @ woocommerce-delivery-notes
|
239 |
+
#: ../includes/class-wcdn-settings.php:220
|
240 |
+
msgid "Company/Shop Address"
|
241 |
+
msgstr "Adresse magasin/entreprise"
|
242 |
+
|
243 |
+
# @ woocommerce-delivery-notes
|
244 |
+
#: ../includes/class-wcdn-settings.php:225
|
245 |
+
msgid ""
|
246 |
+
"The postal address of the company/shop or even e-mail or telephone, which "
|
247 |
+
"gets printed right after the company/shop name."
|
248 |
msgstr ""
|
249 |
+
"L'adresse postale du magasin ou un email ou un téléphone, qui sera imprimé "
|
250 |
+
"juste après le nom du magasin."
|
251 |
|
252 |
+
# @ woocommerce-delivery-notes
|
253 |
+
#: ../includes/class-wcdn-settings.php:227
|
254 |
+
msgid "Leave blank to not print an address."
|
255 |
+
msgstr "Laisser blanc pour ne pas imprimer d'adresse"
|
256 |
+
|
257 |
+
#: ../includes/class-wcdn-settings.php:233
|
258 |
+
msgid "Complimentary Close"
|
259 |
+
msgstr "Fermeture complémentaire"
|
260 |
+
|
261 |
+
# @ woocommerce-delivery-notes
|
262 |
+
#: ../includes/class-wcdn-settings.php:238
|
263 |
+
msgid ""
|
264 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
265 |
+
"Your Order!, Merry Christmas!, etc.)."
|
266 |
msgstr ""
|
267 |
+
"Ajouter des notes personnelles, ou des voeux de saison ou ce que vous voulez "
|
268 |
+
"(ex: Merci pour votre commande, Joyeux Noël, etc.)."
|
269 |
|
270 |
+
# @ woocommerce-delivery-notes
|
271 |
+
#: ../includes/class-wcdn-settings.php:240
|
272 |
+
msgid "Leave blank to not print any personal notes."
|
273 |
+
msgstr "Laisser blanc pour ne pas imprimer de note personnelle"
|
274 |
+
|
275 |
+
# @ woocommerce-delivery-notes
|
276 |
+
#: ../includes/class-wcdn-settings.php:246
|
277 |
+
msgid "Returns Policy, Conditions, etc"
|
278 |
+
msgstr "Conditions générales de vente, retours, etc"
|
279 |
+
|
280 |
+
# @ woocommerce-delivery-notes
|
281 |
+
#: ../includes/class-wcdn-settings.php:251
|
282 |
+
msgid ""
|
283 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
284 |
+
"returns policy in case the client would like to send back some goods. In "
|
285 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
286 |
+
"any required info in accordance with the statutory regulations."
|
287 |
+
msgstr ""
|
288 |
+
"Ici vous pouvez ajouter des conditions, informations ... Par exemple la "
|
289 |
+
"politique de retour dans le cas où le client souhaiterait renvoyer un "
|
290 |
+
"produit. Dans certains pays (ex. Union Européenne) ceci est requis ; donc "
|
291 |
+
"remplissez en accord avec la règlementation de votre pays."
|
292 |
+
|
293 |
+
# @ woocommerce-delivery-notes
|
294 |
+
#: ../includes/class-wcdn-settings.php:253
|
295 |
+
msgid "Leave blank to not print any policies or conditions."
|
296 |
+
msgstr "Laisser blanc pour ne pas imprimer de conditions ou informations"
|
297 |
+
|
298 |
+
# @ woocommerce-delivery-notes
|
299 |
+
#: ../includes/class-wcdn-settings.php:259
|
300 |
+
msgid "Footer"
|
301 |
+
msgstr "Pied de page"
|
302 |
+
|
303 |
+
# @ woocommerce-delivery-notes
|
304 |
+
#: ../includes/class-wcdn-settings.php:264
|
305 |
+
msgid ""
|
306 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
307 |
+
"This makes the printed sheets a bit more branded."
|
308 |
msgstr ""
|
309 |
+
"Ajouter quelques informations en pied de page : copyright, email, "
|
310 |
+
"téléphone ... Cela rend les documents imprimés plus à l'image du magasin."
|
311 |
|
312 |
+
# @ woocommerce-delivery-notes
|
313 |
+
#: ../includes/class-wcdn-settings.php:266
|
314 |
+
msgid "Leave blank to not print a footer."
|
315 |
+
msgstr "Laisser blanc pour ne pas imprimer de pied de page"
|
316 |
|
317 |
+
#: ../includes/class-wcdn-settings.php:273
|
318 |
+
msgid "Print Options"
|
319 |
+
msgstr "Impressions permises :"
|
320 |
|
321 |
+
#: ../includes/class-wcdn-settings.php:278
|
322 |
+
msgid "Types"
|
323 |
+
msgstr "Types"
|
324 |
|
325 |
+
#: ../includes/class-wcdn-settings.php:297
|
326 |
+
msgid "Theme Options"
|
327 |
+
msgstr "Paramètrages coté clients"
|
|
|
|
|
|
|
328 |
|
329 |
+
# @ woocommerce-delivery-notes
|
330 |
+
#: ../includes/class-wcdn-settings.php:302
|
331 |
+
msgid "Print Page Endpoint"
|
332 |
+
msgstr "Fonction impression"
|
333 |
|
334 |
+
# @ woocommerce-delivery-notes
|
335 |
+
#: ../includes/class-wcdn-settings.php:309
|
336 |
+
msgid ""
|
337 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
338 |
+
"should be unique."
|
339 |
+
msgstr ""
|
340 |
+
"La fonction est ajoutée aux URLs des pages des utilisateurs pour imprimer la "
|
341 |
+
"commande. Elle doit être unique."
|
342 |
|
343 |
+
#: ../includes/class-wcdn-settings.php:315
|
344 |
+
msgid "My Account"
|
345 |
+
msgstr "Mon compte"
|
346 |
|
347 |
+
# @ woocommerce-delivery-notes
|
348 |
+
#: ../includes/class-wcdn-settings.php:322
|
349 |
+
msgid "Show print button on the \"View Order\" page"
|
350 |
+
msgstr "Montrer le bouton d'impression sur la page \"Voir la commande\""
|
351 |
|
352 |
+
# @ woocommerce-delivery-notes
|
353 |
+
#: ../includes/class-wcdn-settings.php:329
|
354 |
+
msgid "Show print buttons on the \"My Account\" page"
|
355 |
+
msgstr "Montrer les boutons d'impression sur la page \"Mon Compte\""
|
356 |
|
357 |
+
# @ woocommerce-delivery-notes
|
358 |
+
#: ../includes/class-wcdn-settings.php:336
|
359 |
+
#: ../includes/wcdn-template-functions.php:254
|
360 |
+
msgid "Email"
|
361 |
+
msgstr "Email"
|
362 |
|
363 |
+
#: ../includes/class-wcdn-settings.php:343
|
364 |
+
msgid "Show print link in customer emails"
|
365 |
+
msgstr "Indiquer le lien pour imprimer dans les emails aux clients"
|
366 |
|
367 |
+
#: ../includes/class-wcdn-settings.php:347
|
368 |
+
msgid ""
|
369 |
+
"This includes the emails for a new, processing and completed order. On top "
|
370 |
+
"of that the customer invoice email also includes the link."
|
371 |
msgstr ""
|
372 |
+
"Ceci vaudra pour les emails des nouvelles commandes effectuées. De plus, "
|
373 |
+
"l'email de facturation au client contiendra également ce lien."
|
374 |
|
375 |
+
# @ woocommerce-delivery-notes
|
376 |
+
#: ../includes/class-wcdn-settings.php:354
|
377 |
+
msgid "Order Numbering"
|
378 |
+
msgstr "Numérotation factures et commandes"
|
|
|
|
|
|
|
|
|
379 |
|
380 |
+
#: ../includes/class-wcdn-settings.php:359
|
381 |
+
msgid "Invoice Numbering"
|
382 |
+
msgstr "Numérotation des factures"
|
383 |
|
384 |
+
#: ../includes/class-wcdn-settings.php:367
|
385 |
+
msgid "Create invoice numbers"
|
386 |
+
msgstr "Activer la numérotation des factures"
|
387 |
|
388 |
+
#: ../includes/class-wcdn-settings.php:374
|
389 |
+
msgid "Invoice Number Start"
|
390 |
+
msgstr "Numéro initial des factures"
|
391 |
|
392 |
+
#: ../includes/class-wcdn-settings.php:381
|
393 |
+
msgid "Start the numbering at the specified number."
|
394 |
+
msgstr "Commencer la numérotation au numéro indiqué."
|
|
|
395 |
|
396 |
+
#: ../includes/class-wcdn-settings.php:383
|
397 |
+
msgid "Use only integers."
|
398 |
+
msgstr "Utiliser uniquement des nombres entiers"
|
399 |
|
400 |
+
#: ../includes/class-wcdn-settings.php:389
|
401 |
+
msgid "Invoice Number Prefix"
|
402 |
+
msgstr "Préfixe pour les numéros de facture"
|
403 |
|
404 |
+
#: ../includes/class-wcdn-settings.php:396
|
405 |
+
msgid "This text will be prepended to the invoice number."
|
406 |
+
msgstr "Ce texte apparaîtra devant le numéro de la facture."
|
407 |
|
408 |
+
#: ../includes/class-wcdn-settings.php:398
|
409 |
+
msgid "Leave blank to not add a prefix."
|
410 |
+
msgstr "Laisser blanc pour ne pas mettre de préfixe."
|
411 |
|
412 |
+
#: ../includes/class-wcdn-settings.php:404
|
413 |
+
msgid "Invoice Number Suffix"
|
414 |
+
msgstr "Suffixe de numéro de facture"
|
415 |
|
416 |
+
#: ../includes/class-wcdn-settings.php:411
|
417 |
+
msgid "This text will be appended to the invoice number."
|
418 |
+
msgstr "Ce texte sera ajouté au numéro de facture."
|
419 |
|
420 |
+
#: ../includes/class-wcdn-settings.php:413
|
421 |
+
msgid "Leave blank to not add a suffix."
|
422 |
+
msgstr "Laisser blanc pour ne pas ajouter de suffixe."
|
423 |
|
424 |
+
#: ../includes/class-wcdn-settings.php:419
|
425 |
+
msgid "Invoice Number Counter"
|
426 |
+
msgstr "Numéro courant de facture"
|
427 |
|
428 |
+
#: ../includes/class-wcdn-settings.php:428
|
429 |
+
msgid "Reset Counter …"
|
430 |
+
msgstr "Réinitialiser ..."
|
431 |
|
432 |
+
#: ../includes/class-wcdn-settings.php:434
|
433 |
+
msgid "Sequential Order Number"
|
434 |
+
msgstr "Numéro séquentiel de commande "
|
435 |
|
436 |
+
# @ woocommerce-delivery-notes
|
437 |
+
#: ../includes/class-wcdn-settings.php:439
|
438 |
+
msgid "Sequential numbering is enabled."
|
439 |
+
msgstr "Numérotation séquentielle activée."
|
440 |
|
441 |
+
# @ woocommerce-delivery-notes
|
442 |
+
#: ../includes/class-wcdn-settings.php:441
|
443 |
+
#, php-format
|
444 |
+
msgid ""
|
445 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
446 |
+
"Numbers</a> Plugin."
|
447 |
msgstr ""
|
448 |
+
"Installer et activer le plugin gratuit <a href=\"%s\">WooCommerce Sequential "
|
449 |
+
"Order Numbers</a>."
|
450 |
|
451 |
+
#: ../includes/class-wcdn-theme.php:105
|
452 |
+
msgid "Print your order"
|
453 |
+
msgstr "Imprimer la facture"
|
454 |
|
455 |
+
#: ../includes/class-wcdn-theme.php:111
|
456 |
+
msgid "Print:"
|
457 |
+
msgstr "Impression :"
|
458 |
|
459 |
+
#: ../includes/class-wcdn-theme.php:111
|
460 |
+
msgid "Open print view in browser"
|
461 |
+
msgstr "Ouvrir la vue d'impression dans le navigateur"
|
462 |
|
463 |
+
# @ woocommerce-delivery-notes
|
464 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
465 |
+
msgid "Print now"
|
466 |
+
msgstr "Imprimer maintenant"
|
467 |
|
468 |
+
# @ woocommerce-delivery-notes
|
469 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
470 |
+
msgid "Order Printing"
|
471 |
+
msgstr "Imprimer la commande"
|
472 |
|
473 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
474 |
+
msgid "Invoice number: "
|
475 |
+
msgstr "Numéro de facture :"
|
476 |
|
477 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
478 |
+
msgid "Invoice date: "
|
479 |
+
msgstr "Date de facture :"
|
|
|
|
|
480 |
|
481 |
+
#: ../includes/wcdn-template-functions.php:232
|
482 |
+
msgid "Invoice Number"
|
483 |
+
msgstr "Numéro de facture"
|
|
|
|
|
|
|
|
|
484 |
|
485 |
+
# @ woocommerce-delivery-notes
|
486 |
+
#: ../includes/wcdn-template-functions.php:238
|
487 |
+
msgid "Order Number"
|
488 |
+
msgstr "Numéro de commande"
|
489 |
|
490 |
+
# @ woocommerce-delivery-notes
|
491 |
+
#: ../includes/wcdn-template-functions.php:243
|
492 |
+
msgid "Order Date"
|
493 |
+
msgstr "Date de commande"
|
494 |
|
495 |
+
# @ woocommerce-delivery-notes
|
496 |
+
#: ../includes/wcdn-template-functions.php:248
|
497 |
+
msgid "Payment Method"
|
498 |
+
msgstr "Méthode de paiement"
|
499 |
|
500 |
+
# @ woocommerce-delivery-notes
|
501 |
+
#: ../includes/wcdn-template-functions.php:261
|
502 |
+
msgid "Telephone"
|
503 |
+
msgstr "Téléphone"
|
504 |
|
505 |
+
#: ../includes/wcdn-template-functions.php:294
|
506 |
+
msgid "SKU:"
|
507 |
+
msgstr "Référence :"
|
508 |
|
509 |
+
#: ../includes/wcdn-template-functions.php:364
|
510 |
+
msgid "Refund"
|
511 |
+
msgstr "Remboursement"
|
512 |
|
513 |
+
#: ../includes/wcdn-template-functions.php:374
|
514 |
+
msgid "Order Subtotal"
|
515 |
+
msgstr "Sous-total "
|
516 |
|
517 |
+
# @ woocommerce-delivery-notes
|
518 |
+
#: ../templates/print-order/print-content.php:28
|
519 |
+
msgid "Billing Address"
|
520 |
+
msgstr "Adresse de facturation"
|
521 |
+
|
522 |
+
# @ woocommerce-delivery-notes
|
523 |
+
#: ../templates/print-order/print-content.php:31
|
524 |
+
#: ../templates/print-order/print-content.php:40
|
525 |
+
msgid "N/A"
|
526 |
+
msgstr "N/A"
|
527 |
|
528 |
+
# @ woocommerce-delivery-notes
|
529 |
+
#: ../templates/print-order/print-content.php:37
|
530 |
+
msgid "Shipping Address"
|
531 |
+
msgstr "Adresse d'expédition"
|
532 |
+
|
533 |
+
# @ woocommerce-delivery-notes
|
534 |
+
#: ../templates/print-order/print-content.php:70
|
535 |
+
msgid "Product"
|
536 |
+
msgstr "Produit"
|
537 |
+
|
538 |
+
#: ../templates/print-order/print-content.php:71
|
539 |
+
msgid "Price"
|
540 |
+
msgstr "Prix"
|
541 |
+
|
542 |
+
#: ../templates/print-order/print-content.php:72
|
543 |
+
msgid "Quantity"
|
544 |
+
msgstr "Quantité"
|
545 |
+
|
546 |
+
# @ woocommerce-delivery-notes
|
547 |
+
#: ../templates/print-order/print-content.php:73
|
548 |
+
msgid "Total"
|
549 |
+
msgstr "Total"
|
550 |
+
|
551 |
+
# @ woocommerce-delivery-notes
|
552 |
+
#: ../templates/print-order/print-content.php:97
|
553 |
+
msgid "Download:"
|
554 |
+
msgstr "Téléchargement :"
|
555 |
+
|
556 |
+
# @ woocommerce-delivery-notes
|
557 |
+
#: ../templates/print-order/print-content.php:98
|
558 |
+
#, php-format
|
559 |
+
msgid "%s Files"
|
560 |
+
msgstr "%s fichiers"
|
561 |
+
|
562 |
+
# @ woocommerce-delivery-notes
|
563 |
+
#: ../templates/print-order/print-content.php:147
|
564 |
+
msgid "Customer Note"
|
565 |
+
msgstr "Note du client"
|
566 |
+
|
567 |
+
# @ woocommerce-delivery-notes
|
568 |
+
#: ../woocommerce-delivery-notes.php:181
|
569 |
+
msgid "Go to the settings page"
|
570 |
+
msgstr "Aller à la page de configuration"
|
571 |
+
|
572 |
+
# @ woocommerce-delivery-notes
|
573 |
+
#: ../woocommerce-delivery-notes.php:181
|
574 |
+
msgid "Settings"
|
575 |
+
msgstr "Paramètres"
|
languages/woocommerce-delivery-notes-it_IT.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-it_IT.po
CHANGED
@@ -2,62 +2,76 @@
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: Poedit 1.5
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
#:
|
|
|
17 |
msgid ""
|
18 |
-
"You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">
|
19 |
-
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">
|
20 |
"note template</a>."
|
21 |
msgstr ""
|
22 |
"Puoi <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">visualizzare "
|
23 |
"l'anteprima del template della fattura</a> oppure <a href=\"%2$s\" target="
|
24 |
"\"%3$s\" class=\"%4$s\">il template della nota di spedizione</a>."
|
25 |
|
26 |
-
|
|
|
27 |
msgid ""
|
28 |
-
"
|
29 |
-
"print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</"
|
30 |
-
"code>."
|
31 |
msgstr ""
|
32 |
-
"
|
33 |
-
"print/style.css</code> in <code>your-theme-name/woocommerce/print/style.css</"
|
34 |
-
"code>."
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
-
msgstr "
|
39 |
-
|
40 |
-
#: templates/print/print-delivery-note.php:40
|
41 |
-
msgid "Shipping Date"
|
42 |
-
msgstr "Data di spedizione"
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#:
|
49 |
-
msgid "
|
50 |
-
msgstr "
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#:
|
57 |
-
|
58 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
-
#:
|
61 |
msgid ""
|
62 |
"When the image is printed, its pixel density will automatically be eight "
|
63 |
"times higher than the original. This means, 1 printed inch will correspond "
|
@@ -71,122 +85,43 @@ msgstr ""
|
|
71 |
"Esempio: un'immagine larga 576 pixel ed alta 288 in stampa sarà grande larga "
|
72 |
"2 pollici ed alta 1 pollice"
|
73 |
|
74 |
-
#:
|
75 |
-
msgid "
|
76 |
-
msgstr "
|
77 |
-
|
78 |
-
#: templates/print/print-delivery-note.php:60
|
79 |
-
msgid "Totals"
|
80 |
-
msgstr "Totali"
|
81 |
-
|
82 |
-
#: templates/print/print-delivery-note.php:70
|
83 |
-
msgid "Download:"
|
84 |
-
msgstr "Scarica:"
|
85 |
-
|
86 |
-
#: woocommerce-delivery-notes.php:291 woocommerce-delivery-notes.php:305
|
87 |
-
msgid "N/A"
|
88 |
-
msgstr "N/D"
|
89 |
-
|
90 |
-
#: classes/class-wcdn-settings.php:202
|
91 |
-
msgid "Company/Shop Logo"
|
92 |
-
msgstr "Logo Azienda/Negozio"
|
93 |
-
|
94 |
-
#: classes/class-wcdn-settings.php:207
|
95 |
-
msgid "Remove Logo"
|
96 |
-
msgstr "Rimuovi Logo"
|
97 |
-
|
98 |
-
#: classes/class-wcdn-settings.php:208
|
99 |
-
msgid "Set Logo"
|
100 |
-
msgstr "Imposta Logo"
|
101 |
-
|
102 |
-
#: classes/class-wcdn-settings.php:210
|
103 |
-
msgid "A company/shop logo representing your business."
|
104 |
-
msgstr "Un logo della tua azienda/negozio che rappresenti la tua attività."
|
105 |
|
106 |
-
#:
|
107 |
msgid "Your company/shop name for the Delivery Note."
|
108 |
msgstr "Il nome della tua azienda/negozio per la Nota di Consegna."
|
109 |
|
110 |
-
#:
|
111 |
-
msgid "Sequential order number"
|
112 |
-
msgstr "Numero ordine sequenziale"
|
113 |
-
|
114 |
-
#: classes/class-wcdn-settings.php:318
|
115 |
-
msgid "Sequential numbering is enabled."
|
116 |
-
msgstr "Numerazione sequenziale abilitata"
|
117 |
-
|
118 |
-
#: classes/class-wcdn-settings.php:320
|
119 |
msgid ""
|
120 |
-
"
|
121 |
-
"
|
122 |
msgstr ""
|
123 |
-
"
|
124 |
-
"
|
125 |
-
|
126 |
-
#: woocommerce-delivery-notes.php:0
|
127 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
128 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
129 |
-
|
130 |
-
#: woocommerce-delivery-notes.php:203
|
131 |
-
msgid "Delivery Note"
|
132 |
-
msgstr "Nota di consegna"
|
133 |
-
|
134 |
-
#: templates/print/print-delivery-note.php:59
|
135 |
-
msgid "Quantity"
|
136 |
-
msgstr "Quantità"
|
137 |
-
|
138 |
-
#: classes/class-wcdn-print.php:63 classes/class-wcdn-print.php:68
|
139 |
-
#: classes/class-wcdn-print.php:73 classes/class-wcdn-print.php:78
|
140 |
-
msgid "You do not have sufficient permissions to access this page."
|
141 |
-
msgstr "Non hai permessi sufficienti per accedere a questa pagina."
|
142 |
-
|
143 |
-
#: woocommerce-delivery-notes.php:134
|
144 |
-
msgid "Go to the settings page"
|
145 |
-
msgstr "Vai alla pagina impostazioni"
|
146 |
-
|
147 |
-
#: woocommerce-delivery-notes.php:134
|
148 |
-
msgid "Settings"
|
149 |
-
msgstr "Impostazioni"
|
150 |
-
|
151 |
-
#: woocommerce-delivery-notes.php:124
|
152 |
-
msgid "FAQ"
|
153 |
-
msgstr "FAQ"
|
154 |
-
|
155 |
-
#: woocommerce-delivery-notes.php:125
|
156 |
-
msgid "Support"
|
157 |
-
msgstr "Supporto"
|
158 |
-
|
159 |
-
#: classes/class-wcdn-settings.php:257
|
160 |
-
msgid "Returns Policy, Conditions, etc.:"
|
161 |
-
msgstr "Politica Resi, Condizioni, etc.:"
|
162 |
-
|
163 |
-
#: templates/print/print-delivery-note.php:68
|
164 |
-
msgid "SKU:"
|
165 |
-
msgstr "COD:"
|
166 |
-
|
167 |
-
#: templates/print/print-delivery-note.php:69
|
168 |
-
msgid "Weight:"
|
169 |
-
msgstr "Peso:"
|
170 |
-
|
171 |
-
#: classes/class-wcdn-settings.php:134
|
172 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
173 |
-
msgstr "Plugin: WooCommerce Stampa fatture e bolle di consegna"
|
174 |
|
175 |
-
#:
|
176 |
-
|
177 |
-
|
178 |
-
msgid "Note:"
|
179 |
-
msgstr "Note:"
|
180 |
|
181 |
-
#:
|
182 |
msgid ""
|
183 |
-
"The postal address of the company/shop
|
184 |
-
"
|
185 |
msgstr ""
|
186 |
-
"L'indirizzo postale della ditta/negozio
|
187 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
|
189 |
-
#:
|
190 |
msgid ""
|
191 |
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
192 |
"Your Order!, Merry Christmas!, etc.)."
|
@@ -194,71 +129,15 @@ msgstr ""
|
|
194 |
"Aggiungi qualche nota personale o auguri o altro (es.: \"Grazie per l'ordine"
|
195 |
"\" , \"Buon Natale\" ecc.)"
|
196 |
|
197 |
-
#:
|
198 |
-
msgid ""
|
199 |
-
"Add some further footer imprint, copyright notes etc. to get the printed "
|
200 |
-
"sheets a bit more branded to your needs."
|
201 |
-
msgstr ""
|
202 |
-
"Aggiungi qualche informazione a piè di pagina come il copyright ecc. per "
|
203 |
-
"rendere più adeguate ai tuoi bisogni le stampe."
|
204 |
-
|
205 |
-
#: classes/class-wcdn-settings.php:132 classes/class-wcdn-settings.php:135
|
206 |
-
msgid "About the Plugin"
|
207 |
-
msgstr "A proposito del plugin"
|
208 |
-
|
209 |
-
#: classes/class-wcdn-settings.php:142
|
210 |
-
msgid "For more information:"
|
211 |
-
msgstr "Per ulteriori informazioni:"
|
212 |
-
|
213 |
-
#: classes/class-wcdn-settings.php:143
|
214 |
-
msgid "Frequently Asked Questions"
|
215 |
-
msgstr "Domande frequenti"
|
216 |
-
|
217 |
-
#: classes/class-wcdn-settings.php:145
|
218 |
-
msgid "Project on WordPress.org"
|
219 |
-
msgstr "Progetto WordPress.org"
|
220 |
-
|
221 |
-
#: classes/class-wcdn-settings.php:146
|
222 |
-
msgid "Project on GitHub"
|
223 |
-
msgstr "Progetto su GitHub"
|
224 |
-
|
225 |
-
#: classes/class-wcdn-settings.php:154
|
226 |
-
msgid "Print"
|
227 |
-
msgstr "Stampa"
|
228 |
-
|
229 |
-
#: classes/class-wcdn-settings.php:194
|
230 |
-
msgid "Invoices and Delivery Notes"
|
231 |
-
msgstr "Fatture e Note di Consegna"
|
232 |
-
|
233 |
-
#: classes/class-wcdn-settings.php:218
|
234 |
-
msgid "Company/Shop Name"
|
235 |
-
msgstr "Nome Azienda/Negozio"
|
236 |
-
|
237 |
-
#: classes/class-wcdn-settings.php:225
|
238 |
-
msgid ""
|
239 |
-
"Leave blank to use the default Website/ Blog title defined in WordPress "
|
240 |
-
"settings."
|
241 |
-
msgstr ""
|
242 |
-
"Lasciare vuoto per usare il titolo del sito/blog predefinito nelle "
|
243 |
-
"impostazioni di WordPress"
|
244 |
-
|
245 |
-
#: classes/class-wcdn-settings.php:231
|
246 |
-
msgid "Company/Shop Address"
|
247 |
-
msgstr "Indirizzo Azienda/Negozio"
|
248 |
-
|
249 |
-
#: classes/class-wcdn-settings.php:238
|
250 |
-
msgid "Leave blank to not print an address."
|
251 |
-
msgstr "Lasciare in bianco per evitare di stampare un indirizzo"
|
252 |
-
|
253 |
-
#: classes/class-wcdn-settings.php:244
|
254 |
-
msgid "Personal Notes"
|
255 |
-
msgstr "Note Personali"
|
256 |
-
|
257 |
-
#: classes/class-wcdn-settings.php:251
|
258 |
msgid "Leave blank to not print any personal notes."
|
259 |
msgstr "Lasciare in bianco per non stampare nessuna nota personale"
|
260 |
|
261 |
-
#:
|
|
|
|
|
|
|
|
|
262 |
msgid ""
|
263 |
"Here you can add some more policies, conditions etc. For example add a "
|
264 |
"returns policy in case the client would like to send back some goods. In "
|
@@ -272,93 +151,358 @@ msgstr ""
|
|
272 |
"prega di aggiungere le informazioni richieste in ottemperanza alle leggi "
|
273 |
"vigenti."
|
274 |
|
275 |
-
#:
|
276 |
msgid "Leave blank to not print any policies or conditions."
|
277 |
msgstr "Lasciare in bianco per non stampare alcuna regola o condizione"
|
278 |
|
279 |
-
#:
|
280 |
-
msgid "Footer
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
msgid "Leave blank to not print a footer."
|
285 |
msgstr "Lasciare in bianco per non stampare un piè di pagina"
|
286 |
|
287 |
-
#:
|
288 |
-
msgid "
|
289 |
-
msgstr "Opzioni
|
|
|
|
|
|
|
|
|
|
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
|
295 |
-
#:
|
296 |
-
#:
|
|
|
|
|
|
|
297 |
msgid "Print Invoice"
|
298 |
msgstr "Stampa fattura"
|
299 |
|
300 |
-
#:
|
301 |
-
#:
|
302 |
-
#:
|
|
|
|
|
303 |
msgid "Print Delivery Note"
|
304 |
msgstr "Stampa nota di consegna"
|
305 |
|
306 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "Invoice"
|
308 |
msgstr "Fattura"
|
309 |
|
310 |
-
#:
|
311 |
-
msgid "
|
312 |
-
msgstr "
|
313 |
|
314 |
-
#:
|
315 |
-
msgid "
|
316 |
-
msgstr "
|
317 |
|
318 |
-
#:
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
|
322 |
-
#:
|
323 |
-
msgid ""
|
324 |
-
"
|
325 |
-
"add company/shop info as well as personal notes & policies to print pages."
|
326 |
-
msgstr ""
|
327 |
-
"Stampa di fatture e note di spedizione per il plugin WooCommerce.\n"
|
328 |
-
"Puoi aggiungere informazioni sull'azienda/negozio così come note personali e "
|
329 |
-
"condizioni di vendita nelle stampe."
|
330 |
|
331 |
-
#:
|
332 |
-
msgid "
|
333 |
-
msgstr "
|
334 |
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
"
|
351 |
-
"
|
352 |
-
|
353 |
-
|
354 |
-
#:
|
355 |
-
msgid ""
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
|
363 |
-
"
|
364 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
+
"POT-Creation-Date: 2014-04-17 20:02+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-06-28 17:13+0100\n"
|
9 |
+
"Last-Translator: Massimiliano Losego <losegomax@gmail.com>\n"
|
10 |
+
"Language-Team: Massimiliano Losego <losegomax@gmail.com>\n"
|
11 |
+
"Language: it_IT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.6.5\n"
|
17 |
+
|
18 |
+
#: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:52
|
19 |
+
#: ../includes/class-wcdn-theme.php:71
|
20 |
+
#: ../includes/wcdn-template-functions.php:118
|
21 |
+
msgid "Print"
|
22 |
+
msgstr "Stampa"
|
23 |
+
|
24 |
+
#: ../includes/class-wcdn-settings.php:128
|
25 |
+
msgid "Print Order"
|
26 |
+
msgstr "Stampa Ordine"
|
27 |
|
28 |
+
#: ../includes/class-wcdn-settings.php:147
|
29 |
+
#, php-format
|
30 |
msgid ""
|
31 |
+
"You can preview the <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">invoice "
|
32 |
+
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
|
33 |
"note template</a>."
|
34 |
msgstr ""
|
35 |
"Puoi <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">visualizzare "
|
36 |
"l'anteprima del template della fattura</a> oppure <a href=\"%2$s\" target="
|
37 |
"\"%3$s\" class=\"%4$s\">il template della nota di spedizione</a>."
|
38 |
|
39 |
+
# @ woocommerce-delivery-notes
|
40 |
+
#: ../includes/class-wcdn-settings.php:148
|
41 |
msgid ""
|
42 |
+
"With the FAQ in the readme file you can learn how to customize the template."
|
|
|
|
|
43 |
msgstr ""
|
44 |
+
"Con le FAQ nel file readme potrai capire come personalizzare il template."
|
|
|
|
|
45 |
|
46 |
+
#: ../includes/class-wcdn-settings.php:159
|
47 |
+
msgid "Company/Shop Logo"
|
48 |
+
msgstr "Logo Azienda/Negozio"
|
|
|
|
|
|
|
|
|
49 |
|
50 |
+
#: ../includes/class-wcdn-settings.php:165
|
51 |
+
msgid "Remove Logo"
|
52 |
+
msgstr "Rimuovi Logo"
|
53 |
|
54 |
+
#: ../includes/class-wcdn-settings.php:166
|
55 |
+
msgid "Set Logo"
|
56 |
+
msgstr "Imposta Logo"
|
57 |
|
58 |
+
#: ../includes/class-wcdn-settings.php:170
|
59 |
+
msgid "A company/shop logo representing your business."
|
60 |
+
msgstr "Un logo della tua azienda/negozio che rappresenti la tua attività."
|
61 |
|
62 |
+
#: ../includes/class-wcdn-settings.php:171
|
63 |
+
#: ../includes/class-wcdn-settings.php:184
|
64 |
+
#: ../includes/class-wcdn-settings.php:197
|
65 |
+
#: ../includes/class-wcdn-settings.php:210
|
66 |
+
#: ../includes/class-wcdn-settings.php:223
|
67 |
+
#: ../includes/class-wcdn-settings.php:236
|
68 |
+
#: ../includes/class-wcdn-settings.php:312
|
69 |
+
#: ../includes/class-wcdn-settings.php:328
|
70 |
+
#: ../includes/class-wcdn-settings.php:344
|
71 |
+
msgid "Note:"
|
72 |
+
msgstr "Note:"
|
73 |
|
74 |
+
#: ../includes/class-wcdn-settings.php:172
|
75 |
msgid ""
|
76 |
"When the image is printed, its pixel density will automatically be eight "
|
77 |
"times higher than the original. This means, 1 printed inch will correspond "
|
85 |
"Esempio: un'immagine larga 576 pixel ed alta 288 in stampa sarà grande larga "
|
86 |
"2 pollici ed alta 1 pollice"
|
87 |
|
88 |
+
#: ../includes/class-wcdn-settings.php:178
|
89 |
+
msgid "Company/Shop Name"
|
90 |
+
msgstr "Nome Azienda/Negozio"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
+
#: ../includes/class-wcdn-settings.php:183
|
93 |
msgid "Your company/shop name for the Delivery Note."
|
94 |
msgstr "Il nome della tua azienda/negozio per la Nota di Consegna."
|
95 |
|
96 |
+
#: ../includes/class-wcdn-settings.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgid ""
|
98 |
+
"Leave blank to use the default Website/Blog title defined in WordPress "
|
99 |
+
"settings. The name will be ignored when a Logo is set."
|
100 |
msgstr ""
|
101 |
+
"Lasciare vuoto per usare il titolo del sito/blog predefinito nelle "
|
102 |
+
"impostazioni di WordPress. Il nome sarà ingorato quando è presente un Logo."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
+
#: ../includes/class-wcdn-settings.php:191
|
105 |
+
msgid "Company/Shop Address"
|
106 |
+
msgstr "Indirizzo Azienda/Negozio"
|
|
|
|
|
107 |
|
108 |
+
#: ../includes/class-wcdn-settings.php:196
|
109 |
msgid ""
|
110 |
+
"The postal address of the company/shop or even e-mail or telephone, which "
|
111 |
+
"gets printed right after the company/shop name."
|
112 |
msgstr ""
|
113 |
+
"L'indirizzo postale della ditta/negozio o l'indirizzo e-mail o il numero di "
|
114 |
+
"telefono, saranno stampati sotto il nome della ditta/negozio."
|
115 |
+
|
116 |
+
#: ../includes/class-wcdn-settings.php:198
|
117 |
+
msgid "Leave blank to not print an address."
|
118 |
+
msgstr "Lasciare in bianco per evitare di stampare un indirizzo"
|
119 |
+
|
120 |
+
#: ../includes/class-wcdn-settings.php:204
|
121 |
+
msgid "Complimentary Close"
|
122 |
+
msgstr "Chiusura Omaggio"
|
123 |
|
124 |
+
#: ../includes/class-wcdn-settings.php:209
|
125 |
msgid ""
|
126 |
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
127 |
"Your Order!, Merry Christmas!, etc.)."
|
129 |
"Aggiungi qualche nota personale o auguri o altro (es.: \"Grazie per l'ordine"
|
130 |
"\" , \"Buon Natale\" ecc.)"
|
131 |
|
132 |
+
#: ../includes/class-wcdn-settings.php:211
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Leave blank to not print any personal notes."
|
134 |
msgstr "Lasciare in bianco per non stampare nessuna nota personale"
|
135 |
|
136 |
+
#: ../includes/class-wcdn-settings.php:217
|
137 |
+
msgid "Returns Policy, Conditions, etc"
|
138 |
+
msgstr "Politica Resi, Condizioni, etc"
|
139 |
+
|
140 |
+
#: ../includes/class-wcdn-settings.php:222
|
141 |
msgid ""
|
142 |
"Here you can add some more policies, conditions etc. For example add a "
|
143 |
"returns policy in case the client would like to send back some goods. In "
|
151 |
"prega di aggiungere le informazioni richieste in ottemperanza alle leggi "
|
152 |
"vigenti."
|
153 |
|
154 |
+
#: ../includes/class-wcdn-settings.php:224
|
155 |
msgid "Leave blank to not print any policies or conditions."
|
156 |
msgstr "Lasciare in bianco per non stampare alcuna regola o condizione"
|
157 |
|
158 |
+
#: ../includes/class-wcdn-settings.php:230
|
159 |
+
msgid "Footer"
|
160 |
+
msgstr "Testo piè di pagina"
|
161 |
|
162 |
+
#: ../includes/class-wcdn-settings.php:235
|
163 |
+
msgid ""
|
164 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
165 |
+
"This makes the printed sheets a bit more branded."
|
166 |
+
msgstr ""
|
167 |
+
"Aggiungi qualche informazione a piè di pagina come email, telefono, "
|
168 |
+
"copyright ecc. questo renderà più professionali le stampe."
|
169 |
+
|
170 |
+
#: ../includes/class-wcdn-settings.php:237
|
171 |
msgid "Leave blank to not print a footer."
|
172 |
msgstr "Lasciare in bianco per non stampare un piè di pagina"
|
173 |
|
174 |
+
#: ../includes/class-wcdn-settings.php:244
|
175 |
+
msgid "Front-end Options"
|
176 |
+
msgstr "Opzioni del Front-end"
|
177 |
+
|
178 |
+
# @ woocommerce-delivery-notes
|
179 |
+
#: ../includes/class-wcdn-settings.php:249
|
180 |
+
msgid "Print Page Endpoint"
|
181 |
+
msgstr "Stampa destinazione Pagina"
|
182 |
|
183 |
+
# @ woocommerce-delivery-notes
|
184 |
+
#: ../includes/class-wcdn-settings.php:256
|
185 |
+
msgid ""
|
186 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
187 |
+
"should be unique."
|
188 |
+
msgstr ""
|
189 |
+
"La destinazione è relativa alla pagina URL dell'account per stampae "
|
190 |
+
"l'ordine. Dovrebbe essere univoca."
|
191 |
+
|
192 |
+
#: ../includes/class-wcdn-settings.php:262
|
193 |
+
msgid "Print Buttons"
|
194 |
+
msgstr "Pulsanti si Stampa"
|
195 |
+
|
196 |
+
# @ woocommerce-delivery-notes
|
197 |
+
#: ../includes/class-wcdn-settings.php:269
|
198 |
+
msgid "Show print button on the \"View Order\" page"
|
199 |
+
msgstr "Mostra il bottone di stampa nella pagina \"Visualizza Ordini\""
|
200 |
+
|
201 |
+
# @ woocommerce-delivery-notes
|
202 |
+
#: ../includes/class-wcdn-settings.php:276
|
203 |
+
msgid "Show print buttons on the \"My Account\" page"
|
204 |
+
msgstr "Mostra il bottone di stampa nella pagina \"Mio Account\""
|
205 |
+
|
206 |
+
#: ../includes/class-wcdn-settings.php:284
|
207 |
+
msgid "Order Numbering"
|
208 |
+
msgstr "Numerazione Ordine"
|
209 |
+
|
210 |
+
#: ../includes/class-wcdn-settings.php:289
|
211 |
+
#: ../includes/wcdn-template-functions.php:208
|
212 |
+
msgid "Invoice Number"
|
213 |
+
msgstr "Numero Fattura"
|
214 |
+
|
215 |
+
#: ../includes/class-wcdn-settings.php:297
|
216 |
+
msgid "Create invoice numbers"
|
217 |
+
msgstr "Crea Numeri Fattura"
|
218 |
+
|
219 |
+
#: ../includes/class-wcdn-settings.php:304
|
220 |
+
msgid "Invoice Number Start"
|
221 |
+
msgstr "Numero iniziale fattura"
|
222 |
+
|
223 |
+
#: ../includes/class-wcdn-settings.php:311
|
224 |
+
msgid "Start the numbering at the specified number."
|
225 |
+
msgstr "Inizial la numerazione da un numero specifico."
|
226 |
+
|
227 |
+
#: ../includes/class-wcdn-settings.php:313
|
228 |
+
msgid "Use only integers."
|
229 |
+
msgstr "Usa solo numeri interi."
|
230 |
+
|
231 |
+
#: ../includes/class-wcdn-settings.php:314
|
232 |
+
#: ../includes/class-wcdn-settings.php:330
|
233 |
+
#: ../includes/class-wcdn-settings.php:346
|
234 |
+
msgid "Already created invoice numbers are not affected by changes."
|
235 |
+
msgstr "I numeri di fattura già creati non saranno modificati."
|
236 |
+
|
237 |
+
#: ../includes/class-wcdn-settings.php:320
|
238 |
+
msgid "Invoice Number Prefix"
|
239 |
+
msgstr "Prefisso Numero Fattura"
|
240 |
+
|
241 |
+
#: ../includes/class-wcdn-settings.php:327
|
242 |
+
msgid "This text will be prepended to the invoice number."
|
243 |
+
msgstr "Questo testo sarà aggiunto prima del numero fattura."
|
244 |
+
|
245 |
+
#: ../includes/class-wcdn-settings.php:329
|
246 |
+
msgid "Leave blank to not add a prefix."
|
247 |
+
msgstr "Lascia in bianco per non aggiungere un prefisso."
|
248 |
+
|
249 |
+
#: ../includes/class-wcdn-settings.php:336
|
250 |
+
msgid "Invoice Number Suffix"
|
251 |
+
msgstr "Suffisso Numero Fattura"
|
252 |
+
|
253 |
+
#: ../includes/class-wcdn-settings.php:343
|
254 |
+
msgid "This text will be appended to the invoice number."
|
255 |
+
msgstr "Questo testo sarà aggiunto dopo il numero fattura."
|
256 |
+
|
257 |
+
#: ../includes/class-wcdn-settings.php:345
|
258 |
+
msgid "Leave blank to not add a suffix."
|
259 |
+
msgstr "Lascia in bianco per non aggiungere un suffisso."
|
260 |
+
|
261 |
+
#: ../includes/class-wcdn-settings.php:352
|
262 |
+
msgid "Sequential Order Number"
|
263 |
+
msgstr "Numero d'ordine Sequenziale"
|
264 |
+
|
265 |
+
#: ../includes/class-wcdn-settings.php:356
|
266 |
+
msgid "Sequential numbering is enabled."
|
267 |
+
msgstr "Numerazione sequenziale abilitata"
|
268 |
+
|
269 |
+
#: ../includes/class-wcdn-settings.php:358
|
270 |
+
#, php-format
|
271 |
+
msgid ""
|
272 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
273 |
+
"Numbers</a> Plugin."
|
274 |
+
msgstr ""
|
275 |
+
"Installa e attiva il Plugin gratuito <a href=\"%s\">WooCommerce Sequential "
|
276 |
+
"Order Numbers</a>."
|
277 |
|
278 |
+
#: ../includes/class-wcdn-writepanel.php:83
|
279 |
+
#: ../includes/class-wcdn-writepanel.php:84
|
280 |
+
#: ../includes/class-wcdn-writepanel.php:105
|
281 |
+
#: ../includes/class-wcdn-writepanel.php:106
|
282 |
+
#: ../includes/class-wcdn-writepanel.php:192
|
283 |
msgid "Print Invoice"
|
284 |
msgstr "Stampa fattura"
|
285 |
|
286 |
+
#: ../includes/class-wcdn-writepanel.php:86
|
287 |
+
#: ../includes/class-wcdn-writepanel.php:87
|
288 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
289 |
+
#: ../includes/class-wcdn-writepanel.php:109
|
290 |
+
#: ../includes/class-wcdn-writepanel.php:193
|
291 |
msgid "Print Delivery Note"
|
292 |
msgstr "Stampa nota di consegna"
|
293 |
|
294 |
+
#: ../includes/class-wcdn-writepanel.php:164
|
295 |
+
#, php-format
|
296 |
+
msgid "Invoice created."
|
297 |
+
msgid_plural "%s invoices created."
|
298 |
+
msgstr[0] "Fattura creata."
|
299 |
+
msgstr[1] "%s fatture create."
|
300 |
+
|
301 |
+
#: ../includes/class-wcdn-writepanel.php:166
|
302 |
+
#, php-format
|
303 |
+
msgid "Delivery note created."
|
304 |
+
msgid_plural "%s delivery notes created."
|
305 |
+
msgstr[0] "Creata Nota di consegna."
|
306 |
+
msgstr[1] "Create %s Note di consegna."
|
307 |
+
|
308 |
+
#: ../includes/class-wcdn-writepanel.php:170
|
309 |
+
msgid "Print now"
|
310 |
+
msgstr "Stampa ora"
|
311 |
+
|
312 |
+
#: ../includes/class-wcdn-writepanel.php:181
|
313 |
+
msgid "Order Printing"
|
314 |
+
msgstr "Stampa Ordine"
|
315 |
+
|
316 |
+
#: ../includes/class-wcdn-writepanel.php:197
|
317 |
+
msgid "Invoice number: "
|
318 |
+
msgstr "Numero Fattura"
|
319 |
+
|
320 |
+
#: ../includes/wcdn-template-functions.php:32
|
321 |
msgid "Invoice"
|
322 |
msgstr "Fattura"
|
323 |
|
324 |
+
#: ../includes/wcdn-template-functions.php:34
|
325 |
+
msgid "Delivery Note"
|
326 |
+
msgstr "Nota di consegna"
|
327 |
|
328 |
+
#: ../includes/wcdn-template-functions.php:36
|
329 |
+
msgid "Order"
|
330 |
+
msgstr "Ordine"
|
331 |
|
332 |
+
#: ../includes/wcdn-template-functions.php:214
|
333 |
+
msgid "Order Number"
|
334 |
+
msgstr "Numero dell'ordine"
|
335 |
|
336 |
+
#: ../includes/wcdn-template-functions.php:219
|
337 |
+
msgid "Order Date"
|
338 |
+
msgstr "Data dell'ordine"
|
|
|
|
|
|
|
|
|
|
|
339 |
|
340 |
+
#: ../includes/wcdn-template-functions.php:224
|
341 |
+
msgid "Payment Method"
|
342 |
+
msgstr "Metodo di pagamento"
|
343 |
|
344 |
+
# @ woocommerce-delivery-notes
|
345 |
+
#: ../includes/wcdn-template-functions.php:230
|
346 |
+
msgid "Email"
|
347 |
+
msgstr "Email"
|
348 |
+
|
349 |
+
# @ woocommerce-delivery-notes
|
350 |
+
#: ../includes/wcdn-template-functions.php:237
|
351 |
+
msgid "Telephone"
|
352 |
+
msgstr "Telefono"
|
353 |
+
|
354 |
+
#: ../includes/wcdn-template-functions.php:263
|
355 |
+
msgid "SKU:"
|
356 |
+
msgstr "COD:"
|
357 |
+
|
358 |
+
#: ../templates/print-order/print-content.php:28
|
359 |
+
msgid "Billing Address"
|
360 |
+
msgstr "Indirizzo di Fatturazione"
|
361 |
+
|
362 |
+
#: ../templates/print-order/print-content.php:31
|
363 |
+
#: ../templates/print-order/print-content.php:42
|
364 |
+
msgid "N/A"
|
365 |
+
msgstr "N/D"
|
366 |
+
|
367 |
+
#: ../templates/print-order/print-content.php:39
|
368 |
+
msgid "Shipping Address"
|
369 |
+
msgstr "Indirizzo di Spedizione"
|
370 |
+
|
371 |
+
#: ../templates/print-order/print-content.php:74
|
372 |
+
msgid "Product"
|
373 |
+
msgstr "Prodotto"
|
374 |
+
|
375 |
+
#: ../templates/print-order/print-content.php:75
|
376 |
+
msgid "Quantity"
|
377 |
+
msgstr "Quantità"
|
378 |
+
|
379 |
+
#: ../templates/print-order/print-content.php:76
|
380 |
+
msgid "Total"
|
381 |
+
msgstr "Totale"
|
382 |
+
|
383 |
+
#: ../templates/print-order/print-content.php:100
|
384 |
+
msgid "Download:"
|
385 |
+
msgstr "Scarica:"
|
386 |
+
|
387 |
+
# @ woocommerce-delivery-notes
|
388 |
+
#: ../templates/print-order/print-content.php:101
|
389 |
+
#, php-format
|
390 |
+
msgid "%s Files"
|
391 |
+
msgstr "%s File"
|
392 |
+
|
393 |
+
#: ../templates/print-order/print-content.php:148
|
394 |
+
msgid "Customer Note"
|
395 |
+
msgstr "Note del cliente"
|
396 |
+
|
397 |
+
#: ../woocommerce-delivery-notes.php:144
|
398 |
+
msgid "Go to the settings page"
|
399 |
+
msgstr "Vai alla pagina impostazioni"
|
400 |
+
|
401 |
+
#: ../woocommerce-delivery-notes.php:144
|
402 |
+
msgid "Settings"
|
403 |
+
msgstr "Impostazioni"
|
404 |
+
|
405 |
+
#~ msgid ""
|
406 |
+
#~ "For more advanced control copy <code>woocommerce-delivery-notes/templates/"
|
407 |
+
#~ "print/style.css</code> to <code>your-theme-name/woocommerce/print/style."
|
408 |
+
#~ "css</code>."
|
409 |
+
#~ msgstr ""
|
410 |
+
#~ "Per un controllo avanzato copia <code>woocommerce-delivery-notes/"
|
411 |
+
#~ "templates/print/style.css</code> in <code>your-theme-name/woocommerce/"
|
412 |
+
#~ "print/style.css</code>."
|
413 |
+
|
414 |
+
#~ msgid "2.0"
|
415 |
+
#~ msgstr "2.0"
|
416 |
+
|
417 |
+
#~ msgid "Get Community Support"
|
418 |
+
#~ msgstr "Ottieni il supporto della comunità"
|
419 |
+
|
420 |
+
#~ msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
421 |
+
#~ msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
422 |
+
|
423 |
+
#~ msgid "You do not have sufficient permissions to access this page."
|
424 |
+
#~ msgstr "Non hai permessi sufficienti per accedere a questa pagina."
|
425 |
+
|
426 |
+
#~ msgid "FAQ"
|
427 |
+
#~ msgstr "FAQ"
|
428 |
+
|
429 |
+
#~ msgid "Support"
|
430 |
+
#~ msgstr "Supporto"
|
431 |
+
|
432 |
+
#~ msgid "Weight:"
|
433 |
+
#~ msgstr "Peso:"
|
434 |
+
|
435 |
+
#~ msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
436 |
+
#~ msgstr "Plugin: WooCommerce Stampa fatture e bolle di consegna"
|
437 |
+
|
438 |
+
#~ msgid "About the Plugin"
|
439 |
+
#~ msgstr "A proposito del plugin"
|
440 |
+
|
441 |
+
#~ msgid "For more information:"
|
442 |
+
#~ msgstr "Per ulteriori informazioni:"
|
443 |
+
|
444 |
+
#~ msgid "Frequently Asked Questions"
|
445 |
+
#~ msgstr "Domande frequenti"
|
446 |
+
|
447 |
+
#~ msgid "Project on WordPress.org"
|
448 |
+
#~ msgstr "Progetto WordPress.org"
|
449 |
+
|
450 |
+
#~ msgid "Project on GitHub"
|
451 |
+
#~ msgstr "Progetto su GitHub"
|
452 |
+
|
453 |
+
#~ msgid "Invoices and Delivery Notes"
|
454 |
+
#~ msgstr "Fatture e Note di Consegna"
|
455 |
+
|
456 |
+
#~ msgid "Personal Notes"
|
457 |
+
#~ msgstr "Note Personali"
|
458 |
+
|
459 |
+
#~ msgid "Order Numbering Options"
|
460 |
+
#~ msgstr "Opzioni di numerazione ordine"
|
461 |
+
|
462 |
+
#~ msgid "Recipient"
|
463 |
+
#~ msgstr "Destinatario"
|
464 |
+
|
465 |
+
#~ msgid "WooCommerce Print Invoices & Delivery Notes"
|
466 |
+
#~ msgstr "WooCommerce Print Invoices & Delivery Notes"
|
467 |
+
|
468 |
+
#~ msgid ""
|
469 |
+
#~ "Print order invoices & delivery notes for WooCommerce shop plugin. You "
|
470 |
+
#~ "can add company/shop info as well as personal notes & policies to print "
|
471 |
+
#~ "pages."
|
472 |
+
#~ msgstr ""
|
473 |
+
#~ "Stampa di fatture e note di spedizione per il plugin WooCommerce.\n"
|
474 |
+
#~ "Puoi aggiungere informazioni sull'azienda/negozio così come note "
|
475 |
+
#~ "personali e condizioni di vendita nelle stampe."
|
476 |
+
|
477 |
+
#~ msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
478 |
+
#~ msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
479 |
+
|
480 |
+
#~ msgid ""
|
481 |
+
#~ "This plugin enables you to add a Invoice or simple Delivery Note page for "
|
482 |
+
#~ "printing for your orders in WooCommerce shop plugin. You can add your "
|
483 |
+
#~ "company postal address, further add personal notes, refund or other "
|
484 |
+
#~ "policies and a footer note/branding. This helps speed up your daily shop "
|
485 |
+
#~ "and order management. In some countries (e.g. in the European Union) it "
|
486 |
+
#~ "is also required to advice the customer with proper refund policies so "
|
487 |
+
#~ "this little plugin might help you a bit with that too."
|
488 |
+
#~ msgstr ""
|
489 |
+
#~ "Questo plugin permette di creare una fattura o una nota di spedizione da "
|
490 |
+
#~ "stampare per gli ordini nel plugin WooCommerce. Si può aggiungere "
|
491 |
+
#~ "l'indirizzo postale dell'azienda, ulteriori note personali, condizioni di "
|
492 |
+
#~ "recesso o altro e delle note/personalizzazioni a piè di pagina. Questo "
|
493 |
+
#~ "aiuta a velocizzare la gestione quotidiana del negozio e degli ordini. In "
|
494 |
+
#~ "alcuni paesi (ad esempio l'Unione Europea) è anche obbligatorio avvisare "
|
495 |
+
#~ "i clienti con le note legali sulle condizioni di recesso, quindi questo "
|
496 |
+
#~ "piccolo plugin può aiutare anche in questo."
|
497 |
+
|
498 |
+
#~ msgid ""
|
499 |
+
#~ "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to "
|
500 |
+
#~ "a single order view. On the right side you will see the Order Print meta "
|
501 |
+
#~ "box. Click one of the buttons and you get the invoice or delivery note "
|
502 |
+
#~ "printing page. Yes, it is that easy :-)."
|
503 |
+
#~ msgstr ""
|
504 |
+
#~ "Basta andare in <a href=\"%1$s\">WooCommerce > Orders</a> ed entrare "
|
505 |
+
#~ "nella vista del singolo ordine. Sulla destra sarà visibile il riquadro "
|
506 |
+
#~ "\"Stampa Ordine\". Cliccando su uno dei bottoni si ottiene la stampa "
|
507 |
+
#~ "della fattura o della nota di spedizione. Si, è veramente così "
|
508 |
+
#~ "semplice :-)"
|
languages/woocommerce-delivery-notes-nl_NL.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-nl_NL.po
CHANGED
@@ -4,27 +4,26 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
-
"POT-Creation-Date: 2014-
|
8 |
-
"PO-Revision-Date: 2014-
|
9 |
-
"Last-Translator:
|
10 |
"Language-Team: \n"
|
11 |
"Language: nl_NL\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
-
"X-Generator: Poedit 1.6.
|
17 |
|
18 |
-
#: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:
|
19 |
-
#: ../includes/class-wcdn-theme.php:
|
20 |
-
#: ../includes/wcdn-template-functions.php:
|
21 |
msgid "Print"
|
22 |
msgstr "Print"
|
23 |
|
24 |
#: ../includes/class-wcdn-settings.php:128
|
25 |
-
#, fuzzy
|
26 |
msgid "Print Order"
|
27 |
-
msgstr "Print"
|
28 |
|
29 |
# @ woocommerce-delivery-notes
|
30 |
#: ../includes/class-wcdn-settings.php:147
|
@@ -34,28 +33,33 @@ msgid ""
|
|
34 |
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
|
35 |
"note template</a>."
|
36 |
msgstr ""
|
|
|
|
|
|
|
37 |
|
38 |
# @ woocommerce-delivery-notes
|
39 |
#: ../includes/class-wcdn-settings.php:148
|
40 |
msgid ""
|
41 |
"With the FAQ in the readme file you can learn how to customize the template."
|
42 |
msgstr ""
|
|
|
|
|
43 |
|
44 |
#: ../includes/class-wcdn-settings.php:159
|
45 |
msgid "Company/Shop Logo"
|
46 |
-
msgstr ""
|
47 |
|
48 |
#: ../includes/class-wcdn-settings.php:165
|
49 |
msgid "Remove Logo"
|
50 |
-
msgstr ""
|
51 |
|
52 |
#: ../includes/class-wcdn-settings.php:166
|
53 |
msgid "Set Logo"
|
54 |
-
msgstr ""
|
55 |
|
56 |
#: ../includes/class-wcdn-settings.php:170
|
57 |
msgid "A company/shop logo representing your business."
|
58 |
-
msgstr ""
|
59 |
|
60 |
#: ../includes/class-wcdn-settings.php:171
|
61 |
#: ../includes/class-wcdn-settings.php:184
|
@@ -77,14 +81,18 @@ msgid ""
|
|
77 |
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
78 |
"to 1 inch."
|
79 |
msgstr ""
|
|
|
|
|
|
|
|
|
80 |
|
81 |
#: ../includes/class-wcdn-settings.php:178
|
82 |
msgid "Company/Shop Name"
|
83 |
-
msgstr ""
|
84 |
|
85 |
#: ../includes/class-wcdn-settings.php:183
|
86 |
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr ""
|
88 |
|
89 |
# @ woocommerce-delivery-notes
|
90 |
#: ../includes/class-wcdn-settings.php:185
|
@@ -92,10 +100,12 @@ msgid ""
|
|
92 |
"Leave blank to use the default Website/Blog title defined in WordPress "
|
93 |
"settings. The name will be ignored when a Logo is set."
|
94 |
msgstr ""
|
|
|
|
|
95 |
|
96 |
#: ../includes/class-wcdn-settings.php:191
|
97 |
msgid "Company/Shop Address"
|
98 |
-
msgstr ""
|
99 |
|
100 |
# @ woocommerce-delivery-notes
|
101 |
#: ../includes/class-wcdn-settings.php:196
|
@@ -103,30 +113,33 @@ msgid ""
|
|
103 |
"The postal address of the company/shop or even e-mail or telephone, which "
|
104 |
"gets printed right after the company/shop name."
|
105 |
msgstr ""
|
|
|
|
|
106 |
|
107 |
#: ../includes/class-wcdn-settings.php:198
|
108 |
msgid "Leave blank to not print an address."
|
109 |
-
msgstr ""
|
110 |
|
111 |
# @ woocommerce-delivery-notes
|
112 |
#: ../includes/class-wcdn-settings.php:204
|
113 |
-
msgid "Complimentary
|
114 |
-
msgstr ""
|
115 |
|
116 |
#: ../includes/class-wcdn-settings.php:209
|
117 |
msgid ""
|
118 |
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
119 |
"Your Order!, Merry Christmas!, etc.)."
|
120 |
msgstr ""
|
|
|
|
|
121 |
|
122 |
#: ../includes/class-wcdn-settings.php:211
|
123 |
msgid "Leave blank to not print any personal notes."
|
124 |
-
msgstr ""
|
125 |
|
126 |
#: ../includes/class-wcdn-settings.php:217
|
127 |
-
#, fuzzy
|
128 |
msgid "Returns Policy, Conditions, etc"
|
129 |
-
msgstr "Algemene Voorwaarden
|
130 |
|
131 |
#: ../includes/class-wcdn-settings.php:222
|
132 |
msgid ""
|
@@ -135,15 +148,18 @@ msgid ""
|
|
135 |
"some countries (e.g. in the European Union) this is required so please add "
|
136 |
"any required info in accordance with the statutory regulations."
|
137 |
msgstr ""
|
|
|
|
|
|
|
138 |
|
139 |
#: ../includes/class-wcdn-settings.php:224
|
140 |
msgid "Leave blank to not print any policies or conditions."
|
141 |
-
msgstr ""
|
142 |
|
143 |
# @ woocommerce-delivery-notes
|
144 |
#: ../includes/class-wcdn-settings.php:230
|
145 |
msgid "Footer"
|
146 |
-
msgstr ""
|
147 |
|
148 |
# @ woocommerce-delivery-notes
|
149 |
#: ../includes/class-wcdn-settings.php:235
|
@@ -151,19 +167,20 @@ msgid ""
|
|
151 |
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
152 |
"This makes the printed sheets a bit more branded."
|
153 |
msgstr ""
|
|
|
154 |
|
155 |
#: ../includes/class-wcdn-settings.php:237
|
156 |
msgid "Leave blank to not print a footer."
|
157 |
-
msgstr ""
|
158 |
|
159 |
#: ../includes/class-wcdn-settings.php:244
|
160 |
msgid "Front-end Options"
|
161 |
-
msgstr ""
|
162 |
|
163 |
# @ woocommerce-delivery-notes
|
164 |
#: ../includes/class-wcdn-settings.php:249
|
165 |
msgid "Print Page Endpoint"
|
166 |
-
msgstr ""
|
167 |
|
168 |
# @ woocommerce-delivery-notes
|
169 |
#: ../includes/class-wcdn-settings.php:256
|
@@ -171,85 +188,85 @@ msgid ""
|
|
171 |
"The endpoint is appended to the accounts page URL to print the order. It "
|
172 |
"should be unique."
|
173 |
msgstr ""
|
|
|
|
|
174 |
|
175 |
#: ../includes/class-wcdn-settings.php:262
|
176 |
msgid "Print Buttons"
|
177 |
-
msgstr ""
|
178 |
|
179 |
# @ woocommerce-delivery-notes
|
180 |
#: ../includes/class-wcdn-settings.php:269
|
181 |
msgid "Show print button on the \"View Order\" page"
|
182 |
-
msgstr ""
|
183 |
|
184 |
# @ woocommerce-delivery-notes
|
185 |
#: ../includes/class-wcdn-settings.php:276
|
186 |
msgid "Show print buttons on the \"My Account\" page"
|
187 |
-
msgstr ""
|
188 |
|
189 |
#: ../includes/class-wcdn-settings.php:284
|
190 |
-
#, fuzzy
|
191 |
msgid "Order Numbering"
|
192 |
-
msgstr "
|
193 |
|
194 |
#: ../includes/class-wcdn-settings.php:289
|
195 |
-
#: ../includes/wcdn-template-functions.php:
|
196 |
-
#, fuzzy
|
197 |
msgid "Invoice Number"
|
198 |
-
msgstr "
|
199 |
|
200 |
#: ../includes/class-wcdn-settings.php:297
|
201 |
msgid "Create invoice numbers"
|
202 |
-
msgstr ""
|
203 |
|
204 |
#: ../includes/class-wcdn-settings.php:304
|
205 |
msgid "Invoice Number Start"
|
206 |
-
msgstr ""
|
207 |
|
208 |
#: ../includes/class-wcdn-settings.php:311
|
209 |
msgid "Start the numbering at the specified number."
|
210 |
-
msgstr ""
|
211 |
|
212 |
#: ../includes/class-wcdn-settings.php:313
|
213 |
msgid "Use only integers."
|
214 |
-
msgstr ""
|
215 |
|
216 |
#: ../includes/class-wcdn-settings.php:314
|
217 |
#: ../includes/class-wcdn-settings.php:330
|
218 |
#: ../includes/class-wcdn-settings.php:346
|
219 |
msgid "Already created invoice numbers are not affected by changes."
|
220 |
-
msgstr ""
|
221 |
|
222 |
#: ../includes/class-wcdn-settings.php:320
|
223 |
msgid "Invoice Number Prefix"
|
224 |
-
msgstr ""
|
225 |
|
226 |
#: ../includes/class-wcdn-settings.php:327
|
227 |
msgid "This text will be prepended to the invoice number."
|
228 |
-
msgstr ""
|
229 |
|
230 |
#: ../includes/class-wcdn-settings.php:329
|
231 |
msgid "Leave blank to not add a prefix."
|
232 |
-
msgstr ""
|
233 |
|
234 |
#: ../includes/class-wcdn-settings.php:336
|
235 |
msgid "Invoice Number Suffix"
|
236 |
-
msgstr ""
|
237 |
|
238 |
#: ../includes/class-wcdn-settings.php:343
|
239 |
msgid "This text will be appended to the invoice number."
|
240 |
-
msgstr ""
|
241 |
|
242 |
#: ../includes/class-wcdn-settings.php:345
|
243 |
msgid "Leave blank to not add a suffix."
|
244 |
-
msgstr ""
|
245 |
|
246 |
#: ../includes/class-wcdn-settings.php:352
|
247 |
msgid "Sequential Order Number"
|
248 |
-
msgstr ""
|
249 |
|
250 |
#: ../includes/class-wcdn-settings.php:356
|
251 |
msgid "Sequential numbering is enabled."
|
252 |
-
msgstr ""
|
253 |
|
254 |
#: ../includes/class-wcdn-settings.php:358
|
255 |
#, php-format
|
@@ -257,51 +274,69 @@ msgid ""
|
|
257 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
258 |
"Numbers</a> Plugin."
|
259 |
msgstr ""
|
|
|
|
|
260 |
|
261 |
#: ../includes/class-wcdn-writepanel.php:83
|
262 |
#: ../includes/class-wcdn-writepanel.php:84
|
263 |
-
#: ../includes/class-wcdn-writepanel.php:
|
264 |
-
#: ../includes/class-wcdn-writepanel.php:
|
265 |
-
#: ../includes/class-wcdn-writepanel.php:
|
266 |
msgid "Print Invoice"
|
267 |
msgstr "Print Factuur"
|
268 |
|
269 |
#: ../includes/class-wcdn-writepanel.php:86
|
270 |
#: ../includes/class-wcdn-writepanel.php:87
|
271 |
-
#: ../includes/class-wcdn-writepanel.php:
|
272 |
-
#: ../includes/class-wcdn-writepanel.php:
|
273 |
-
#: ../includes/class-wcdn-writepanel.php:
|
274 |
msgid "Print Delivery Note"
|
275 |
-
msgstr "Print
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
|
277 |
-
#: ../includes/class-wcdn-writepanel.php:
|
278 |
-
#,
|
279 |
msgid "Invoice created."
|
280 |
msgid_plural "%s invoices created."
|
281 |
-
msgstr[0] "Factuur"
|
282 |
-
msgstr[1] "
|
283 |
|
284 |
-
#: ../includes/class-wcdn-writepanel.php:
|
285 |
-
#,
|
286 |
msgid "Delivery note created."
|
287 |
msgid_plural "%s delivery notes created."
|
288 |
-
msgstr[0] "Pakbon"
|
289 |
-
msgstr[1] "
|
290 |
|
291 |
-
#: ../includes/class-wcdn-writepanel.php:
|
292 |
-
#,
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgid "Print now"
|
294 |
-
msgstr "Print
|
295 |
|
296 |
-
#: ../includes/class-wcdn-writepanel.php:
|
297 |
-
#, fuzzy
|
298 |
msgid "Order Printing"
|
299 |
-
msgstr "Print Bestelling"
|
300 |
|
301 |
-
#: ../includes/class-wcdn-writepanel.php:
|
302 |
-
#, fuzzy
|
303 |
msgid "Invoice number: "
|
304 |
-
msgstr "
|
|
|
|
|
|
|
|
|
305 |
|
306 |
#: ../includes/wcdn-template-functions.php:32
|
307 |
msgid "Invoice"
|
@@ -312,79 +347,80 @@ msgid "Delivery Note"
|
|
312 |
msgstr "Pakbon"
|
313 |
|
314 |
#: ../includes/wcdn-template-functions.php:36
|
315 |
-
|
|
|
|
|
|
|
316 |
msgid "Order"
|
317 |
-
msgstr "
|
318 |
|
319 |
-
#: ../includes/wcdn-template-functions.php:
|
320 |
msgid "Order Number"
|
321 |
-
msgstr ""
|
322 |
|
323 |
-
#: ../includes/wcdn-template-functions.php:
|
324 |
-
#, fuzzy
|
325 |
msgid "Order Date"
|
326 |
-
msgstr "
|
327 |
|
328 |
-
#: ../includes/wcdn-template-functions.php:
|
329 |
msgid "Payment Method"
|
330 |
-
msgstr ""
|
331 |
|
332 |
# @ woocommerce-delivery-notes
|
333 |
-
#: ../includes/wcdn-template-functions.php:
|
334 |
msgid "Email"
|
335 |
-
msgstr ""
|
336 |
|
337 |
# @ woocommerce-delivery-notes
|
338 |
-
#: ../includes/wcdn-template-functions.php:
|
339 |
msgid "Telephone"
|
340 |
-
msgstr ""
|
341 |
|
342 |
-
#: ../includes/wcdn-template-functions.php:
|
343 |
msgid "SKU:"
|
344 |
msgstr "Art.Nr."
|
345 |
|
346 |
# @ woocommerce-delivery-notes
|
347 |
#: ../templates/print-order/print-content.php:28
|
348 |
msgid "Billing Address"
|
349 |
-
msgstr ""
|
350 |
|
351 |
#: ../templates/print-order/print-content.php:31
|
352 |
#: ../templates/print-order/print-content.php:42
|
353 |
msgid "N/A"
|
354 |
-
msgstr ""
|
355 |
|
356 |
# @ woocommerce-delivery-notes
|
357 |
#: ../templates/print-order/print-content.php:39
|
358 |
msgid "Shipping Address"
|
359 |
-
msgstr ""
|
360 |
|
361 |
#: ../templates/print-order/print-content.php:74
|
362 |
msgid "Product"
|
363 |
-
msgstr ""
|
364 |
|
365 |
#: ../templates/print-order/print-content.php:75
|
366 |
msgid "Quantity"
|
367 |
msgstr "Hoeveelheid"
|
368 |
|
369 |
#: ../templates/print-order/print-content.php:76
|
370 |
-
#, fuzzy
|
371 |
msgid "Total"
|
372 |
msgstr "Totaal"
|
373 |
|
374 |
#: ../templates/print-order/print-content.php:100
|
375 |
msgid "Download:"
|
376 |
-
msgstr ""
|
377 |
|
378 |
# @ woocommerce-delivery-notes
|
379 |
#: ../templates/print-order/print-content.php:101
|
380 |
#, php-format
|
381 |
msgid "%s Files"
|
382 |
-
msgstr ""
|
383 |
|
384 |
# @ woocommerce-delivery-notes
|
385 |
#: ../templates/print-order/print-content.php:148
|
386 |
msgid "Customer Note"
|
387 |
-
msgstr ""
|
388 |
|
389 |
#: ../woocommerce-delivery-notes.php:144
|
390 |
msgid "Go to the settings page"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
6 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
7 |
+
"POT-Creation-Date: 2014-09-19 21:09+0100\n"
|
8 |
+
"PO-Revision-Date: 2014-10-18 15:51+0100\n"
|
9 |
+
"Last-Translator: Bas Middelham <bas@middelham.nl>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: nl_NL\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
16 |
+
"X-Generator: Poedit 1.6.10\n"
|
17 |
|
18 |
+
#: ../includes/class-wcdn-settings.php:90 ../includes/class-wcdn-theme.php:48
|
19 |
+
#: ../includes/class-wcdn-theme.php:83
|
20 |
+
#: ../includes/wcdn-template-functions.php:120
|
21 |
msgid "Print"
|
22 |
msgstr "Print"
|
23 |
|
24 |
#: ../includes/class-wcdn-settings.php:128
|
|
|
25 |
msgid "Print Order"
|
26 |
+
msgstr "Print bestelling"
|
27 |
|
28 |
# @ woocommerce-delivery-notes
|
29 |
#: ../includes/class-wcdn-settings.php:147
|
33 |
"template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">delivery "
|
34 |
"note template</a>."
|
35 |
msgstr ""
|
36 |
+
"Bekijk een voorbeeld van het <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s"
|
37 |
+
"\">factuur sjabloon</a> of het <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s"
|
38 |
+
"\">pakbon sjabloon</a>."
|
39 |
|
40 |
# @ woocommerce-delivery-notes
|
41 |
#: ../includes/class-wcdn-settings.php:148
|
42 |
msgid ""
|
43 |
"With the FAQ in the readme file you can learn how to customize the template."
|
44 |
msgstr ""
|
45 |
+
"Lees de FAQ in het readme bestand om te leren hoe je een sjabloon kan "
|
46 |
+
"aanpassen."
|
47 |
|
48 |
#: ../includes/class-wcdn-settings.php:159
|
49 |
msgid "Company/Shop Logo"
|
50 |
+
msgstr "Winkel- of bedrijfslogo"
|
51 |
|
52 |
#: ../includes/class-wcdn-settings.php:165
|
53 |
msgid "Remove Logo"
|
54 |
+
msgstr "Verwijder Logo"
|
55 |
|
56 |
#: ../includes/class-wcdn-settings.php:166
|
57 |
msgid "Set Logo"
|
58 |
+
msgstr "Plaats Logo"
|
59 |
|
60 |
#: ../includes/class-wcdn-settings.php:170
|
61 |
msgid "A company/shop logo representing your business."
|
62 |
+
msgstr "Een logo voor je winkel of bedrijf. "
|
63 |
|
64 |
#: ../includes/class-wcdn-settings.php:171
|
65 |
#: ../includes/class-wcdn-settings.php:184
|
81 |
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
82 |
"to 1 inch."
|
83 |
msgstr ""
|
84 |
+
"Als de afbeelding wordt geprint is de resolutie anders is dan het origineel. "
|
85 |
+
"1 cm komt overeen met 142 pixels. Voorbeeld: aan afbeelding met een breedte "
|
86 |
+
"van 994 pixels en een hoogte van 568 pixels wordt afgedrukt met 7cm breedte "
|
87 |
+
"en 4 cm hoogte."
|
88 |
|
89 |
#: ../includes/class-wcdn-settings.php:178
|
90 |
msgid "Company/Shop Name"
|
91 |
+
msgstr "Winkel- of bedrijfsnaam"
|
92 |
|
93 |
#: ../includes/class-wcdn-settings.php:183
|
94 |
msgid "Your company/shop name for the Delivery Note."
|
95 |
+
msgstr "Jouw winkel- of bedrijfsnaam voor op de pakbon"
|
96 |
|
97 |
# @ woocommerce-delivery-notes
|
98 |
#: ../includes/class-wcdn-settings.php:185
|
100 |
"Leave blank to use the default Website/Blog title defined in WordPress "
|
101 |
"settings. The name will be ignored when a Logo is set."
|
102 |
msgstr ""
|
103 |
+
"Laat leeg om de naam te gebruiken die in de WordPress settings staat. De "
|
104 |
+
"naam zal worden genegeerd als er een logo wordt gebruikt."
|
105 |
|
106 |
#: ../includes/class-wcdn-settings.php:191
|
107 |
msgid "Company/Shop Address"
|
108 |
+
msgstr "Winkel- of bedrijfsadres"
|
109 |
|
110 |
# @ woocommerce-delivery-notes
|
111 |
#: ../includes/class-wcdn-settings.php:196
|
113 |
"The postal address of the company/shop or even e-mail or telephone, which "
|
114 |
"gets printed right after the company/shop name."
|
115 |
msgstr ""
|
116 |
+
"Het postadres, e-mail of telefoonnummer van de winkel of het bedrijf. Deze "
|
117 |
+
"wordt onder het logo of bedrijfsnaam geprint. "
|
118 |
|
119 |
#: ../includes/class-wcdn-settings.php:198
|
120 |
msgid "Leave blank to not print an address."
|
121 |
+
msgstr "Laat leeg om geen adres te printen."
|
122 |
|
123 |
# @ woocommerce-delivery-notes
|
124 |
#: ../includes/class-wcdn-settings.php:204
|
125 |
+
msgid "Complimentary Close"
|
126 |
+
msgstr "Ondertekening"
|
127 |
|
128 |
#: ../includes/class-wcdn-settings.php:209
|
129 |
msgid ""
|
130 |
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
131 |
"Your Order!, Merry Christmas!, etc.)."
|
132 |
msgstr ""
|
133 |
+
"Voeg persoonlijke opmerkingen of andere info toe (bv. Bedankt voor uw "
|
134 |
+
"bestelling!, Fijne Kerstdagen!, etc.)."
|
135 |
|
136 |
#: ../includes/class-wcdn-settings.php:211
|
137 |
msgid "Leave blank to not print any personal notes."
|
138 |
+
msgstr "Laat leeg om geen opmerkingen te printen."
|
139 |
|
140 |
#: ../includes/class-wcdn-settings.php:217
|
|
|
141 |
msgid "Returns Policy, Conditions, etc"
|
142 |
+
msgstr "Algemene Voorwaarden"
|
143 |
|
144 |
#: ../includes/class-wcdn-settings.php:222
|
145 |
msgid ""
|
148 |
"some countries (e.g. in the European Union) this is required so please add "
|
149 |
"any required info in accordance with the statutory regulations."
|
150 |
msgstr ""
|
151 |
+
"Voeg hier meer richtlijnen en voorwaarden toe. Bijvoorbeeld iets over de "
|
152 |
+
"retourregels voor het geval de klant iets wil terugsturen. In sommige landen "
|
153 |
+
"(zoals de EU) is dit verplicht."
|
154 |
|
155 |
#: ../includes/class-wcdn-settings.php:224
|
156 |
msgid "Leave blank to not print any policies or conditions."
|
157 |
+
msgstr "Laat leeg om geen algemene voorwaarden te printen."
|
158 |
|
159 |
# @ woocommerce-delivery-notes
|
160 |
#: ../includes/class-wcdn-settings.php:230
|
161 |
msgid "Footer"
|
162 |
+
msgstr "Voettekst"
|
163 |
|
164 |
# @ woocommerce-delivery-notes
|
165 |
#: ../includes/class-wcdn-settings.php:235
|
167 |
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
168 |
"This makes the printed sheets a bit more branded."
|
169 |
msgstr ""
|
170 |
+
"Voeg wat meer voettekst info toe zoals e-mail, telefoon, copyright, etc. "
|
171 |
|
172 |
#: ../includes/class-wcdn-settings.php:237
|
173 |
msgid "Leave blank to not print a footer."
|
174 |
+
msgstr "Laat leeg om geen voettekst te printen."
|
175 |
|
176 |
#: ../includes/class-wcdn-settings.php:244
|
177 |
msgid "Front-end Options"
|
178 |
+
msgstr "Front-end Opties"
|
179 |
|
180 |
# @ woocommerce-delivery-notes
|
181 |
#: ../includes/class-wcdn-settings.php:249
|
182 |
msgid "Print Page Endpoint"
|
183 |
+
msgstr "Printpagina Eindpunt"
|
184 |
|
185 |
# @ woocommerce-delivery-notes
|
186 |
#: ../includes/class-wcdn-settings.php:256
|
188 |
"The endpoint is appended to the accounts page URL to print the order. It "
|
189 |
"should be unique."
|
190 |
msgstr ""
|
191 |
+
"Het eindpunt wordt toegevoegd aan de URL van de accounts pagina om het te "
|
192 |
+
"printen. Deze moet uniek zijn."
|
193 |
|
194 |
#: ../includes/class-wcdn-settings.php:262
|
195 |
msgid "Print Buttons"
|
196 |
+
msgstr "Printknoppen"
|
197 |
|
198 |
# @ woocommerce-delivery-notes
|
199 |
#: ../includes/class-wcdn-settings.php:269
|
200 |
msgid "Show print button on the \"View Order\" page"
|
201 |
+
msgstr "Toon printknop op de \"Bekijk Bestelling\" pagina"
|
202 |
|
203 |
# @ woocommerce-delivery-notes
|
204 |
#: ../includes/class-wcdn-settings.php:276
|
205 |
msgid "Show print buttons on the \"My Account\" page"
|
206 |
+
msgstr "Toon printknop op de \"Mijn Account\" pagina"
|
207 |
|
208 |
#: ../includes/class-wcdn-settings.php:284
|
|
|
209 |
msgid "Order Numbering"
|
210 |
+
msgstr "Bestelnummers"
|
211 |
|
212 |
#: ../includes/class-wcdn-settings.php:289
|
213 |
+
#: ../includes/wcdn-template-functions.php:209
|
|
|
214 |
msgid "Invoice Number"
|
215 |
+
msgstr "Factuurnummer"
|
216 |
|
217 |
#: ../includes/class-wcdn-settings.php:297
|
218 |
msgid "Create invoice numbers"
|
219 |
+
msgstr "Maak factuurnummers"
|
220 |
|
221 |
#: ../includes/class-wcdn-settings.php:304
|
222 |
msgid "Invoice Number Start"
|
223 |
+
msgstr "Factuurnummer Start"
|
224 |
|
225 |
#: ../includes/class-wcdn-settings.php:311
|
226 |
msgid "Start the numbering at the specified number."
|
227 |
+
msgstr "Begin de nummering bij een specifiek getal."
|
228 |
|
229 |
#: ../includes/class-wcdn-settings.php:313
|
230 |
msgid "Use only integers."
|
231 |
+
msgstr "Gebruik alleen gehele getallen."
|
232 |
|
233 |
#: ../includes/class-wcdn-settings.php:314
|
234 |
#: ../includes/class-wcdn-settings.php:330
|
235 |
#: ../includes/class-wcdn-settings.php:346
|
236 |
msgid "Already created invoice numbers are not affected by changes."
|
237 |
+
msgstr "Reeds gemaakte factuurnummers worden niet aangepast."
|
238 |
|
239 |
#: ../includes/class-wcdn-settings.php:320
|
240 |
msgid "Invoice Number Prefix"
|
241 |
+
msgstr "Factuurnummer voorvoegsel"
|
242 |
|
243 |
#: ../includes/class-wcdn-settings.php:327
|
244 |
msgid "This text will be prepended to the invoice number."
|
245 |
+
msgstr "Deze tekst wordt achteraan het factuurnummer aangehecht."
|
246 |
|
247 |
#: ../includes/class-wcdn-settings.php:329
|
248 |
msgid "Leave blank to not add a prefix."
|
249 |
+
msgstr "Laat leeg om geen voorvoegsel te gebruiken."
|
250 |
|
251 |
#: ../includes/class-wcdn-settings.php:336
|
252 |
msgid "Invoice Number Suffix"
|
253 |
+
msgstr "Factuurnummer achtervoegsel"
|
254 |
|
255 |
#: ../includes/class-wcdn-settings.php:343
|
256 |
msgid "This text will be appended to the invoice number."
|
257 |
+
msgstr "Deze tekst wordt vooraan het factuurnummer aangehecht."
|
258 |
|
259 |
#: ../includes/class-wcdn-settings.php:345
|
260 |
msgid "Leave blank to not add a suffix."
|
261 |
+
msgstr "Laat leeg om geen achtervoegsel te gebruiken."
|
262 |
|
263 |
#: ../includes/class-wcdn-settings.php:352
|
264 |
msgid "Sequential Order Number"
|
265 |
+
msgstr "Sequential Order Numbers"
|
266 |
|
267 |
#: ../includes/class-wcdn-settings.php:356
|
268 |
msgid "Sequential numbering is enabled."
|
269 |
+
msgstr "'Sequential Order Numbers' is ingeschakeld."
|
270 |
|
271 |
#: ../includes/class-wcdn-settings.php:358
|
272 |
#, php-format
|
274 |
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
275 |
"Numbers</a> Plugin."
|
276 |
msgstr ""
|
277 |
+
"Installeer en activeer de gratis <a href=\"%s\">WooCommerce Sequential Order "
|
278 |
+
"Numbers</a> Plugin."
|
279 |
|
280 |
#: ../includes/class-wcdn-writepanel.php:83
|
281 |
#: ../includes/class-wcdn-writepanel.php:84
|
282 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
283 |
+
#: ../includes/class-wcdn-writepanel.php:109
|
284 |
+
#: ../includes/class-wcdn-writepanel.php:204
|
285 |
msgid "Print Invoice"
|
286 |
msgstr "Print Factuur"
|
287 |
|
288 |
#: ../includes/class-wcdn-writepanel.php:86
|
289 |
#: ../includes/class-wcdn-writepanel.php:87
|
290 |
+
#: ../includes/class-wcdn-writepanel.php:111
|
291 |
+
#: ../includes/class-wcdn-writepanel.php:112
|
292 |
+
#: ../includes/class-wcdn-writepanel.php:205
|
293 |
msgid "Print Delivery Note"
|
294 |
+
msgstr "Print Pakbon"
|
295 |
+
|
296 |
+
#: ../includes/class-wcdn-writepanel.php:89
|
297 |
+
#: ../includes/class-wcdn-writepanel.php:90
|
298 |
+
#: ../includes/class-wcdn-writepanel.php:114
|
299 |
+
#: ../includes/class-wcdn-writepanel.php:115
|
300 |
+
#: ../includes/class-wcdn-writepanel.php:206
|
301 |
+
msgid "Print Receipt"
|
302 |
+
msgstr "Print Kwitantie"
|
303 |
|
304 |
+
#: ../includes/class-wcdn-writepanel.php:175
|
305 |
+
#, php-format
|
306 |
msgid "Invoice created."
|
307 |
msgid_plural "%s invoices created."
|
308 |
+
msgstr[0] "Factuur is gemaakt."
|
309 |
+
msgstr[1] "%s facturen gemaakt."
|
310 |
|
311 |
+
#: ../includes/class-wcdn-writepanel.php:177
|
312 |
+
#, php-format
|
313 |
msgid "Delivery note created."
|
314 |
msgid_plural "%s delivery notes created."
|
315 |
+
msgstr[0] "Pakbon is gemaakt."
|
316 |
+
msgstr[1] "%s pakbonnen zijn gemaakt."
|
317 |
|
318 |
+
#: ../includes/class-wcdn-writepanel.php:179
|
319 |
+
#, php-format
|
320 |
+
msgid "Receipt created."
|
321 |
+
msgid_plural "%s receipts created."
|
322 |
+
msgstr[0] "Kwitantie is gemaakt."
|
323 |
+
msgstr[1] "%s kwitanties zijn gemaakt."
|
324 |
+
|
325 |
+
#: ../includes/class-wcdn-writepanel.php:183
|
326 |
msgid "Print now"
|
327 |
+
msgstr "Print nu"
|
328 |
|
329 |
+
#: ../includes/class-wcdn-writepanel.php:194
|
|
|
330 |
msgid "Order Printing"
|
331 |
+
msgstr "Print Bestelling "
|
332 |
|
333 |
+
#: ../includes/class-wcdn-writepanel.php:217
|
|
|
334 |
msgid "Invoice number: "
|
335 |
+
msgstr "Factuurnummer:"
|
336 |
+
|
337 |
+
#: ../includes/class-wcdn-writepanel.php:218
|
338 |
+
msgid "Invoice date: "
|
339 |
+
msgstr "Factuurdatum:"
|
340 |
|
341 |
#: ../includes/wcdn-template-functions.php:32
|
342 |
msgid "Invoice"
|
347 |
msgstr "Pakbon"
|
348 |
|
349 |
#: ../includes/wcdn-template-functions.php:36
|
350 |
+
msgid "Receipt"
|
351 |
+
msgstr "Kwitantie"
|
352 |
+
|
353 |
+
#: ../includes/wcdn-template-functions.php:38
|
354 |
msgid "Order"
|
355 |
+
msgstr "Bestelling"
|
356 |
|
357 |
+
#: ../includes/wcdn-template-functions.php:215
|
358 |
msgid "Order Number"
|
359 |
+
msgstr "Bestelnummer"
|
360 |
|
361 |
+
#: ../includes/wcdn-template-functions.php:220
|
|
|
362 |
msgid "Order Date"
|
363 |
+
msgstr "Besteldatum"
|
364 |
|
365 |
+
#: ../includes/wcdn-template-functions.php:225
|
366 |
msgid "Payment Method"
|
367 |
+
msgstr "Betaalmethode"
|
368 |
|
369 |
# @ woocommerce-delivery-notes
|
370 |
+
#: ../includes/wcdn-template-functions.php:231
|
371 |
msgid "Email"
|
372 |
+
msgstr "E-mail"
|
373 |
|
374 |
# @ woocommerce-delivery-notes
|
375 |
+
#: ../includes/wcdn-template-functions.php:238
|
376 |
msgid "Telephone"
|
377 |
+
msgstr "Telefoon"
|
378 |
|
379 |
+
#: ../includes/wcdn-template-functions.php:271
|
380 |
msgid "SKU:"
|
381 |
msgstr "Art.Nr."
|
382 |
|
383 |
# @ woocommerce-delivery-notes
|
384 |
#: ../templates/print-order/print-content.php:28
|
385 |
msgid "Billing Address"
|
386 |
+
msgstr "Factuuradres"
|
387 |
|
388 |
#: ../templates/print-order/print-content.php:31
|
389 |
#: ../templates/print-order/print-content.php:42
|
390 |
msgid "N/A"
|
391 |
+
msgstr "N.v.t."
|
392 |
|
393 |
# @ woocommerce-delivery-notes
|
394 |
#: ../templates/print-order/print-content.php:39
|
395 |
msgid "Shipping Address"
|
396 |
+
msgstr "Verzendadres"
|
397 |
|
398 |
#: ../templates/print-order/print-content.php:74
|
399 |
msgid "Product"
|
400 |
+
msgstr "Product"
|
401 |
|
402 |
#: ../templates/print-order/print-content.php:75
|
403 |
msgid "Quantity"
|
404 |
msgstr "Hoeveelheid"
|
405 |
|
406 |
#: ../templates/print-order/print-content.php:76
|
|
|
407 |
msgid "Total"
|
408 |
msgstr "Totaal"
|
409 |
|
410 |
#: ../templates/print-order/print-content.php:100
|
411 |
msgid "Download:"
|
412 |
+
msgstr "Download:"
|
413 |
|
414 |
# @ woocommerce-delivery-notes
|
415 |
#: ../templates/print-order/print-content.php:101
|
416 |
#, php-format
|
417 |
msgid "%s Files"
|
418 |
+
msgstr "%s Bestanden"
|
419 |
|
420 |
# @ woocommerce-delivery-notes
|
421 |
#: ../templates/print-order/print-content.php:148
|
422 |
msgid "Customer Note"
|
423 |
+
msgstr "Klantnotitie"
|
424 |
|
425 |
#: ../woocommerce-delivery-notes.php:144
|
426 |
msgid "Go to the settings page"
|
languages/woocommerce-delivery-notes-pl_PL.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-pl_PL.po
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
# Translation of WooCommerce Print Invoices & Delivery Notes in Polish
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woocommerce-delivery-notes.php:0
|
41 |
-
msgid "2.0"
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
-
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Logo firmy/sklepu"
|
72 |
-
|
73 |
-
#: classes/class-wcdn-settings.php:207
|
74 |
-
msgid "Remove Logo"
|
75 |
-
msgstr "Usuń logo"
|
76 |
-
|
77 |
-
#: classes/class-wcdn-settings.php:208
|
78 |
-
msgid "Set Logo"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: classes/class-wcdn-settings.php:210
|
82 |
-
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: classes/class-wcdn-settings.php:223
|
86 |
-
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: classes/class-wcdn-settings.php:314
|
90 |
-
msgid "Sequential order number"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: classes/class-wcdn-settings.php:318
|
94 |
-
msgid "Sequential numbering is enabled."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: classes/class-wcdn-settings.php:320
|
98 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: woocommerce-delivery-notes.php:0
|
102 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
-
|
105 |
-
#: woocommerce-delivery-notes.php:203
|
106 |
-
msgid "Delivery Note"
|
107 |
-
msgstr "Informacje o dostawie"
|
108 |
-
|
109 |
-
#: templates/print/print-delivery-note.php:59
|
110 |
-
msgid "Quantity"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr "Wsparcie"
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr "Warunki zwrotu"
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr "SKU:"
|
143 |
-
|
144 |
-
#: templates/print/print-delivery-note.php:69
|
145 |
-
msgid "Weight:"
|
146 |
-
msgstr "Waga"
|
147 |
-
|
148 |
-
#: classes/class-wcdn-settings.php:134
|
149 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: classes/class-wcdn-settings.php:211
|
153 |
-
#: classes/class-wcdn-settings.php:224
|
154 |
-
#: classes/class-wcdn-settings.php:237
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: classes/class-wcdn-settings.php:236
|
162 |
-
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: classes/class-wcdn-settings.php:249
|
166 |
-
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: classes/class-wcdn-settings.php:275
|
170 |
-
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: classes/class-wcdn-settings.php:132
|
174 |
-
#: classes/class-wcdn-settings.php:135
|
175 |
-
msgid "About the Plugin"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: classes/class-wcdn-settings.php:142
|
179 |
-
msgid "For more information:"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: classes/class-wcdn-settings.php:143
|
183 |
-
msgid "Frequently Asked Questions"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: classes/class-wcdn-settings.php:145
|
187 |
-
msgid "Project on WordPress.org"
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:146
|
191 |
-
msgid "Project on GitHub"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: classes/class-wcdn-settings.php:154
|
195 |
-
msgid "Print"
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: classes/class-wcdn-settings.php:194
|
199 |
-
msgid "Invoices and Delivery Notes"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: classes/class-wcdn-settings.php:218
|
203 |
-
msgid "Company/Shop Name"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: classes/class-wcdn-settings.php:225
|
207 |
-
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:231
|
211 |
-
msgid "Company/Shop Address"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: classes/class-wcdn-settings.php:238
|
215 |
-
msgid "Leave blank to not print an address."
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: classes/class-wcdn-settings.php:244
|
219 |
-
msgid "Personal Notes"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: classes/class-wcdn-settings.php:251
|
223 |
-
msgid "Leave blank to not print any personal notes."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: classes/class-wcdn-settings.php:262
|
227 |
-
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:264
|
231 |
-
msgid "Leave blank to not print any policies or conditions."
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: classes/class-wcdn-settings.php:270
|
235 |
-
msgid "Footer Imprint"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: classes/class-wcdn-settings.php:277
|
239 |
-
msgid "Leave blank to not print a footer."
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: classes/class-wcdn-settings.php:309
|
243 |
-
msgid "Order Numbering Options"
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: classes/class-wcdn-writepanel.php:92
|
247 |
-
msgid "Order Print"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: classes/class-wcdn-writepanel.php:76
|
251 |
-
#: classes/class-wcdn-writepanel.php:77
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: classes/class-wcdn-writepanel.php:78
|
257 |
-
#: classes/class-wcdn-writepanel.php:80
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: woocommerce-delivery-notes.php:201
|
265 |
-
msgid "Invoice"
|
266 |
-
msgstr "Faktura"
|
267 |
-
|
268 |
-
#: templates/print/print-delivery-note.php:20
|
269 |
-
msgid "Recipient"
|
270 |
-
msgstr "Odbiorca"
|
271 |
-
|
272 |
-
#: templates/print/print-delivery-note.php:96
|
273 |
-
msgid "Customer Notes"
|
274 |
-
msgstr "Uwagi"
|
275 |
-
|
276 |
-
#: woocommerce-delivery-notes.php:0
|
277 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: woocommerce-delivery-notes.php:0
|
281 |
-
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: woocommerce-delivery-notes.php:0
|
285 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: classes/class-wcdn-settings.php:136
|
289 |
-
msgid "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: classes/class-wcdn-settings.php:137
|
293 |
-
msgid "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-)."
|
294 |
-
msgstr ""
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-delivery-notes-pt_BR.mo
CHANGED
Binary file
|
languages/woocommerce-delivery-notes-pt_BR.po
CHANGED
@@ -1,295 +1,505 @@
|
|
1 |
-
#
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator:
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
#:
|
25 |
-
|
26 |
-
|
|
|
|
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
31 |
|
32 |
-
#:
|
33 |
-
|
|
|
|
|
|
|
|
|
34 |
msgstr ""
|
|
|
|
|
|
|
35 |
|
36 |
-
|
37 |
-
|
|
|
|
|
38 |
msgstr ""
|
|
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr "Obter Suporte da Comunidade"
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr "Quando a imagem é impressa, a sua densidade de pixels será automaticamente oito vezes maior do que o original. Isto significa, que 1 polegada impressa corresponderá a cerca de 288 pixels na tela. Exemplo: uma imagem com uma largura de 576 pixels e uma altura de 288 pixels terá um tamanho impresso de cerca de 2 polegadas por 1 polegada."
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr "Produto"
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr "Total"
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr "Download:"
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr "N/A"
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Logo da Empresa
|
72 |
|
73 |
-
|
|
|
74 |
msgid "Remove Logo"
|
75 |
msgstr "Remover Logo"
|
76 |
|
77 |
-
|
|
|
78 |
msgid "Set Logo"
|
79 |
msgstr "Definir Logo"
|
80 |
|
81 |
-
|
|
|
82 |
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr "
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
-
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
-
|
94 |
-
|
95 |
-
|
|
|
96 |
|
97 |
-
|
98 |
-
|
99 |
-
|
|
|
|
|
|
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
104 |
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
107 |
msgstr ""
|
|
|
|
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Você não tem permissões suficientes para acessar esta página."
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr "Ir para a página de configurações"
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr "Configurações"
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr "FAQ"
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr "Suporte"
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr "Política de Devoluções, Condições, etc:"
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr "REF:"
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
150 |
msgstr ""
|
|
|
|
|
151 |
|
152 |
-
|
153 |
-
#:
|
154 |
-
|
155 |
-
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Nota:"
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
|
|
|
164 |
|
165 |
-
|
166 |
-
|
|
|
|
|
|
|
|
|
|
|
167 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
|
169 |
-
|
170 |
-
|
171 |
-
|
|
|
172 |
|
173 |
-
|
174 |
-
#:
|
175 |
-
msgid "
|
176 |
-
|
|
|
|
|
177 |
|
178 |
-
|
179 |
-
|
180 |
-
|
|
|
181 |
|
182 |
-
#:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
|
210 |
-
|
211 |
-
|
212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
|
|
|
217 |
|
218 |
-
#:
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
|
|
|
229 |
|
230 |
-
|
231 |
-
|
232 |
-
|
|
|
233 |
|
234 |
-
|
235 |
-
|
236 |
-
|
|
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr ""
|
249 |
|
250 |
-
|
251 |
-
#:
|
252 |
-
|
253 |
-
|
254 |
-
msgstr ""
|
255 |
|
256 |
-
|
257 |
-
#:
|
258 |
-
#:
|
259 |
-
|
260 |
-
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
|
|
|
267 |
|
268 |
-
|
269 |
-
|
270 |
-
|
|
|
271 |
|
272 |
-
#: templates/print/print-
|
273 |
-
msgid "
|
274 |
-
msgstr ""
|
275 |
|
276 |
-
#:
|
277 |
-
msgid "
|
278 |
-
msgstr ""
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
|
|
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
|
|
|
|
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2014-11-09 23:06+0100\n"
|
13 |
+
"PO-Revision-Date: 2014-11-09 23:06+0100\n"
|
14 |
+
"Last-Translator: Marcos <neookano@yahoo.com.br>\n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"Language: pt_BR\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
+
"X-Generator: Poedit 1.6.10\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
24 |
+
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
25 |
+
"esc_attr_e;esc_attr__\n"
|
26 |
+
"X-Poedit-Basepath: .\n"
|
27 |
+
"X-Textdomain-Support: yes\n"
|
28 |
+
"X-Poedit-SearchPath-0: ..\n"
|
29 |
+
|
30 |
+
#: ../includes/class-wcdn-settings.php:72
|
31 |
+
msgid "Do you really want to reset the counter to zero?"
|
32 |
+
msgstr "Deseja realmente zerar o contador ?"
|
33 |
+
|
34 |
+
# @ woocommerce-delivery-notes
|
35 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:55
|
36 |
+
#: ../includes/class-wcdn-theme.php:90
|
37 |
+
#: ../includes/wcdn-template-functions.php:127
|
38 |
+
msgid "Print"
|
39 |
+
msgstr "Imprimir"
|
40 |
|
41 |
+
# @ woocommerce-delivery-notes
|
42 |
+
#: ../includes/class-wcdn-settings.php:157
|
43 |
+
msgid "Print Order"
|
44 |
+
msgstr "Imprimir pedido"
|
45 |
|
46 |
+
#: ../includes/class-wcdn-settings.php:176
|
47 |
+
#, php-format
|
48 |
+
msgid ""
|
49 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</"
|
50 |
+
"a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">delivery note</a> or <a "
|
51 |
+
"href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
52 |
msgstr ""
|
53 |
+
"Você pode visualizar o template <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s"
|
54 |
+
"\">fatura</a>, <a href=\"%2$s\" target=\"%4$s\" class=\"%5$s\">nota </a> or "
|
55 |
+
"<a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">recebimento</a>."
|
56 |
|
57 |
+
# @ woocommerce-delivery-notes
|
58 |
+
#: ../includes/class-wcdn-settings.php:177
|
59 |
+
msgid ""
|
60 |
+
"With the FAQ in the readme file you can learn how to customize the template."
|
61 |
msgstr ""
|
62 |
+
"Com o FAQ no arquivo leia-me que você pode aprender a personalizar o modelo."
|
63 |
|
64 |
+
# @ woocommerce-delivery-notes
|
65 |
+
#: ../includes/class-wcdn-settings.php:188
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgid "Company/Shop Logo"
|
67 |
+
msgstr "Logo da Empresa"
|
68 |
|
69 |
+
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-settings.php:194
|
71 |
msgid "Remove Logo"
|
72 |
msgstr "Remover Logo"
|
73 |
|
74 |
+
# @ woocommerce-delivery-notes
|
75 |
+
#: ../includes/class-wcdn-settings.php:195
|
76 |
msgid "Set Logo"
|
77 |
msgstr "Definir Logo"
|
78 |
|
79 |
+
# @ woocommerce-delivery-notes
|
80 |
+
#: ../includes/class-wcdn-settings.php:199
|
81 |
msgid "A company/shop logo representing your business."
|
82 |
+
msgstr "Logo da empresa."
|
83 |
+
|
84 |
+
# @ woocommerce-delivery-notes
|
85 |
+
#: ../includes/class-wcdn-settings.php:200
|
86 |
+
#: ../includes/class-wcdn-settings.php:213
|
87 |
+
#: ../includes/class-wcdn-settings.php:226
|
88 |
+
#: ../includes/class-wcdn-settings.php:239
|
89 |
+
#: ../includes/class-wcdn-settings.php:252
|
90 |
+
#: ../includes/class-wcdn-settings.php:265
|
91 |
+
#: ../includes/class-wcdn-settings.php:369
|
92 |
+
#: ../includes/class-wcdn-settings.php:384
|
93 |
+
#: ../includes/class-wcdn-settings.php:399
|
94 |
+
msgid "Note:"
|
95 |
+
msgstr "Nota:"
|
96 |
|
97 |
+
# @ woocommerce-delivery-notes
|
98 |
+
#: ../includes/class-wcdn-settings.php:201
|
99 |
+
msgid ""
|
100 |
+
"When the image is printed, its pixel density will automatically be eight "
|
101 |
+
"times higher than the original. This means, 1 printed inch will correspond "
|
102 |
+
"to about 288 pixels on the screen. Example: an image with a width of 576 "
|
103 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
104 |
+
"to 1 inch."
|
105 |
msgstr ""
|
106 |
+
"Quando a imagem é imprimida, a sua densidade de pixels será automaticamente "
|
107 |
+
"oito vezes mais elevadas do que o original. Isso significa, de 1 polegada "
|
108 |
+
"impressa corresponderá a cerca de 288 pixels na tela. Exemplo: uma imagem "
|
109 |
+
"com uma largura de 576 pixels e uma altura de 288 pixels terá um tamanho "
|
110 |
+
"impresso de cerca de 2 polegadas a 1 polegada."
|
111 |
+
|
112 |
+
# @ woocommerce-delivery-notes
|
113 |
+
#: ../includes/class-wcdn-settings.php:207
|
114 |
+
msgid "Company/Shop Name"
|
115 |
+
msgstr "Empresa"
|
116 |
|
117 |
+
# @ woocommerce-delivery-notes
|
118 |
+
#: ../includes/class-wcdn-settings.php:212
|
119 |
+
msgid "Your company/shop name for the Delivery Note."
|
120 |
+
msgstr "Nome da empresa que envia a nota."
|
121 |
|
122 |
+
# @ woocommerce-delivery-notes
|
123 |
+
#: ../includes/class-wcdn-settings.php:214
|
124 |
+
msgid ""
|
125 |
+
"Leave blank to use the default Website/Blog title defined in WordPress "
|
126 |
+
"settings. The name will be ignored when a Logo is set."
|
127 |
+
msgstr "Deixar em branco para usar o padrão."
|
128 |
|
129 |
+
# @ woocommerce-delivery-notes
|
130 |
+
#: ../includes/class-wcdn-settings.php:220
|
131 |
+
msgid "Company/Shop Address"
|
132 |
+
msgstr "Endereço de cobrança"
|
133 |
|
134 |
+
# @ woocommerce-delivery-notes
|
135 |
+
#: ../includes/class-wcdn-settings.php:225
|
136 |
+
msgid ""
|
137 |
+
"The postal address of the company/shop or even e-mail or telephone, which "
|
138 |
+
"gets printed right after the company/shop name."
|
139 |
msgstr ""
|
140 |
+
"O endereço da empresa ou até mesmo e-mail ou telefone, que será impresso "
|
141 |
+
"logo após o nome da empresa."
|
142 |
|
143 |
+
# @ woocommerce-delivery-notes
|
144 |
+
#: ../includes/class-wcdn-settings.php:227
|
145 |
+
msgid "Leave blank to not print an address."
|
146 |
+
msgstr "Deixe em branco para não imprimir o endereço."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
|
148 |
+
#: ../includes/class-wcdn-settings.php:233
|
149 |
+
msgid "Complimentary Close"
|
150 |
+
msgstr "Mensagem pessoal"
|
151 |
|
152 |
+
# @ woocommerce-delivery-notes
|
153 |
+
#: ../includes/class-wcdn-settings.php:238
|
154 |
+
msgid ""
|
155 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
156 |
+
"Your Order!, Merry Christmas!, etc.)."
|
157 |
msgstr ""
|
158 |
+
"Adicionar algumas notas pessoais, ou os cumprimentos da estação ou o que "
|
159 |
+
"quer (por exemplo, Obrigado por seu Pedido !, Feliz Natal !, etc.)."
|
160 |
|
161 |
+
# @ woocommerce-delivery-notes
|
162 |
+
#: ../includes/class-wcdn-settings.php:240
|
163 |
+
msgid "Leave blank to not print any personal notes."
|
164 |
+
msgstr "Deixar em branco para não imprimir nenhuma nota pessoal."
|
|
|
|
|
|
|
|
|
165 |
|
166 |
+
# @ woocommerce-delivery-notes
|
167 |
+
#: ../includes/class-wcdn-settings.php:246
|
168 |
+
msgid "Returns Policy, Conditions, etc"
|
169 |
+
msgstr "Política de Devolução, Condições, etc"
|
170 |
|
171 |
+
# @ woocommerce-delivery-notes
|
172 |
+
#: ../includes/class-wcdn-settings.php:251
|
173 |
+
msgid ""
|
174 |
+
"Here you can add some more policies, conditions etc. For example add a "
|
175 |
+
"returns policy in case the client would like to send back some goods. In "
|
176 |
+
"some countries (e.g. in the European Union) this is required so please add "
|
177 |
+
"any required info in accordance with the statutory regulations."
|
178 |
msgstr ""
|
179 |
+
"Aqui você pode adicionar mais algumas políticas, condições etc. Por exemplo "
|
180 |
+
"adicionar uma política de devoluções no caso de o cliente gostaria de enviar "
|
181 |
+
"de volta alguns bens. Em alguns países (por exemplo, na União Europeia) isto "
|
182 |
+
"é necessário por isso, adicionar qualquer informação necessária em "
|
183 |
+
"conformidade com os regulamentos legais."
|
184 |
+
|
185 |
+
# @ woocommerce-delivery-notes
|
186 |
+
#: ../includes/class-wcdn-settings.php:253
|
187 |
+
msgid "Leave blank to not print any policies or conditions."
|
188 |
+
msgstr "Deixe em branco para não imprimir quaisquer políticas ou condições."
|
189 |
|
190 |
+
# @ woocommerce-delivery-notes
|
191 |
+
#: ../includes/class-wcdn-settings.php:259
|
192 |
+
msgid "Footer"
|
193 |
+
msgstr "Rodapé"
|
194 |
|
195 |
+
# @ woocommerce-delivery-notes
|
196 |
+
#: ../includes/class-wcdn-settings.php:264
|
197 |
+
msgid ""
|
198 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
199 |
+
"This makes the printed sheets a bit more branded."
|
200 |
+
msgstr "Adicionar notas no rodapé da página, notas de copyright etc."
|
201 |
|
202 |
+
# @ woocommerce-delivery-notes
|
203 |
+
#: ../includes/class-wcdn-settings.php:266
|
204 |
+
msgid "Leave blank to not print a footer."
|
205 |
+
msgstr "Deixe em branco para não imprimir um rodapé."
|
206 |
|
207 |
+
#: ../includes/class-wcdn-settings.php:272
|
208 |
+
msgid "Types"
|
209 |
+
msgstr "Tipos"
|
210 |
|
211 |
+
#: ../includes/class-wcdn-settings.php:279
|
212 |
+
msgid "Enable Invoices"
|
213 |
+
msgstr "Habilitar faturas"
|
214 |
|
215 |
+
#: ../includes/class-wcdn-settings.php:286
|
216 |
+
msgid "Enable Delivery Notes"
|
217 |
+
msgstr "Habilitar entrega de notas"
|
218 |
|
219 |
+
#: ../includes/class-wcdn-settings.php:293
|
220 |
+
msgid "Enable Receipts"
|
221 |
+
msgstr "Habilitar recebimento"
|
222 |
|
223 |
+
#: ../includes/class-wcdn-settings.php:301
|
224 |
+
msgid "Front-end Options"
|
225 |
+
msgstr "Opções de Front-end"
|
226 |
|
227 |
+
# @ woocommerce-delivery-notes
|
228 |
+
#: ../includes/class-wcdn-settings.php:306
|
229 |
+
msgid "Print Page Endpoint"
|
230 |
+
msgstr "Endpoint página de impressão"
|
231 |
|
232 |
+
# @ woocommerce-delivery-notes
|
233 |
+
#: ../includes/class-wcdn-settings.php:313
|
234 |
+
msgid ""
|
235 |
+
"The endpoint is appended to the accounts page URL to print the order. It "
|
236 |
+
"should be unique."
|
237 |
+
msgstr ""
|
238 |
+
"O ponto final é anexado ao URL da página de contas para imprimir a ordem. "
|
239 |
+
"Deve ser único."
|
240 |
+
|
241 |
+
#: ../includes/class-wcdn-settings.php:319
|
242 |
+
msgid "Print Buttons"
|
243 |
+
msgstr "Botões de impressão"
|
244 |
+
|
245 |
+
# @ woocommerce-delivery-notes
|
246 |
+
#: ../includes/class-wcdn-settings.php:326
|
247 |
+
msgid "Show print button on the \"View Order\" page"
|
248 |
+
msgstr "Mostrar botões de impressão na página \"View Order\""
|
249 |
+
|
250 |
+
# @ woocommerce-delivery-notes
|
251 |
+
#: ../includes/class-wcdn-settings.php:333
|
252 |
+
msgid "Show print buttons on the \"My Account\" page"
|
253 |
+
msgstr "Mostrar botões de impressão na página \"My Account\""
|
254 |
+
|
255 |
+
# @ woocommerce-delivery-notes
|
256 |
+
#: ../includes/class-wcdn-settings.php:341
|
257 |
+
msgid "Order Numbering"
|
258 |
+
msgstr "Número do Pedido"
|
259 |
+
|
260 |
+
#: ../includes/class-wcdn-settings.php:346
|
261 |
+
#: ../includes/wcdn-template-functions.php:224
|
262 |
+
msgid "Invoice Number"
|
263 |
+
msgstr "Número da Fatura"
|
264 |
+
|
265 |
+
#: ../includes/class-wcdn-settings.php:354
|
266 |
+
msgid "Create invoice numbers"
|
267 |
+
msgstr "Creir número da fatura"
|
268 |
+
|
269 |
+
#: ../includes/class-wcdn-settings.php:361
|
270 |
+
msgid "Invoice Number Start"
|
271 |
+
msgstr "Começo do número da fatura"
|
272 |
+
|
273 |
+
#: ../includes/class-wcdn-settings.php:368
|
274 |
+
msgid "Start the numbering at the specified number."
|
275 |
+
msgstr "Iniciar a numeração para o número especificado."
|
276 |
+
|
277 |
+
#: ../includes/class-wcdn-settings.php:370
|
278 |
+
msgid "Use only integers."
|
279 |
+
msgstr "Usar números inteiros."
|
280 |
+
|
281 |
+
#: ../includes/class-wcdn-settings.php:376
|
282 |
+
msgid "Invoice Number Prefix"
|
283 |
+
msgstr "Prefixo do Número da Fatura"
|
284 |
+
|
285 |
+
#: ../includes/class-wcdn-settings.php:383
|
286 |
+
msgid "This text will be prepended to the invoice number."
|
287 |
+
msgstr "Este texto será anexado ao número de fatura."
|
288 |
+
|
289 |
+
#: ../includes/class-wcdn-settings.php:385
|
290 |
+
msgid "Leave blank to not add a prefix."
|
291 |
+
msgstr "Deixe em branco para não imprimir o prefixo."
|
292 |
+
|
293 |
+
#: ../includes/class-wcdn-settings.php:391
|
294 |
+
msgid "Invoice Number Suffix"
|
295 |
+
msgstr "Prefixo do Número da Fatura"
|
296 |
+
|
297 |
+
#: ../includes/class-wcdn-settings.php:398
|
298 |
+
msgid "This text will be appended to the invoice number."
|
299 |
+
msgstr "Este texto será anexado ao número de fatura."
|
300 |
+
|
301 |
+
#: ../includes/class-wcdn-settings.php:400
|
302 |
+
msgid "Leave blank to not add a suffix."
|
303 |
+
msgstr "Deixe em branco para não imprimir o prefixo."
|
304 |
+
|
305 |
+
#: ../includes/class-wcdn-settings.php:406
|
306 |
+
msgid "Invoice Number Counter"
|
307 |
+
msgstr "Sufixo do número da fatura"
|
308 |
+
|
309 |
+
#: ../includes/class-wcdn-settings.php:415
|
310 |
+
msgid "Reset Counter"
|
311 |
+
msgstr "Zerar contador"
|
312 |
+
|
313 |
+
#: ../includes/class-wcdn-settings.php:421
|
314 |
+
msgid "Sequential Order Number"
|
315 |
+
msgstr "Número de pedido sequencial"
|
316 |
+
|
317 |
+
# @ woocommerce-delivery-notes
|
318 |
+
#: ../includes/class-wcdn-settings.php:426
|
319 |
+
msgid "Sequential numbering is enabled."
|
320 |
+
msgstr "Sequential numbering ativado."
|
321 |
|
322 |
+
# @ woocommerce-delivery-notes
|
323 |
+
#: ../includes/class-wcdn-settings.php:428
|
324 |
+
#, php-format
|
325 |
+
msgid ""
|
326 |
+
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
327 |
+
"Numbers</a> Plugin."
|
328 |
+
msgstr ""
|
329 |
+
"Instalar e ativar o plugin gratuito <a href=\"%s\">WooCommerce Sequential "
|
330 |
+
"Order Numbers</a>."
|
331 |
+
|
332 |
+
# @ woocommerce-delivery-notes
|
333 |
+
#: ../includes/class-wcdn-writepanel.php:101
|
334 |
+
#: ../includes/class-wcdn-writepanel.php:102
|
335 |
+
#: ../includes/class-wcdn-writepanel.php:135
|
336 |
+
#: ../includes/class-wcdn-writepanel.php:136
|
337 |
+
#: ../includes/class-wcdn-writepanel.php:267
|
338 |
+
msgid "Print Invoice"
|
339 |
+
msgstr "Imprimir Fatura"
|
340 |
+
|
341 |
+
# @ woocommerce-delivery-notes
|
342 |
+
#: ../includes/class-wcdn-writepanel.php:107
|
343 |
+
#: ../includes/class-wcdn-writepanel.php:108
|
344 |
+
#: ../includes/class-wcdn-writepanel.php:140
|
345 |
+
#: ../includes/class-wcdn-writepanel.php:141
|
346 |
+
#: ../includes/class-wcdn-writepanel.php:271
|
347 |
+
msgid "Print Delivery Note"
|
348 |
+
msgstr "Imprimir Nota de Entrega"
|
349 |
+
|
350 |
+
#: ../includes/class-wcdn-writepanel.php:113
|
351 |
+
#: ../includes/class-wcdn-writepanel.php:114
|
352 |
+
#: ../includes/class-wcdn-writepanel.php:145
|
353 |
+
#: ../includes/class-wcdn-writepanel.php:146
|
354 |
+
#: ../includes/class-wcdn-writepanel.php:275
|
355 |
+
msgid "Print Receipt"
|
356 |
+
msgstr "Imprimir Fatura"
|
357 |
+
|
358 |
+
# @ woocommerce-delivery-notes
|
359 |
+
#: ../includes/class-wcdn-writepanel.php:237
|
360 |
+
#, php-format
|
361 |
+
msgid "Invoice created."
|
362 |
+
msgid_plural "%s invoices created."
|
363 |
+
msgstr[0] "Fatura criada."
|
364 |
+
msgstr[1] "%s faturas criadas."
|
365 |
+
|
366 |
+
# @ woocommerce-delivery-notes
|
367 |
+
#: ../includes/class-wcdn-writepanel.php:239
|
368 |
+
#, php-format
|
369 |
+
msgid "Delivery note created."
|
370 |
+
msgid_plural "%s delivery notes created."
|
371 |
+
msgstr[0] "Nota de Entrega"
|
372 |
+
msgstr[1] "%s notas de Entrega"
|
373 |
+
|
374 |
+
#: ../includes/class-wcdn-writepanel.php:241
|
375 |
+
#, php-format
|
376 |
+
msgid "Receipt created."
|
377 |
+
msgid_plural "%s receipts created."
|
378 |
+
msgstr[0] "Recibo criado"
|
379 |
+
msgstr[1] "%s recibos creidos"
|
380 |
+
|
381 |
+
# @ woocommerce-delivery-notes
|
382 |
+
#: ../includes/class-wcdn-writepanel.php:245
|
383 |
+
msgid "Print now"
|
384 |
+
msgstr "Imprimir agora"
|
385 |
+
|
386 |
+
# @ woocommerce-delivery-notes
|
387 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
388 |
+
msgid "Order Printing"
|
389 |
+
msgstr "Imprimir pedido"
|
390 |
+
|
391 |
+
#: ../includes/class-wcdn-writepanel.php:288
|
392 |
+
msgid "Invoice number: "
|
393 |
+
msgstr "Telefone de cobrança:"
|
394 |
+
|
395 |
+
#: ../includes/class-wcdn-writepanel.php:289
|
396 |
+
msgid "Invoice date: "
|
397 |
+
msgstr "Data da fatura:"
|
398 |
+
|
399 |
+
# @ woocommerce-delivery-notes
|
400 |
+
#: ../includes/wcdn-template-functions.php:39
|
401 |
+
msgid "Invoice"
|
402 |
+
msgstr "Fatura"
|
403 |
|
404 |
+
# @ woocommerce-delivery-notes
|
405 |
+
#: ../includes/wcdn-template-functions.php:41
|
406 |
+
msgid "Delivery Note"
|
407 |
+
msgstr "Nota de Entrega"
|
408 |
|
409 |
+
#: ../includes/wcdn-template-functions.php:43
|
410 |
+
msgid "Receipt"
|
411 |
+
msgstr "Recebimento"
|
412 |
|
413 |
+
# @ woocommerce-delivery-notes
|
414 |
+
#: ../includes/wcdn-template-functions.php:45
|
415 |
+
msgid "Order"
|
416 |
+
msgstr "Pedido"
|
417 |
|
418 |
+
# @ woocommerce-delivery-notes
|
419 |
+
#: ../includes/wcdn-template-functions.php:230
|
420 |
+
msgid "Order Number"
|
421 |
+
msgstr "Número do Pedido"
|
422 |
|
423 |
+
# @ woocommerce-delivery-notes
|
424 |
+
#: ../includes/wcdn-template-functions.php:235
|
425 |
+
msgid "Order Date"
|
426 |
+
msgstr "Data do pedido"
|
427 |
|
428 |
+
# @ woocommerce-delivery-notes
|
429 |
+
#: ../includes/wcdn-template-functions.php:240
|
430 |
+
msgid "Payment Method"
|
431 |
+
msgstr "Forma de pagamento"
|
432 |
|
433 |
+
# @ woocommerce-delivery-notes
|
434 |
+
#: ../includes/wcdn-template-functions.php:246
|
435 |
+
msgid "Email"
|
436 |
+
msgstr "Email"
|
437 |
|
438 |
+
# @ woocommerce-delivery-notes
|
439 |
+
#: ../includes/wcdn-template-functions.php:253
|
440 |
+
msgid "Telephone"
|
441 |
+
msgstr "Telefone"
|
442 |
|
443 |
+
#: ../includes/wcdn-template-functions.php:286
|
444 |
+
msgid "SKU:"
|
445 |
+
msgstr "SKU:"
|
446 |
|
447 |
+
# @ woocommerce-delivery-notes
|
448 |
+
#: ../templates/print-order/print-content.php:28
|
449 |
+
msgid "Billing Address"
|
450 |
+
msgstr "Endereço de cobrança"
|
|
|
451 |
|
452 |
+
# @ woocommerce-delivery-notes
|
453 |
+
#: ../templates/print-order/print-content.php:31
|
454 |
+
#: ../templates/print-order/print-content.php:40
|
455 |
+
msgid "N/A"
|
456 |
+
msgstr "N/A"
|
|
|
|
|
457 |
|
458 |
+
# @ woocommerce-delivery-notes
|
459 |
+
#: ../templates/print-order/print-content.php:37
|
460 |
+
msgid "Shipping Address"
|
461 |
+
msgstr "Endereço de entrega"
|
462 |
|
463 |
+
# @ woocommerce-delivery-notes
|
464 |
+
#: ../templates/print-order/print-content.php:70
|
465 |
+
msgid "Product"
|
466 |
+
msgstr "Produto"
|
467 |
|
468 |
+
#: ../templates/print-order/print-content.php:71
|
469 |
+
msgid "Price"
|
470 |
+
msgstr "Preço"
|
471 |
|
472 |
+
#: ../templates/print-order/print-content.php:72
|
473 |
+
msgid "Quantity"
|
474 |
+
msgstr "Quantidade"
|
475 |
|
476 |
+
# @ woocommerce-delivery-notes
|
477 |
+
#: ../templates/print-order/print-content.php:73
|
478 |
+
msgid "Total"
|
479 |
+
msgstr "Total"
|
480 |
|
481 |
+
# @ woocommerce-delivery-notes
|
482 |
+
#: ../templates/print-order/print-content.php:97
|
483 |
+
msgid "Download:"
|
484 |
+
msgstr "Download:"
|
485 |
|
486 |
+
# @ woocommerce-delivery-notes
|
487 |
+
#: ../templates/print-order/print-content.php:98
|
488 |
+
#, php-format
|
489 |
+
msgid "%s Files"
|
490 |
+
msgstr "%s Arquivos"
|
491 |
|
492 |
+
# @ woocommerce-delivery-notes
|
493 |
+
#: ../templates/print-order/print-content.php:149
|
494 |
+
msgid "Customer Note"
|
495 |
+
msgstr "Notas do Cliente"
|
496 |
|
497 |
+
# @ woocommerce-delivery-notes
|
498 |
+
#: ../woocommerce-delivery-notes.php:180
|
499 |
+
msgid "Go to the settings page"
|
500 |
+
msgstr "Ir para configurações"
|
501 |
+
|
502 |
+
# @ woocommerce-delivery-notes
|
503 |
+
#: ../woocommerce-delivery-notes.php:180
|
504 |
+
msgid "Settings"
|
505 |
+
msgstr "Configurações"
|
languages/woocommerce-delivery-notes-ru_RU.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-ru_RU.po
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
# Translation of WooCommerce Print Invoices & Delivery Notes in Russian
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woocommerce-delivery-notes.php:0
|
41 |
-
msgid "2.0"
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr "Получить поддержку Сообщества"
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr "При печати изображения, его плотность пикселей автоматически будет в восемь раз выше, чем на оригинале. Это означает, 1 печатный дюйм будет соответствовать около 288 пикселям на экране. Пример: изображение с шириной 576 пикселей и высотой 288 пикселей будет иметь печатный размер около 2 дюймов на 1 дюйм."
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr "Товар"
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr "Итого"
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr "Скачать:"
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
-
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Логотип компании или магазина"
|
72 |
-
|
73 |
-
#: classes/class-wcdn-settings.php:207
|
74 |
-
msgid "Remove Logo"
|
75 |
-
msgstr "Убрать логотип"
|
76 |
-
|
77 |
-
#: classes/class-wcdn-settings.php:208
|
78 |
-
msgid "Set Logo"
|
79 |
-
msgstr "Установить логотип"
|
80 |
-
|
81 |
-
#: classes/class-wcdn-settings.php:210
|
82 |
-
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr "Логотип компании или магазина, представляющий ваш бизнес."
|
84 |
-
|
85 |
-
#: classes/class-wcdn-settings.php:223
|
86 |
-
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr "Название вашей компании или магазина (для примечаний о доставке)"
|
88 |
-
|
89 |
-
#: classes/class-wcdn-settings.php:314
|
90 |
-
msgid "Sequential order number"
|
91 |
-
msgstr "Номер заказа"
|
92 |
-
|
93 |
-
#: classes/class-wcdn-settings.php:318
|
94 |
-
msgid "Sequential numbering is enabled."
|
95 |
-
msgstr "Последовательная нумерация заказов включена."
|
96 |
-
|
97 |
-
#: classes/class-wcdn-settings.php:320
|
98 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
-
msgstr "Установите и активируйте бесплатный плагин <a href=\"%s\">WooCommerce Sequential Order Numbers</a>."
|
100 |
-
|
101 |
-
#: woocommerce-delivery-notes.php:0
|
102 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
-
|
105 |
-
#: woocommerce-delivery-notes.php:203
|
106 |
-
msgid "Delivery Note"
|
107 |
-
msgstr "Примечания о доставке"
|
108 |
-
|
109 |
-
#: templates/print/print-delivery-note.php:59
|
110 |
-
msgid "Quantity"
|
111 |
-
msgstr "Количество"
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Вам не хватает прав для доступа к этой странице."
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr "Перейти на страницу настроек"
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr "Настройки"
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr "FAQ"
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr "Поддержка"
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr "Условия возврата товара и прочие условия:"
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr "Артикул:"
|
143 |
-
|
144 |
-
#: templates/print/print-delivery-note.php:69
|
145 |
-
msgid "Weight:"
|
146 |
-
msgstr "Вес:"
|
147 |
-
|
148 |
-
#: classes/class-wcdn-settings.php:134
|
149 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
-
msgstr "Плагин: WooCommerce Print Invoices & Delivery Notes"
|
151 |
-
|
152 |
-
#: classes/class-wcdn-settings.php:211
|
153 |
-
#: classes/class-wcdn-settings.php:224
|
154 |
-
#: classes/class-wcdn-settings.php:237
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Примечание:"
|
160 |
-
|
161 |
-
#: classes/class-wcdn-settings.php:236
|
162 |
-
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
-
msgstr "Почтовый адрес компании или магазина, который при печати выводится справа от названия компании или магазина, над описанием заказа."
|
164 |
-
|
165 |
-
#: classes/class-wcdn-settings.php:249
|
166 |
-
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
-
msgstr "Добавьте пару тёплых слов от себя или поздравление с праздником (например, \"Спасибо за покупку! Покупайте наших слонов!\" или \"С Новым годом!\")."
|
168 |
-
|
169 |
-
#: classes/class-wcdn-settings.php:275
|
170 |
-
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
-
msgstr "Добавьте информацию для нижнего колонтитула, чтобы отпечатанный документ отвечал вашим нуждам."
|
172 |
-
|
173 |
-
#: classes/class-wcdn-settings.php:132
|
174 |
-
#: classes/class-wcdn-settings.php:135
|
175 |
-
msgid "About the Plugin"
|
176 |
-
msgstr "О плагине"
|
177 |
-
|
178 |
-
#: classes/class-wcdn-settings.php:142
|
179 |
-
msgid "For more information:"
|
180 |
-
msgstr "Дополнительная информация:"
|
181 |
-
|
182 |
-
#: classes/class-wcdn-settings.php:143
|
183 |
-
msgid "Frequently Asked Questions"
|
184 |
-
msgstr "FAQ - часто задаваемый вопросы"
|
185 |
-
|
186 |
-
#: classes/class-wcdn-settings.php:145
|
187 |
-
msgid "Project on WordPress.org"
|
188 |
-
msgstr "Проект на WordPress.org"
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:146
|
191 |
-
msgid "Project on GitHub"
|
192 |
-
msgstr "Проект на GitHub"
|
193 |
-
|
194 |
-
#: classes/class-wcdn-settings.php:154
|
195 |
-
msgid "Print"
|
196 |
-
msgstr "Распечатать"
|
197 |
-
|
198 |
-
#: classes/class-wcdn-settings.php:194
|
199 |
-
msgid "Invoices and Delivery Notes"
|
200 |
-
msgstr "Накладные и примечания о доставке"
|
201 |
-
|
202 |
-
#: classes/class-wcdn-settings.php:218
|
203 |
-
msgid "Company/Shop Name"
|
204 |
-
msgstr "Название компании или магазина"
|
205 |
-
|
206 |
-
#: classes/class-wcdn-settings.php:225
|
207 |
-
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
-
msgstr "Оставьте пустым, чтобы использовать название сайта или блога, указанное по умолчанию в настройках WordPress."
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:231
|
211 |
-
msgid "Company/Shop Address"
|
212 |
-
msgstr "Адрес компании или магазина"
|
213 |
-
|
214 |
-
#: classes/class-wcdn-settings.php:238
|
215 |
-
msgid "Leave blank to not print an address."
|
216 |
-
msgstr "Оставьте пустым, если не хотите печатать адрес."
|
217 |
-
|
218 |
-
#: classes/class-wcdn-settings.php:244
|
219 |
-
msgid "Personal Notes"
|
220 |
-
msgstr "Личные примечания"
|
221 |
-
|
222 |
-
#: classes/class-wcdn-settings.php:251
|
223 |
-
msgid "Leave blank to not print any personal notes."
|
224 |
-
msgstr "Оставьте пустым, если не хотите печатать личные примечания."
|
225 |
-
|
226 |
-
#: classes/class-wcdn-settings.php:262
|
227 |
-
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
228 |
-
msgstr "Здесь можно добавить информацию о дополнительных условиях, например, о том, как можно вернуть ваш товар, если клиент захочет отослать его вам обратно. В некоторых странах (например, в странах Евросоюза) это обязательно, поэтому, пожалуйста, заполните это поле в соответствии с требованиями законов вашей страны."
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:264
|
231 |
-
msgid "Leave blank to not print any policies or conditions."
|
232 |
-
msgstr "Оставьте пустым, если не хотите печатать информацию о дополнительных условиях."
|
233 |
-
|
234 |
-
#: classes/class-wcdn-settings.php:270
|
235 |
-
msgid "Footer Imprint"
|
236 |
-
msgstr "Информация для нижнего колонтитула"
|
237 |
-
|
238 |
-
#: classes/class-wcdn-settings.php:277
|
239 |
-
msgid "Leave blank to not print a footer."
|
240 |
-
msgstr "Оставьте пустым, если не хотите выносить информацию в нижних колонтитул."
|
241 |
-
|
242 |
-
#: classes/class-wcdn-settings.php:309
|
243 |
-
msgid "Order Numbering Options"
|
244 |
-
msgstr "Варианты нумерации заказов"
|
245 |
-
|
246 |
-
#: classes/class-wcdn-writepanel.php:92
|
247 |
-
msgid "Order Print"
|
248 |
-
msgstr "Печать заказа"
|
249 |
-
|
250 |
-
#: classes/class-wcdn-writepanel.php:76
|
251 |
-
#: classes/class-wcdn-writepanel.php:77
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr "Печать накладной"
|
255 |
-
|
256 |
-
#: classes/class-wcdn-writepanel.php:78
|
257 |
-
#: classes/class-wcdn-writepanel.php:80
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Печать примечаний о доставке"
|
263 |
-
|
264 |
-
#: woocommerce-delivery-notes.php:201
|
265 |
-
msgid "Invoice"
|
266 |
-
msgstr "Накладная"
|
267 |
-
|
268 |
-
#: templates/print/print-delivery-note.php:20
|
269 |
-
msgid "Recipient"
|
270 |
-
msgstr "Получатель"
|
271 |
-
|
272 |
-
#: templates/print/print-delivery-note.php:96
|
273 |
-
msgid "Customer Notes"
|
274 |
-
msgstr "Примечания клиента"
|
275 |
-
|
276 |
-
#: woocommerce-delivery-notes.php:0
|
277 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
-
msgstr "WooCommerce Print Invoices & Delivery Notes"
|
279 |
-
|
280 |
-
#: woocommerce-delivery-notes.php:0
|
281 |
-
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
-
msgstr "Печатайте накладные и примечания о доставке в вашем магазине на базе WooCommerce. Вы можете добавить информацию о вашей компании или магазине, а также дополнительную информацию в распечатываемый документ."
|
283 |
-
|
284 |
-
#: woocommerce-delivery-notes.php:0
|
285 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
-
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
-
|
288 |
-
#: classes/class-wcdn-settings.php:136
|
289 |
-
msgid "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too."
|
290 |
-
msgstr "Этот плагин позволяет создать и распечатать накладную или примечания о доставке для любого заказа в магазине на базе WooCommerce. Вы можете добавить в документ почтовый адрес вашей компании, добавить примечания, дополнительные условия (например, условия возврата товара) и брендирующие элементы в нижнем колонтитуле. Это позволяет ускорить ежедневное управление работой магазина в целом и заказами в частности. В некоторых странах (например, странах Евросоюза) от продавца требуют сообщить покупателю об условиях возврата денег за покупку; этот маленький плагин сможет помочь в решении этой задачи."
|
291 |
-
|
292 |
-
#: classes/class-wcdn-settings.php:137
|
293 |
-
msgid "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-)."
|
294 |
-
msgstr "Просто пройдите по пути <a href=\"%1$s\">WooCommerce > Orders</a> и выберите любой заказ. С правой стороны вы увидите мета-бокс \"Печать заказа\". Нажмите на одну из кнопок, и вы перейдёте на страницу печати накладной или примечаний о доставке. Да, всё вот так просто. :)"
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-delivery-notes-sk_SK.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-sk_SK.po
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
# Translation of WooCommerce Print Invoices & Delivery Notes in Slovak
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-03-11 14:35+0100\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woocommerce-delivery-notes.php:0
|
41 |
-
msgid "2.0"
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr "Získaj podporu komunity"
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr "Pri tlači obrázku, bude hustota pixelov automaticky osemkrát vyššia než originál. To znamená, že 1 vytlačený palec zodpovedá približne 288 pixelov na obrazovke. Príklad: obrázok s šírkou 576 pixelov a výškou 288 pixelov bude mať vytlačenú veľkosť asi 2 palce na 1 palec."
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr "Produkt"
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr "Spolu"
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr "Na stiahnutie"
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr "N/A"
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
-
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Logo obchodu/spoločnosti"
|
72 |
-
|
73 |
-
#: classes/class-wcdn-settings.php:207
|
74 |
-
msgid "Remove Logo"
|
75 |
-
msgstr "Odstráň logo"
|
76 |
-
|
77 |
-
#: classes/class-wcdn-settings.php:208
|
78 |
-
msgid "Set Logo"
|
79 |
-
msgstr "Nastav logo"
|
80 |
-
|
81 |
-
#: classes/class-wcdn-settings.php:210
|
82 |
-
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr "Logo spoločnosti/obchodu prezentujúce vašu firmu"
|
84 |
-
|
85 |
-
#: classes/class-wcdn-settings.php:223
|
86 |
-
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr "Názov vašej spoločnosti/obchodu pre dodací list"
|
88 |
-
|
89 |
-
#: classes/class-wcdn-settings.php:314
|
90 |
-
msgid "Sequential order number"
|
91 |
-
msgstr "Poradové číslo objednávky"
|
92 |
-
|
93 |
-
#: classes/class-wcdn-settings.php:318
|
94 |
-
msgid "Sequential numbering is enabled."
|
95 |
-
msgstr "Sekvenčné číslovanie je povolené."
|
96 |
-
|
97 |
-
#: classes/class-wcdn-settings.php:320
|
98 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
-
msgstr "Nainštalovať a aktivovať zadarmo modul <a href=\"%s\"> WooCommerce poradí čísel </a>"
|
100 |
-
|
101 |
-
#: woocommerce-delivery-notes.php:0
|
102 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
-
|
105 |
-
#: woocommerce-delivery-notes.php:203
|
106 |
-
msgid "Delivery Note"
|
107 |
-
msgstr "Dodací list"
|
108 |
-
|
109 |
-
#: templates/print/print-delivery-note.php:59
|
110 |
-
msgid "Quantity"
|
111 |
-
msgstr "Množstvo"
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Nemáte dostatočné oprávnenie k prístupu na túto stránku."
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr "Prejsť na stránku nastavení"
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr "Nastavenia"
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr "FAQ"
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr "Podpora"
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr "Reklamácie, podmienky, atď:"
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr "SKU:"
|
143 |
-
|
144 |
-
#: templates/print/print-delivery-note.php:69
|
145 |
-
msgid "Weight:"
|
146 |
-
msgstr "Hmotnosť:"
|
147 |
-
|
148 |
-
#: classes/class-wcdn-settings.php:134
|
149 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
-
msgstr "Modul: WooCommerce tlač faktúr a dodacích listov"
|
151 |
-
|
152 |
-
#: classes/class-wcdn-settings.php:211
|
153 |
-
#: classes/class-wcdn-settings.php:224
|
154 |
-
#: classes/class-wcdn-settings.php:237
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "Poznámka:"
|
160 |
-
|
161 |
-
#: classes/class-wcdn-settings.php:236
|
162 |
-
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
-
msgstr "Poštová adresa spoločnosti / obchodu, ktorý sa má vytlačiť priamo pri názve spoločnosti / obchodu, nad zoznam objednávok"
|
164 |
-
|
165 |
-
#: classes/class-wcdn-settings.php:249
|
166 |
-
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
-
msgstr "Pridajte osobné poznámky, alebo sezónne pozdravy alebo čokoľvek iné (napr. Ďakujeme vám za vašu objednávku!, Veselé Vianoce!, atď)."
|
168 |
-
|
169 |
-
#: classes/class-wcdn-settings.php:275
|
170 |
-
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
-
msgstr "Pridajte ďalšie informácie do päty ako copyright a pod., aby vytlačené dokumenty viac zodpovedali Vašim potrebám."
|
172 |
-
|
173 |
-
#: classes/class-wcdn-settings.php:132
|
174 |
-
#: classes/class-wcdn-settings.php:135
|
175 |
-
msgid "About the Plugin"
|
176 |
-
msgstr "O module"
|
177 |
-
|
178 |
-
#: classes/class-wcdn-settings.php:142
|
179 |
-
msgid "For more information:"
|
180 |
-
msgstr "Pre viac informácií:"
|
181 |
-
|
182 |
-
#: classes/class-wcdn-settings.php:143
|
183 |
-
msgid "Frequently Asked Questions"
|
184 |
-
msgstr "Často kladené otázky"
|
185 |
-
|
186 |
-
#: classes/class-wcdn-settings.php:145
|
187 |
-
msgid "Project on WordPress.org"
|
188 |
-
msgstr "Projekt na Wordpress.org"
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:146
|
191 |
-
msgid "Project on GitHub"
|
192 |
-
msgstr "Projekt na GitHub"
|
193 |
-
|
194 |
-
#: classes/class-wcdn-settings.php:154
|
195 |
-
msgid "Print"
|
196 |
-
msgstr "Tlač"
|
197 |
-
|
198 |
-
#: classes/class-wcdn-settings.php:194
|
199 |
-
msgid "Invoices and Delivery Notes"
|
200 |
-
msgstr "Faktúry a dodacie listy"
|
201 |
-
|
202 |
-
#: classes/class-wcdn-settings.php:218
|
203 |
-
msgid "Company/Shop Name"
|
204 |
-
msgstr "Názov spoločnosti/obchodu"
|
205 |
-
|
206 |
-
#: classes/class-wcdn-settings.php:225
|
207 |
-
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
-
msgstr "Nechajte prázdne, ak chcete použiť predvolené nastavenia web stránky / blogu, ktoré boli definované v nastavení WordPress."
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:231
|
211 |
-
msgid "Company/Shop Address"
|
212 |
-
msgstr "Adresa spoločnosti/obchodu"
|
213 |
-
|
214 |
-
#: classes/class-wcdn-settings.php:238
|
215 |
-
msgid "Leave blank to not print an address."
|
216 |
-
msgstr "Ak nechcete vytlačiť adresu, nechajte prázdne"
|
217 |
-
|
218 |
-
#: classes/class-wcdn-settings.php:244
|
219 |
-
msgid "Personal Notes"
|
220 |
-
msgstr "Osobné poznámky"
|
221 |
-
|
222 |
-
#: classes/class-wcdn-settings.php:251
|
223 |
-
msgid "Leave blank to not print any personal notes."
|
224 |
-
msgstr "Ak nechcete vytlačiť žiadne osobné poznámky, nechajte prázdne."
|
225 |
-
|
226 |
-
#: classes/class-wcdn-settings.php:262
|
227 |
-
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
228 |
-
msgstr "Tu môžete pridať nejaké ďalšie podmienky atď. Napríklad podmienky reklamácie v prípade, že by chcel zákazník poslať tovar späť. V niektorých krajinách (napr. v Európskej únii),je toto požadované, preto vyplňte dané informácie v súlade s platnými právnymi predpismi."
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:264
|
231 |
-
msgid "Leave blank to not print any policies or conditions."
|
232 |
-
msgstr "Ak nechcete vytlačiť žiadne podmienky, nechajte prázdne."
|
233 |
-
|
234 |
-
#: classes/class-wcdn-settings.php:270
|
235 |
-
msgid "Footer Imprint"
|
236 |
-
msgstr "Päta"
|
237 |
-
|
238 |
-
#: classes/class-wcdn-settings.php:277
|
239 |
-
msgid "Leave blank to not print a footer."
|
240 |
-
msgstr "Ak nechcete vytlačiť pätu, nechajte prázdne."
|
241 |
-
|
242 |
-
#: classes/class-wcdn-settings.php:309
|
243 |
-
msgid "Order Numbering Options"
|
244 |
-
msgstr "Možnosti číslovania objednávok"
|
245 |
-
|
246 |
-
#: classes/class-wcdn-writepanel.php:92
|
247 |
-
msgid "Order Print"
|
248 |
-
msgstr "Tlač objednávok"
|
249 |
-
|
250 |
-
#: classes/class-wcdn-writepanel.php:76
|
251 |
-
#: classes/class-wcdn-writepanel.php:77
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr "Tlač faktúr"
|
255 |
-
|
256 |
-
#: classes/class-wcdn-writepanel.php:78
|
257 |
-
#: classes/class-wcdn-writepanel.php:80
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Tlač dodacích listov"
|
263 |
-
|
264 |
-
#: woocommerce-delivery-notes.php:201
|
265 |
-
msgid "Invoice"
|
266 |
-
msgstr "Faktúry"
|
267 |
-
|
268 |
-
#: templates/print/print-delivery-note.php:20
|
269 |
-
msgid "Recipient"
|
270 |
-
msgstr "Príjemca"
|
271 |
-
|
272 |
-
#: templates/print/print-delivery-note.php:96
|
273 |
-
msgid "Customer Notes"
|
274 |
-
msgstr "Poznámky zákazníka"
|
275 |
-
|
276 |
-
#: woocommerce-delivery-notes.php:0
|
277 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
-
msgstr "WooCommerce tlač faktúr a dodacích listov"
|
279 |
-
|
280 |
-
#: woocommerce-delivery-notes.php:0
|
281 |
-
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
-
msgstr "Tlač objednávok, faktúr a dodacích listov pre modul WooCommerce. Môžete pridať názov spoločnosti / obchodu, ako aj osobné poznámky a zásady pre tlač stránok."
|
283 |
-
|
284 |
-
#: woocommerce-delivery-notes.php:0
|
285 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
-
msgstr "Steve Clark, Triggvy Gunderson, David Decker"
|
287 |
-
|
288 |
-
#: classes/class-wcdn-settings.php:136
|
289 |
-
msgid "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too."
|
290 |
-
msgstr "Tento plugin vám umožní tlačiť faktúry alebo jednoduché dodacie listy vašich objednávok v rámci modulu WooCommerce. Môžete pridať svoju firemnú poštovú adresu, osobné poznámky, reklamácie, alebo iné podmienky, pätu, poznámky atď. Urýchli to správu objednávok. V niektorých krajinách (napr. v Európskej únii) je tiež nutné oboznámiť zákazníka s informáciami ohľadom reklamácie a vrátenia tovaru. Tento modul Vám môže pri tom veľmi nápomocný."
|
291 |
-
|
292 |
-
#: classes/class-wcdn-settings.php:137
|
293 |
-
msgid "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-)."
|
294 |
-
msgstr "Otvorte <a href=\"%1$s\"> WooCommerce> Objednávky </a> a na stránke nájdite zobrazenie jednotlivej objednávky. Na pravej strane uvidíte priečinok \"Tlač Objednávky\". Kliknite na jedno z tlačidiel a dostanete sa na podstránku tlače faktúr a dodacích listov. Áno, je to tak jednoduché :-)."
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-delivery-notes-sv_SE.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-sv_SE.po
CHANGED
@@ -1,295 +1,547 @@
|
|
1 |
-
#
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
#:
|
17 |
-
msgid "
|
18 |
-
msgstr ""
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
23 |
|
24 |
-
#:
|
25 |
-
msgid "
|
26 |
-
msgstr ""
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
-
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
-
msgstr ""
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
|
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
-
msgstr ""
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
51 |
|
52 |
-
#:
|
53 |
-
msgid "
|
54 |
-
msgstr "
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
-
msgstr "
|
59 |
|
60 |
-
#:
|
61 |
-
msgid "
|
62 |
-
msgstr "
|
63 |
|
64 |
-
#:
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid "Company/Shop Logo"
|
71 |
-
msgstr "
|
72 |
|
73 |
-
|
|
|
74 |
msgid "Remove Logo"
|
75 |
-
msgstr "Ta bort
|
76 |
|
77 |
-
|
|
|
78 |
msgid "Set Logo"
|
79 |
-
msgstr "Ange
|
80 |
|
81 |
-
|
|
|
82 |
msgid "A company/shop logo representing your business."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
-
|
|
|
86 |
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr "
|
88 |
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgstr ""
|
|
|
96 |
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
msgstr ""
|
|
|
|
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
104 |
|
105 |
-
|
106 |
-
|
107 |
-
|
|
|
108 |
|
109 |
-
|
110 |
-
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
-
|
114 |
-
#:
|
115 |
-
|
116 |
-
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr "Du har inte tillräcklig behörighet för att komma åt denna sida."
|
119 |
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
-
|
133 |
-
|
134 |
-
|
|
|
135 |
|
136 |
-
#:
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#:
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#:
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#:
|
149 |
-
msgid "
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
-
|
154 |
-
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr "OBS:"
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#:
|
174 |
-
|
175 |
-
|
176 |
-
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
msgid "
|
180 |
-
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
-
msgid "
|
184 |
-
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
msgstr ""
|
189 |
|
190 |
-
#:
|
191 |
-
msgid "
|
192 |
-
msgstr ""
|
193 |
|
194 |
-
#:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
|
|
|
201 |
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
|
|
205 |
|
206 |
-
#:
|
207 |
-
msgid "
|
208 |
-
msgstr ""
|
209 |
|
210 |
-
#:
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
|
214 |
-
#:
|
215 |
-
msgid "
|
216 |
-
msgstr ""
|
217 |
|
218 |
-
|
219 |
-
|
220 |
-
|
|
|
221 |
|
222 |
-
|
223 |
-
|
224 |
-
|
|
|
225 |
|
226 |
-
#:
|
227 |
-
msgid "
|
228 |
-
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
-
msgid "
|
232 |
-
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
-
msgid "
|
236 |
-
msgstr ""
|
237 |
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
241 |
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
|
|
|
249 |
|
250 |
-
|
251 |
-
#:
|
252 |
-
|
253 |
-
|
254 |
-
msgstr "Skriv ut faktura"
|
255 |
|
256 |
-
#:
|
257 |
-
|
258 |
-
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr "Skriv ut följesedel"
|
263 |
|
264 |
-
#:
|
265 |
-
|
266 |
-
|
|
|
267 |
|
268 |
-
#:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#:
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
275 |
|
276 |
-
|
277 |
-
|
278 |
-
|
|
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
|
|
|
283 |
|
284 |
-
|
285 |
-
|
286 |
-
|
|
|
287 |
|
288 |
-
|
289 |
-
|
290 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
-
|
293 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
msgstr ""
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This German Language File: Copyright (C) 2011-2013 by David Decker of deckerweb.de & genesisthemes.de
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2015-01-31 15:44+0100\n"
|
13 |
+
"PO-Revision-Date: 2015-05-27 15:27+0100\n"
|
14 |
+
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
"Language: sv_SE\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
+
"X-Generator: Poedit 1.7.6\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
24 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
25 |
+
"X-Poedit-Basepath: .\n"
|
26 |
+
"X-Textdomain-Support: yes\n"
|
27 |
+
"X-Poedit-SearchPath-0: ..\n"
|
28 |
+
|
29 |
+
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-print.php:41
|
31 |
+
msgid "Invoice"
|
32 |
+
msgstr "Faktura"
|
33 |
|
34 |
+
#: ../includes/class-wcdn-print.php:42
|
35 |
+
msgid "Invoices"
|
36 |
+
msgstr "Fakturor"
|
37 |
|
38 |
+
# @ woocommerce-delivery-notes
|
39 |
+
#: ../includes/class-wcdn-print.php:43
|
40 |
+
msgid "Print Invoice"
|
41 |
+
msgstr "Skriv ut faktura"
|
42 |
|
43 |
+
#: ../includes/class-wcdn-print.php:44
|
44 |
+
msgid "Print Invoices"
|
45 |
+
msgstr "Skriv ut fakturor"
|
46 |
|
47 |
+
# @ woocommerce-delivery-notes
|
48 |
+
#: ../includes/class-wcdn-print.php:45
|
49 |
+
msgid "Invoice created."
|
50 |
+
msgstr "Faktura skapad"
|
51 |
|
52 |
+
#: ../includes/class-wcdn-print.php:46
|
53 |
+
msgid "Invoices created."
|
54 |
+
msgstr "Fakturor skapade."
|
55 |
|
56 |
+
#: ../includes/class-wcdn-print.php:47
|
57 |
+
msgid "Enable Invoices"
|
58 |
+
msgstr "Aktivera fakturor"
|
59 |
|
60 |
+
# @ woocommerce-delivery-notes
|
61 |
+
#: ../includes/class-wcdn-print.php:53
|
62 |
+
msgid "Delivery Note"
|
63 |
+
msgstr "Följesedel"
|
64 |
|
65 |
+
#: ../includes/class-wcdn-print.php:54
|
66 |
+
msgid "Delivery Notes"
|
67 |
+
msgstr "Följesedlar"
|
68 |
|
69 |
+
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-print.php:55
|
71 |
+
msgid "Print Delivery Note"
|
72 |
+
msgstr "Skriv ut följesedel"
|
73 |
|
74 |
+
#: ../includes/class-wcdn-print.php:56
|
75 |
+
msgid "Print Delivery Notes"
|
76 |
+
msgstr "Skriv ut följesedlar"
|
77 |
|
78 |
+
#: ../includes/class-wcdn-print.php:57
|
79 |
+
msgid "Delivery Note created."
|
80 |
+
msgstr "Följesedel skapad"
|
81 |
|
82 |
+
#: ../includes/class-wcdn-print.php:58
|
83 |
+
msgid "Delivery Notes created."
|
84 |
+
msgstr "Följesedlar skapade"
|
85 |
|
86 |
+
#: ../includes/class-wcdn-print.php:59
|
87 |
+
msgid "Enable Delivery Notes"
|
88 |
+
msgstr "Aktivera följesedlar"
|
89 |
+
|
90 |
+
#: ../includes/class-wcdn-print.php:65
|
91 |
+
msgid "Receipt"
|
92 |
+
msgstr "Kvitto"
|
93 |
+
|
94 |
+
#: ../includes/class-wcdn-print.php:66
|
95 |
+
msgid "Receipts"
|
96 |
+
msgstr "Kvitton"
|
97 |
+
|
98 |
+
#: ../includes/class-wcdn-print.php:67
|
99 |
+
msgid "Print Receipt"
|
100 |
+
msgstr "Skriv ut kvitto"
|
101 |
+
|
102 |
+
#: ../includes/class-wcdn-print.php:68
|
103 |
+
msgid "Print Receipts"
|
104 |
+
msgstr "Skriv ut kvitton"
|
105 |
+
|
106 |
+
#: ../includes/class-wcdn-print.php:69
|
107 |
+
msgid "Receipt created."
|
108 |
+
msgstr "Kvitto skapad"
|
109 |
+
|
110 |
+
#: ../includes/class-wcdn-print.php:70
|
111 |
+
msgid "Receipts created."
|
112 |
+
msgstr "Kvitton skapade"
|
113 |
+
|
114 |
+
#: ../includes/class-wcdn-print.php:71
|
115 |
+
msgid "Enable Receipts"
|
116 |
+
msgstr "Aktivera kvitton"
|
117 |
|
118 |
+
# @ woocommerce-delivery-notes
|
119 |
+
#: ../includes/class-wcdn-print.php:80
|
120 |
+
msgid "Order"
|
121 |
+
msgstr "Order"
|
122 |
+
|
123 |
+
#: ../includes/class-wcdn-print.php:81
|
124 |
+
msgid "Orders"
|
125 |
+
msgstr "Ordrar"
|
126 |
+
|
127 |
+
# @ woocommerce-delivery-notes
|
128 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
129 |
+
msgid "Print Order"
|
130 |
+
msgstr "Skriv ut order"
|
131 |
+
|
132 |
+
#: ../includes/class-wcdn-print.php:83
|
133 |
+
msgid "Print Orders"
|
134 |
+
msgstr "Skriv ut ordrar"
|
135 |
+
|
136 |
+
#: ../includes/class-wcdn-settings.php:72
|
137 |
+
msgid "Do you really want to reset the counter to zero? This process can't be undone."
|
138 |
+
msgstr "Vill du verkligen nollställa räknaren? Detta kan inte ångras."
|
139 |
+
|
140 |
+
# @ woocommerce-delivery-notes
|
141 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
|
142 |
+
#: ../includes/wcdn-template-functions.php:127
|
143 |
+
msgid "Print"
|
144 |
+
msgstr "Skriv ut"
|
145 |
+
|
146 |
+
#: ../includes/class-wcdn-settings.php:176
|
147 |
+
#, php-format
|
148 |
+
msgid ""
|
149 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
150 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
151 |
+
msgstr ""
|
152 |
+
"Du kan förhandgranska <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s"
|
153 |
+
"\" class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:177
|
157 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
158 |
+
msgstr "I FAQ i readme filen kan du lära dig hur du skräddarsyr template."
|
159 |
+
|
160 |
+
# @ woocommerce-delivery-notes
|
161 |
+
#: ../includes/class-wcdn-settings.php:188
|
162 |
msgid "Company/Shop Logo"
|
163 |
+
msgstr "Företags/affärs logotype"
|
164 |
|
165 |
+
# @ woocommerce-delivery-notes
|
166 |
+
#: ../includes/class-wcdn-settings.php:194
|
167 |
msgid "Remove Logo"
|
168 |
+
msgstr "Ta bort logotype"
|
169 |
|
170 |
+
# @ woocommerce-delivery-notes
|
171 |
+
#: ../includes/class-wcdn-settings.php:195
|
172 |
msgid "Set Logo"
|
173 |
+
msgstr "Ange logotype"
|
174 |
|
175 |
+
# @ woocommerce-delivery-notes
|
176 |
+
#: ../includes/class-wcdn-settings.php:199
|
177 |
msgid "A company/shop logo representing your business."
|
178 |
+
msgstr "En Företags/affärs logotype som representerar ditt företag"
|
179 |
+
|
180 |
+
# @ woocommerce-delivery-notes
|
181 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
182 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
183 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
184 |
+
#: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
|
185 |
+
#: ../includes/class-wcdn-settings.php:412
|
186 |
+
msgid "Note:"
|
187 |
+
msgstr "Anteckning:"
|
188 |
+
|
189 |
+
# @ woocommerce-delivery-notes
|
190 |
+
#: ../includes/class-wcdn-settings.php:201
|
191 |
+
msgid ""
|
192 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
193 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
194 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
195 |
msgstr ""
|
196 |
+
"När bilden skrivs ut, kommer dess pixeltätheten automatiskt vara åtta gånger högre än den ursprungliga. Detta "
|
197 |
+
"innebär, 2,54 cm tryckt motsvarar cirka 288 pixlar på skärmen. Exempel: en bild med en bredd på 576 pixlar och en "
|
198 |
+
"höjd av 288 bildpunkter kommer att ha en tryckt storlek på ca 5 cm X 2.54 cm."
|
199 |
+
|
200 |
+
# @ woocommerce-delivery-notes
|
201 |
+
#: ../includes/class-wcdn-settings.php:207
|
202 |
+
msgid "Company/Shop Name"
|
203 |
+
msgstr "Företags/Affärsnamn"
|
204 |
|
205 |
+
# @ woocommerce-delivery-notes
|
206 |
+
#: ../includes/class-wcdn-settings.php:212
|
207 |
msgid "Your company/shop name for the Delivery Note."
|
208 |
+
msgstr "Företags/Affärsnamn för följesedeln"
|
209 |
|
210 |
+
# @ woocommerce-delivery-notes
|
211 |
+
#: ../includes/class-wcdn-settings.php:214
|
212 |
+
msgid ""
|
213 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
214 |
+
"Logo is set."
|
215 |
+
msgstr ""
|
216 |
+
"Lämna tomt för att använda standard webbsida / blogg titel som definieras i Wordpress inställningarna. Namnet "
|
217 |
+
"kommer att ignoreras när en logotyp är vald."
|
218 |
|
219 |
+
# @ woocommerce-delivery-notes
|
220 |
+
#: ../includes/class-wcdn-settings.php:220
|
221 |
+
msgid "Company/Shop Address"
|
222 |
+
msgstr "Företag/affärsadress"
|
223 |
+
|
224 |
+
# @ woocommerce-delivery-notes
|
225 |
+
#: ../includes/class-wcdn-settings.php:225
|
226 |
+
msgid ""
|
227 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
228 |
+
"shop name."
|
229 |
msgstr ""
|
230 |
+
"Företagets/affärens postadressen eller e-post eller telefon, som blir tryckt direkt efter företaget/affärsnamnet."
|
231 |
|
232 |
+
# @ woocommerce-delivery-notes
|
233 |
+
#: ../includes/class-wcdn-settings.php:227
|
234 |
+
msgid "Leave blank to not print an address."
|
235 |
+
msgstr "Lämnas tomt för att inte skriva ut adressen."
|
236 |
+
|
237 |
+
#: ../includes/class-wcdn-settings.php:233
|
238 |
+
msgid "Complimentary Close"
|
239 |
+
msgstr "Artighetsfras slut"
|
240 |
+
|
241 |
+
# @ woocommerce-delivery-notes
|
242 |
+
#: ../includes/class-wcdn-settings.php:238
|
243 |
+
msgid ""
|
244 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
245 |
msgstr ""
|
246 |
+
"Lägg till några personliga anteckningar, eller säsongs hälsning eller vad som helst (t.ex. Tack för din "
|
247 |
+
"beställning !, god jul !, etc.)."
|
248 |
|
249 |
+
# @ woocommerce-delivery-notes
|
250 |
+
#: ../includes/class-wcdn-settings.php:240
|
251 |
+
msgid "Leave blank to not print any personal notes."
|
252 |
+
msgstr "Lämnas tomt för att inte skriva ut några personliga anteckningar."
|
253 |
|
254 |
+
# @ woocommerce-delivery-notes
|
255 |
+
#: ../includes/class-wcdn-settings.php:246
|
256 |
+
msgid "Returns Policy, Conditions, etc"
|
257 |
+
msgstr "Returpolicy, villkor, etc"
|
258 |
|
259 |
+
# @ woocommerce-delivery-notes
|
260 |
+
#: ../includes/class-wcdn-settings.php:251
|
261 |
+
msgid ""
|
262 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
263 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
264 |
+
"required info in accordance with the statutory regulations."
|
265 |
+
msgstr ""
|
266 |
+
"Här kan du lägga till några fler regler, villkor etc. Till exempel lägga till en returpolicy i fall kunden vill "
|
267 |
+
"skicka tillbaka en del varor. I vissa länder (t.ex. i EU) krävs detta, så lägg den obligatorisk information i "
|
268 |
+
"enlighet med de lagstadgade reglerna."
|
269 |
|
270 |
+
# @ woocommerce-delivery-notes
|
271 |
+
#: ../includes/class-wcdn-settings.php:253
|
272 |
+
msgid "Leave blank to not print any policies or conditions."
|
273 |
+
msgstr "Lämna tomt för att inte skriva ut några regler eller villkor."
|
|
|
|
|
274 |
|
275 |
+
# @ woocommerce-delivery-notes
|
276 |
+
#: ../includes/class-wcdn-settings.php:259
|
277 |
+
msgid "Footer"
|
278 |
+
msgstr "Sidfot"
|
279 |
|
280 |
+
# @ woocommerce-delivery-notes
|
281 |
+
#: ../includes/class-wcdn-settings.php:264
|
282 |
+
msgid ""
|
283 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
284 |
+
"branded."
|
285 |
+
msgstr ""
|
286 |
+
"Lägg till några ytterligare sidfotstillägg, e-post, telefon, copyright anteckningar etc. Det gör de tryckta "
|
287 |
+
"sidorna bli lite mer personliga."
|
288 |
|
289 |
+
# @ woocommerce-delivery-notes
|
290 |
+
#: ../includes/class-wcdn-settings.php:266
|
291 |
+
msgid "Leave blank to not print a footer."
|
292 |
+
msgstr "Lämna tomt för att inte skriva ut en sidfot."
|
293 |
+
|
294 |
+
#: ../includes/class-wcdn-settings.php:273
|
295 |
+
msgid "Print Options"
|
296 |
+
msgstr "Utskriftsalternativ"
|
297 |
+
|
298 |
+
#: ../includes/class-wcdn-settings.php:278
|
299 |
+
msgid "Types"
|
300 |
+
msgstr "Typer"
|
301 |
+
|
302 |
+
#: ../includes/class-wcdn-settings.php:297
|
303 |
+
msgid "Theme Options"
|
304 |
+
msgstr "Alternativ för tema"
|
305 |
+
|
306 |
+
# @ woocommerce-delivery-notes
|
307 |
+
#: ../includes/class-wcdn-settings.php:302
|
308 |
+
msgid "Print Page Endpoint"
|
309 |
+
msgstr "Utskriftsidans slutpunkt"
|
310 |
+
|
311 |
+
# @ woocommerce-delivery-notes
|
312 |
+
#: ../includes/class-wcdn-settings.php:309
|
313 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
314 |
+
msgstr "Slutpunkten läggs till sidan kontots URL för att skriva ut ordern. Det bör vara unikt."
|
315 |
+
|
316 |
+
#: ../includes/class-wcdn-settings.php:315
|
317 |
+
msgid "My Account"
|
318 |
+
msgstr "Mitt konto"
|
319 |
+
|
320 |
+
# @ woocommerce-delivery-notes
|
321 |
+
#: ../includes/class-wcdn-settings.php:322
|
322 |
+
msgid "Show print button on the \"View Order\" page"
|
323 |
+
msgstr "Visa utskriftsknappen på \"View Order\" sidan"
|
324 |
+
|
325 |
+
# @ woocommerce-delivery-notes
|
326 |
+
#: ../includes/class-wcdn-settings.php:329
|
327 |
+
msgid "Show print buttons on the \"My Account\" page"
|
328 |
+
msgstr "Visa utskriftsknappen på \"My Account\" sidan"
|
329 |
+
|
330 |
+
# @ woocommerce-delivery-notes
|
331 |
+
#: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
|
332 |
+
msgid "Email"
|
333 |
+
msgstr "E-post"
|
334 |
+
|
335 |
+
#: ../includes/class-wcdn-settings.php:343
|
336 |
+
msgid "Show print link in customer emails"
|
337 |
+
msgstr "Visa utskriftslänken i kund e-post"
|
338 |
+
|
339 |
+
#: ../includes/class-wcdn-settings.php:347
|
340 |
+
msgid ""
|
341 |
+
"This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
|
342 |
+
"also includes the link."
|
343 |
+
msgstr ""
|
344 |
+
"Detta inkluderar e-post för en ny, bearbetning och avslutade order. Utöver det innehåller även kundfakturan även "
|
345 |
+
"länken."
|
346 |
|
347 |
+
# @ woocommerce-delivery-notes
|
348 |
+
#: ../includes/class-wcdn-settings.php:354
|
349 |
+
msgid "Order Numbering"
|
350 |
+
msgstr "Ordenumrering"
|
351 |
|
352 |
+
#: ../includes/class-wcdn-settings.php:359
|
353 |
+
msgid "Invoice Numbering"
|
354 |
+
msgstr "Fakturanumrering"
|
355 |
|
356 |
+
#: ../includes/class-wcdn-settings.php:367
|
357 |
+
msgid "Create invoice numbers"
|
358 |
+
msgstr "Skapa fakturanummer"
|
359 |
|
360 |
+
#: ../includes/class-wcdn-settings.php:374
|
361 |
+
msgid "Invoice Number Start"
|
362 |
+
msgstr "Faktruranummer start"
|
363 |
|
364 |
+
#: ../includes/class-wcdn-settings.php:381
|
365 |
+
msgid "Start the numbering at the specified number."
|
366 |
+
msgstr "Börja numreringen vid det angivna numret."
|
367 |
|
368 |
+
#: ../includes/class-wcdn-settings.php:383
|
369 |
+
msgid "Use only integers."
|
370 |
+
msgstr "Använd endast heltal."
|
|
|
|
|
|
|
|
|
|
|
371 |
|
372 |
+
#: ../includes/class-wcdn-settings.php:389
|
373 |
+
msgid "Invoice Number Prefix"
|
374 |
+
msgstr "Fakturanummer prefix"
|
375 |
|
376 |
+
#: ../includes/class-wcdn-settings.php:396
|
377 |
+
msgid "This text will be prepended to the invoice number."
|
378 |
+
msgstr "Denna text kommer att infogas till fakturanumret."
|
379 |
|
380 |
+
#: ../includes/class-wcdn-settings.php:398
|
381 |
+
msgid "Leave blank to not add a prefix."
|
382 |
+
msgstr "Lämna tomt för att inte lägga till ett prefix."
|
383 |
|
384 |
+
#: ../includes/class-wcdn-settings.php:404
|
385 |
+
msgid "Invoice Number Suffix"
|
386 |
+
msgstr "Fakturanummer suffix"
|
|
|
387 |
|
388 |
+
#: ../includes/class-wcdn-settings.php:411
|
389 |
+
msgid "This text will be appended to the invoice number."
|
390 |
+
msgstr "Denna text kommer att läggas till fakturanumret."
|
391 |
|
392 |
+
#: ../includes/class-wcdn-settings.php:413
|
393 |
+
msgid "Leave blank to not add a suffix."
|
394 |
+
msgstr "Lämna tomt för att inte lägga till ett suffix."
|
395 |
|
396 |
+
#: ../includes/class-wcdn-settings.php:419
|
397 |
+
msgid "Invoice Number Counter"
|
398 |
+
msgstr "Räknare för fakturanummer"
|
399 |
|
400 |
+
#: ../includes/class-wcdn-settings.php:428
|
401 |
+
msgid "Reset Counter …"
|
402 |
+
msgstr "Nollställ räknaren..."
|
403 |
|
404 |
+
#: ../includes/class-wcdn-settings.php:434
|
405 |
+
msgid "Sequential Order Number"
|
406 |
+
msgstr "Sekventiellt ordernummer"
|
407 |
|
408 |
+
# @ woocommerce-delivery-notes
|
409 |
+
#: ../includes/class-wcdn-settings.php:439
|
410 |
+
msgid "Sequential numbering is enabled."
|
411 |
+
msgstr "Sekventiellt ordernummer aktiverat"
|
412 |
|
413 |
+
# @ woocommerce-delivery-notes
|
414 |
+
#: ../includes/class-wcdn-settings.php:441
|
415 |
+
#, php-format
|
416 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
417 |
+
msgstr "Installera och aktivera <a href=\"%s\">WooCommerce Sequential Order Numbers</a> pluginen som är gratis."
|
418 |
|
419 |
+
#: ../includes/class-wcdn-theme.php:106
|
420 |
+
msgid "Print your order"
|
421 |
+
msgstr "Skriv ut din order"
|
422 |
|
423 |
+
#: ../includes/class-wcdn-theme.php:112
|
424 |
+
msgid "Print:"
|
425 |
+
msgstr "Skriv ut:"
|
426 |
|
427 |
+
#: ../includes/class-wcdn-theme.php:112
|
428 |
+
msgid "Open print view in browser"
|
429 |
+
msgstr "Öppna utskriftsvy i webbläsaren"
|
430 |
|
431 |
+
# @ woocommerce-delivery-notes
|
432 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
433 |
+
msgid "Print now"
|
434 |
+
msgstr "Skriv ut nu"
|
435 |
|
436 |
+
# @ woocommerce-delivery-notes
|
437 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
438 |
+
msgid "Order Printing"
|
439 |
+
msgstr "Order utskrift"
|
440 |
|
441 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
442 |
+
msgid "Invoice number: "
|
443 |
+
msgstr "Fakturanummer:"
|
444 |
|
445 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
446 |
+
msgid "Invoice date: "
|
447 |
+
msgstr "Fakturadatum"
|
448 |
|
449 |
+
#: ../includes/wcdn-template-functions.php:232
|
450 |
+
msgid "Invoice Number"
|
451 |
+
msgstr "Fakturanummer"
|
452 |
|
453 |
+
# @ woocommerce-delivery-notes
|
454 |
+
#: ../includes/wcdn-template-functions.php:238
|
455 |
+
msgid "Order Number"
|
456 |
+
msgstr "Ordernummer"
|
457 |
|
458 |
+
# @ woocommerce-delivery-notes
|
459 |
+
#: ../includes/wcdn-template-functions.php:243
|
460 |
+
msgid "Order Date"
|
461 |
+
msgstr "Orderdatum"
|
462 |
|
463 |
+
# @ woocommerce-delivery-notes
|
464 |
+
#: ../includes/wcdn-template-functions.php:248
|
465 |
+
msgid "Payment Method"
|
466 |
+
msgstr "Betalmetod"
|
467 |
|
468 |
+
# @ woocommerce-delivery-notes
|
469 |
+
#: ../includes/wcdn-template-functions.php:261
|
470 |
+
msgid "Telephone"
|
471 |
+
msgstr "Telefon"
|
|
|
472 |
|
473 |
+
#: ../includes/wcdn-template-functions.php:294
|
474 |
+
msgid "SKU:"
|
475 |
+
msgstr "Artikelnr:"
|
|
|
|
|
|
|
|
|
476 |
|
477 |
+
#: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
|
478 |
+
#, php-format
|
479 |
+
msgid "(Includes %s)"
|
480 |
+
msgstr "(Includes %s)"
|
481 |
|
482 |
+
#: ../includes/wcdn-template-functions.php:400
|
483 |
+
msgid "Refund"
|
484 |
+
msgstr "Återbetalning"
|
485 |
|
486 |
+
#: ../includes/wcdn-template-functions.php:412
|
487 |
+
msgid "Order Subtotal"
|
488 |
+
msgstr "Order delsumma"
|
489 |
|
490 |
+
# @ woocommerce-delivery-notes
|
491 |
+
#: ../templates/print-order/print-content.php:28
|
492 |
+
msgid "Billing Address"
|
493 |
+
msgstr "Faktureringsadress"
|
494 |
|
495 |
+
# @ woocommerce-delivery-notes
|
496 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
497 |
+
msgid "N/A"
|
498 |
+
msgstr "Ej tillgängligt"
|
499 |
|
500 |
+
# @ woocommerce-delivery-notes
|
501 |
+
#: ../templates/print-order/print-content.php:37
|
502 |
+
msgid "Shipping Address"
|
503 |
+
msgstr "Leveransadress"
|
504 |
|
505 |
+
# @ woocommerce-delivery-notes
|
506 |
+
#: ../templates/print-order/print-content.php:70
|
507 |
+
msgid "Product"
|
508 |
+
msgstr "Produkt"
|
509 |
+
|
510 |
+
#: ../templates/print-order/print-content.php:71
|
511 |
+
msgid "Price"
|
512 |
+
msgstr "Pris"
|
513 |
+
|
514 |
+
#: ../templates/print-order/print-content.php:72
|
515 |
+
msgid "Quantity"
|
516 |
+
msgstr "Antal"
|
517 |
+
|
518 |
+
# @ woocommerce-delivery-notes
|
519 |
+
#: ../templates/print-order/print-content.php:73
|
520 |
+
msgid "Total"
|
521 |
+
msgstr "Totalt"
|
522 |
|
523 |
+
# @ woocommerce-delivery-notes
|
524 |
+
#: ../templates/print-order/print-content.php:97
|
525 |
+
msgid "Download:"
|
526 |
+
msgstr "Ladda ner:"
|
527 |
+
|
528 |
+
# @ woocommerce-delivery-notes
|
529 |
+
#: ../templates/print-order/print-content.php:98
|
530 |
+
#, php-format
|
531 |
+
msgid "%s Files"
|
532 |
msgstr ""
|
533 |
|
534 |
+
# @ woocommerce-delivery-notes
|
535 |
+
#: ../templates/print-order/print-content.php:147
|
536 |
+
msgid "Customer Note"
|
537 |
+
msgstr "Kundnotering"
|
538 |
+
|
539 |
+
# @ woocommerce-delivery-notes
|
540 |
+
#: ../woocommerce-delivery-notes.php:181
|
541 |
+
msgid "Go to the settings page"
|
542 |
+
msgstr "Gå till inställningssidan"
|
543 |
+
|
544 |
+
# @ woocommerce-delivery-notes
|
545 |
+
#: ../woocommerce-delivery-notes.php:181
|
546 |
+
msgid "Settings"
|
547 |
+
msgstr "Inställningar"
|
languages/woocommerce-delivery-notes-tr_TR.mo
DELETED
Binary file
|
languages/woocommerce-delivery-notes-tr_TR.po
DELETED
@@ -1,295 +0,0 @@
|
|
1 |
-
# Translation of WooCommerce Print Invoices & Delivery Notes in Turkish
|
2 |
-
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2013-03-11 14:36+0100\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
-
"X-Generator: GlotPress/0.1\n"
|
11 |
-
"Project-Id-Version: WooCommerce Print Invoices & Delivery Notes\n"
|
12 |
-
"POT-Creation-Date: \n"
|
13 |
-
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
14 |
-
"Language-Team: \n"
|
15 |
-
|
16 |
-
#: classes/class-wcdn-settings.php:301
|
17 |
-
msgid "You can <a href=\"%1$s\" target=\"%3$s\" class=\"%4$s\">preview the invoice template</a> or <a href=\"%2$s\" target=\"%3$s\" class=\"%4$s\">the delivery note template</a>."
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: classes/class-wcdn-settings.php:302
|
21 |
-
msgid "For more advanced control copy <code>woocommerce-delivery-notes/templates/print/style.css</code> to <code>your-theme-name/woocommerce/print/style.css</code>."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: templates/print/print-delivery-note.php:38
|
25 |
-
msgid "Billing Date"
|
26 |
-
msgstr ""
|
27 |
-
|
28 |
-
#: templates/print/print-delivery-note.php:40
|
29 |
-
msgid "Shipping Date"
|
30 |
-
msgstr ""
|
31 |
-
|
32 |
-
#: templates/print/print-delivery-note.php:45
|
33 |
-
msgid "Order Number"
|
34 |
-
msgstr ""
|
35 |
-
|
36 |
-
#: templates/print/print-delivery-note.php:49
|
37 |
-
msgid "Payment Method"
|
38 |
-
msgstr ""
|
39 |
-
|
40 |
-
#: woocommerce-delivery-notes.php:0
|
41 |
-
msgid "2.0"
|
42 |
-
msgstr "2.0"
|
43 |
-
|
44 |
-
#: classes/class-wcdn-settings.php:144
|
45 |
-
msgid "Get Community Support"
|
46 |
-
msgstr "Destek Forumları"
|
47 |
-
|
48 |
-
#: classes/class-wcdn-settings.php:212
|
49 |
-
msgid "When the image is printed, its pixel density will automatically be eight times higher than the original. This means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
50 |
-
msgstr "Resim yazdırıldığında piksel yoğunluğu orjinalinden 8 kat artacaktır.Bunun anlamı ekrandaki 288 piksel, 1 inch eşittir. Örnek : 576x288 piksellik bir resim yazdırıldığında boyutu yaklaşık 2x1 inch olacaktır."
|
51 |
-
|
52 |
-
#: templates/print/print-delivery-note.php:58
|
53 |
-
msgid "Product"
|
54 |
-
msgstr "Ürünler"
|
55 |
-
|
56 |
-
#: templates/print/print-delivery-note.php:60
|
57 |
-
msgid "Totals"
|
58 |
-
msgstr "Toplam"
|
59 |
-
|
60 |
-
#: templates/print/print-delivery-note.php:70
|
61 |
-
msgid "Download:"
|
62 |
-
msgstr "İndir"
|
63 |
-
|
64 |
-
#: woocommerce-delivery-notes.php:291
|
65 |
-
#: woocommerce-delivery-notes.php:305
|
66 |
-
msgid "N/A"
|
67 |
-
msgstr "N/A"
|
68 |
-
|
69 |
-
#: classes/class-wcdn-settings.php:202
|
70 |
-
msgid "Company/Shop Logo"
|
71 |
-
msgstr "Logo"
|
72 |
-
|
73 |
-
#: classes/class-wcdn-settings.php:207
|
74 |
-
msgid "Remove Logo"
|
75 |
-
msgstr "Logo'yu Sil"
|
76 |
-
|
77 |
-
#: classes/class-wcdn-settings.php:208
|
78 |
-
msgid "Set Logo"
|
79 |
-
msgstr "Logo'yu Düzenle"
|
80 |
-
|
81 |
-
#: classes/class-wcdn-settings.php:210
|
82 |
-
msgid "A company/shop logo representing your business."
|
83 |
-
msgstr ""
|
84 |
-
|
85 |
-
#: classes/class-wcdn-settings.php:223
|
86 |
-
msgid "Your company/shop name for the Delivery Note."
|
87 |
-
msgstr ""
|
88 |
-
|
89 |
-
#: classes/class-wcdn-settings.php:314
|
90 |
-
msgid "Sequential order number"
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: classes/class-wcdn-settings.php:318
|
94 |
-
msgid "Sequential numbering is enabled."
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: classes/class-wcdn-settings.php:320
|
98 |
-
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: woocommerce-delivery-notes.php:0
|
102 |
-
msgid "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
103 |
-
msgstr "https://github.com/piffpaffpuff/woocommerce-delivery-notes"
|
104 |
-
|
105 |
-
#: woocommerce-delivery-notes.php:203
|
106 |
-
msgid "Delivery Note"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: templates/print/print-delivery-note.php:59
|
110 |
-
msgid "Quantity"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: classes/class-wcdn-print.php:63
|
114 |
-
#: classes/class-wcdn-print.php:68
|
115 |
-
#: classes/class-wcdn-print.php:73
|
116 |
-
#: classes/class-wcdn-print.php:78
|
117 |
-
msgid "You do not have sufficient permissions to access this page."
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
-
#: woocommerce-delivery-notes.php:134
|
121 |
-
msgid "Go to the settings page"
|
122 |
-
msgstr ""
|
123 |
-
|
124 |
-
#: woocommerce-delivery-notes.php:134
|
125 |
-
msgid "Settings"
|
126 |
-
msgstr ""
|
127 |
-
|
128 |
-
#: woocommerce-delivery-notes.php:124
|
129 |
-
msgid "FAQ"
|
130 |
-
msgstr ""
|
131 |
-
|
132 |
-
#: woocommerce-delivery-notes.php:125
|
133 |
-
msgid "Support"
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: classes/class-wcdn-settings.php:257
|
137 |
-
msgid "Returns Policy, Conditions, etc.:"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: templates/print/print-delivery-note.php:68
|
141 |
-
msgid "SKU:"
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
#: templates/print/print-delivery-note.php:69
|
145 |
-
msgid "Weight:"
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: classes/class-wcdn-settings.php:134
|
149 |
-
msgid "Plugin: WooCommerce Print Invoices & Delivery Notes"
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: classes/class-wcdn-settings.php:211
|
153 |
-
#: classes/class-wcdn-settings.php:224
|
154 |
-
#: classes/class-wcdn-settings.php:237
|
155 |
-
#: classes/class-wcdn-settings.php:250
|
156 |
-
#: classes/class-wcdn-settings.php:263
|
157 |
-
#: classes/class-wcdn-settings.php:276
|
158 |
-
msgid "Note:"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: classes/class-wcdn-settings.php:236
|
162 |
-
msgid "The postal address of the company/shop, which gets printed right of the company/shop name, above the order listings."
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: classes/class-wcdn-settings.php:249
|
166 |
-
msgid "Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: classes/class-wcdn-settings.php:275
|
170 |
-
msgid "Add some further footer imprint, copyright notes etc. to get the printed sheets a bit more branded to your needs."
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: classes/class-wcdn-settings.php:132
|
174 |
-
#: classes/class-wcdn-settings.php:135
|
175 |
-
msgid "About the Plugin"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: classes/class-wcdn-settings.php:142
|
179 |
-
msgid "For more information:"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: classes/class-wcdn-settings.php:143
|
183 |
-
msgid "Frequently Asked Questions"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: classes/class-wcdn-settings.php:145
|
187 |
-
msgid "Project on WordPress.org"
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: classes/class-wcdn-settings.php:146
|
191 |
-
msgid "Project on GitHub"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: classes/class-wcdn-settings.php:154
|
195 |
-
msgid "Print"
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: classes/class-wcdn-settings.php:194
|
199 |
-
msgid "Invoices and Delivery Notes"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: classes/class-wcdn-settings.php:218
|
203 |
-
msgid "Company/Shop Name"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: classes/class-wcdn-settings.php:225
|
207 |
-
msgid "Leave blank to use the default Website/ Blog title defined in WordPress settings."
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: classes/class-wcdn-settings.php:231
|
211 |
-
msgid "Company/Shop Address"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: classes/class-wcdn-settings.php:238
|
215 |
-
msgid "Leave blank to not print an address."
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: classes/class-wcdn-settings.php:244
|
219 |
-
msgid "Personal Notes"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: classes/class-wcdn-settings.php:251
|
223 |
-
msgid "Leave blank to not print any personal notes."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: classes/class-wcdn-settings.php:262
|
227 |
-
msgid "Here you can add some more policies, conditions etc. For example add a returns policy in case the client would like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any required info in accordance with the statutory regulations."
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: classes/class-wcdn-settings.php:264
|
231 |
-
msgid "Leave blank to not print any policies or conditions."
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: classes/class-wcdn-settings.php:270
|
235 |
-
msgid "Footer Imprint"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: classes/class-wcdn-settings.php:277
|
239 |
-
msgid "Leave blank to not print a footer."
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: classes/class-wcdn-settings.php:309
|
243 |
-
msgid "Order Numbering Options"
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: classes/class-wcdn-writepanel.php:92
|
247 |
-
msgid "Order Print"
|
248 |
-
msgstr ""
|
249 |
-
|
250 |
-
#: classes/class-wcdn-writepanel.php:76
|
251 |
-
#: classes/class-wcdn-writepanel.php:77
|
252 |
-
#: classes/class-wcdn-writepanel.php:102
|
253 |
-
msgid "Print Invoice"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: classes/class-wcdn-writepanel.php:78
|
257 |
-
#: classes/class-wcdn-writepanel.php:80
|
258 |
-
#: classes/class-wcdn-writepanel.php:81
|
259 |
-
#: classes/class-wcdn-writepanel.php:82
|
260 |
-
#: classes/class-wcdn-writepanel.php:103
|
261 |
-
msgid "Print Delivery Note"
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#: woocommerce-delivery-notes.php:201
|
265 |
-
msgid "Invoice"
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#: templates/print/print-delivery-note.php:20
|
269 |
-
msgid "Recipient"
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: templates/print/print-delivery-note.php:96
|
273 |
-
msgid "Customer Notes"
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#: woocommerce-delivery-notes.php:0
|
277 |
-
msgid "WooCommerce Print Invoices & Delivery Notes"
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: woocommerce-delivery-notes.php:0
|
281 |
-
msgid "Print order invoices & delivery notes for WooCommerce shop plugin. You can add company/shop info as well as personal notes & policies to print pages."
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#: woocommerce-delivery-notes.php:0
|
285 |
-
msgid "Steve Clark, Triggvy Gunderson, David Decker"
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#: classes/class-wcdn-settings.php:136
|
289 |
-
msgid "This plugin enables you to add a Invoice or simple Delivery Note page for printing for your orders in WooCommerce shop plugin. You can add your company postal address, further add personal notes, refund or other policies and a footer note/branding. This helps speed up your daily shop and order management. In some countries (e.g. in the European Union) it is also required to advice the customer with proper refund policies so this little plugin might help you a bit with that too."
|
290 |
-
msgstr ""
|
291 |
-
|
292 |
-
#: classes/class-wcdn-settings.php:137
|
293 |
-
msgid "Just look under <a href=\"%1$s\">WooCommerce > Orders</a> and there go to a single order view. On the right side you will see the Order Print meta box. Click one of the buttons and you get the invoice or delivery note printing page. Yes, it is that easy :-)."
|
294 |
-
msgstr ""
|
295 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/woocommerce-delivery-notes-vi_VN.mo
ADDED
Binary file
|
languages/woocommerce-delivery-notes-vi_VN.po
ADDED
@@ -0,0 +1,539 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This Vietnamese Language File: Copyright (C) 2015 by Nguyen Dinh Quan of http://www.narga.net/
|
2 |
+
# This file is distributed under the same license as the WooCommerce Print Invoices & Delivery Notes Plugin package.
|
3 |
+
#
|
4 |
+
# Weitere deutsche Sprachdateien fuer WooCommerce und Extensions (Erweiterungen)
|
5 |
+
# sowie fuer WordPress-Plugins und -Themes finden Sie unter:
|
6 |
+
# --> http://deckerweb.de/sprachdateien/
|
7 |
+
#
|
8 |
+
msgid ""
|
9 |
+
msgstr ""
|
10 |
+
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
+
"Report-Msgid-Bugs-To: http://www.narga.net/contact/\n"
|
12 |
+
"POT-Creation-Date: 2015-06-29 11:22+0700\n"
|
13 |
+
"PO-Revision-Date: 2015-07-11 10:15+0700\n"
|
14 |
+
"Last-Translator: Nguyễn Đình Quân <dinhquan@narga.net>\n"
|
15 |
+
"Language-Team: NARGA <dinhquan@narga.net>\n"
|
16 |
+
"MIME-Version: 1.0\n"
|
17 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
+
"Content-Transfer-Encoding: 8bit\n"
|
19 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
20 |
+
"X-Generator: Poedit 1.8.2\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
23 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
24 |
+
"X-Poedit-Basepath: .\n"
|
25 |
+
"X-Textdomain-Support: yes\n"
|
26 |
+
"Language: vi_VN\n"
|
27 |
+
"X-Poedit-SearchPath-0: ..\n"
|
28 |
+
|
29 |
+
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-print.php:41
|
31 |
+
msgid "Invoice"
|
32 |
+
msgstr "Hóa đơn"
|
33 |
+
|
34 |
+
#: ../includes/class-wcdn-print.php:42
|
35 |
+
msgid "Invoices"
|
36 |
+
msgstr "Các hóa đơn"
|
37 |
+
|
38 |
+
# @ woocommerce-delivery-notes
|
39 |
+
#: ../includes/class-wcdn-print.php:43
|
40 |
+
msgid "Print Invoice"
|
41 |
+
msgstr "In hóa đơn"
|
42 |
+
|
43 |
+
#: ../includes/class-wcdn-print.php:44
|
44 |
+
msgid "Print Invoices"
|
45 |
+
msgstr "In các hóa đơn"
|
46 |
+
|
47 |
+
# @ woocommerce-delivery-notes
|
48 |
+
#: ../includes/class-wcdn-print.php:45
|
49 |
+
msgid "Invoice created."
|
50 |
+
msgstr "Hóa đơn đã được tạo"
|
51 |
+
|
52 |
+
#: ../includes/class-wcdn-print.php:46
|
53 |
+
msgid "Invoices created."
|
54 |
+
msgstr "Các hóa đơn đã được tạo"
|
55 |
+
|
56 |
+
#: ../includes/class-wcdn-print.php:47
|
57 |
+
msgid "Enable Invoices"
|
58 |
+
msgstr "Sử dụng các hóa đơn"
|
59 |
+
|
60 |
+
# @ woocommerce-delivery-notes
|
61 |
+
#: ../includes/class-wcdn-print.php:53
|
62 |
+
msgid "Delivery Note"
|
63 |
+
msgstr "Ghi chú giao nhận hàng"
|
64 |
+
|
65 |
+
#: ../includes/class-wcdn-print.php:54
|
66 |
+
msgid "Delivery Notes"
|
67 |
+
msgstr "Các ghi chú giao nhận hàng"
|
68 |
+
|
69 |
+
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-print.php:55
|
71 |
+
msgid "Print Delivery Note"
|
72 |
+
msgstr "In ghi chú giao nhận hàng"
|
73 |
+
|
74 |
+
#: ../includes/class-wcdn-print.php:56
|
75 |
+
msgid "Print Delivery Notes"
|
76 |
+
msgstr "In các ghi chú giao nhận hàng"
|
77 |
+
|
78 |
+
#: ../includes/class-wcdn-print.php:57
|
79 |
+
msgid "Delivery Note created."
|
80 |
+
msgstr "Ghi chú giao nhận hàng đã được tạo"
|
81 |
+
|
82 |
+
#: ../includes/class-wcdn-print.php:58
|
83 |
+
msgid "Delivery Notes created."
|
84 |
+
msgstr "Các ghi chú giao nhận hàng đã được tạo"
|
85 |
+
|
86 |
+
#: ../includes/class-wcdn-print.php:59
|
87 |
+
msgid "Enable Delivery Notes"
|
88 |
+
msgstr "Kích hoạt các ghi chú giao nhận hàng"
|
89 |
+
|
90 |
+
#: ../includes/class-wcdn-print.php:65
|
91 |
+
msgid "Receipt"
|
92 |
+
msgstr "Biên lai"
|
93 |
+
|
94 |
+
#: ../includes/class-wcdn-print.php:66
|
95 |
+
msgid "Receipts"
|
96 |
+
msgstr "Các biên lai"
|
97 |
+
|
98 |
+
#: ../includes/class-wcdn-print.php:67
|
99 |
+
msgid "Print Receipt"
|
100 |
+
msgstr "In Biên lai"
|
101 |
+
|
102 |
+
#: ../includes/class-wcdn-print.php:68
|
103 |
+
msgid "Print Receipts"
|
104 |
+
msgstr "In Các biên lai"
|
105 |
+
|
106 |
+
#: ../includes/class-wcdn-print.php:69
|
107 |
+
msgid "Receipt created."
|
108 |
+
msgstr "Biên lai đã được tạo"
|
109 |
+
|
110 |
+
#: ../includes/class-wcdn-print.php:70
|
111 |
+
msgid "Receipts created."
|
112 |
+
msgstr "Các biên lai đã được tạo"
|
113 |
+
|
114 |
+
#: ../includes/class-wcdn-print.php:71
|
115 |
+
msgid "Enable Receipts"
|
116 |
+
msgstr "Kích hoạt Các biên lai"
|
117 |
+
|
118 |
+
# @ woocommerce-delivery-notes
|
119 |
+
#: ../includes/class-wcdn-print.php:80
|
120 |
+
msgid "Order"
|
121 |
+
msgstr "Đơn hàng"
|
122 |
+
|
123 |
+
#: ../includes/class-wcdn-print.php:81
|
124 |
+
msgid "Orders"
|
125 |
+
msgstr "Các đơn hàng"
|
126 |
+
|
127 |
+
# @ woocommerce-delivery-notes
|
128 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
129 |
+
msgid "Print Order"
|
130 |
+
msgstr "In đơn hàng"
|
131 |
+
|
132 |
+
#: ../includes/class-wcdn-print.php:83
|
133 |
+
msgid "Print Orders"
|
134 |
+
msgstr "In Các đơn hàng"
|
135 |
+
|
136 |
+
#: ../includes/class-wcdn-settings.php:72
|
137 |
+
msgid "Do you really want to reset the counter to zero? This process can't be undone."
|
138 |
+
msgstr "Bạn có muốn đặt lại bộ đếm về không? Thao tác này không thể phục hồi."
|
139 |
+
|
140 |
+
# @ woocommerce-delivery-notes
|
141 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
|
142 |
+
#: ../includes/wcdn-template-functions.php:127
|
143 |
+
msgid "Print"
|
144 |
+
msgstr "In"
|
145 |
+
|
146 |
+
#: ../includes/class-wcdn-settings.php:176
|
147 |
+
#, php-format
|
148 |
+
msgid ""
|
149 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
150 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
151 |
+
msgstr ""
|
152 |
+
"Bạn có thể xem trước bố cục <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">hóa đơn</a>, <a href=\"%2$s\" target="
|
153 |
+
"\"%4$s\" class=\"%5$s\">ghi chú giao nhận</a> hoặc <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">biên lai</a> "
|
154 |
+
|
155 |
+
# @ woocommerce-delivery-notes
|
156 |
+
#: ../includes/class-wcdn-settings.php:177
|
157 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
158 |
+
msgstr "Đọc phần FAQ trong tập tin readme để biết cách thay đổi bố cục."
|
159 |
+
|
160 |
+
# @ woocommerce-delivery-notes
|
161 |
+
#: ../includes/class-wcdn-settings.php:188
|
162 |
+
msgid "Company/Shop Logo"
|
163 |
+
msgstr "Biểu tượng (logo) của cửa hàng/công ty"
|
164 |
+
|
165 |
+
# @ woocommerce-delivery-notes
|
166 |
+
#: ../includes/class-wcdn-settings.php:194
|
167 |
+
msgid "Remove Logo"
|
168 |
+
msgstr "Gỡ bỏ"
|
169 |
+
|
170 |
+
# @ woocommerce-delivery-notes
|
171 |
+
#: ../includes/class-wcdn-settings.php:195
|
172 |
+
msgid "Set Logo"
|
173 |
+
msgstr "Đặt làm biểu tượng"
|
174 |
+
|
175 |
+
# @ woocommerce-delivery-notes
|
176 |
+
#: ../includes/class-wcdn-settings.php:199
|
177 |
+
msgid "A company/shop logo representing your business."
|
178 |
+
msgstr "Biểu tượng (logo) của cửa hàng/công ty"
|
179 |
+
|
180 |
+
# @ woocommerce-delivery-notes
|
181 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
182 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
183 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
184 |
+
#: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
|
185 |
+
#: ../includes/class-wcdn-settings.php:412
|
186 |
+
msgid "Note:"
|
187 |
+
msgstr "Ghi chú:"
|
188 |
+
|
189 |
+
# @ woocommerce-delivery-notes
|
190 |
+
#: ../includes/class-wcdn-settings.php:201
|
191 |
+
msgid ""
|
192 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
193 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
194 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
195 |
+
msgstr ""
|
196 |
+
"Khi được in, độ phân giải sẽ được tăng thêm tám lần. Ví dụ như nếu bạn in 1 điểm rộng 1 inch trên màn hình là "
|
197 |
+
"288px nhưng khi in ra nó sẽ có độ phân giải 576px để đảm bảo chất lượng."
|
198 |
+
|
199 |
+
# @ woocommerce-delivery-notes
|
200 |
+
#: ../includes/class-wcdn-settings.php:207
|
201 |
+
msgid "Company/Shop Name"
|
202 |
+
msgstr "Tên Công ty/Cửa hàng"
|
203 |
+
|
204 |
+
# @ woocommerce-delivery-notes
|
205 |
+
#: ../includes/class-wcdn-settings.php:212
|
206 |
+
msgid "Your company/shop name for the Delivery Note."
|
207 |
+
msgstr "Tên công ty/cửa hàng trên Ghi chú giao hàng."
|
208 |
+
|
209 |
+
# @ woocommerce-delivery-notes
|
210 |
+
#: ../includes/class-wcdn-settings.php:214
|
211 |
+
msgid ""
|
212 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
213 |
+
"Logo is set."
|
214 |
+
msgstr ""
|
215 |
+
"Để trống để in Tên của Website (trong thiết lập WordPress). Nội dung này sẽ bị bỏ qua nếu bạn đặt Biểu tượng"
|
216 |
+
|
217 |
+
# @ woocommerce-delivery-notes
|
218 |
+
#: ../includes/class-wcdn-settings.php:220
|
219 |
+
msgid "Company/Shop Address"
|
220 |
+
msgstr "Địa chỉ Công ty/Cửa hàng"
|
221 |
+
|
222 |
+
# @ woocommerce-delivery-notes
|
223 |
+
#: ../includes/class-wcdn-settings.php:225
|
224 |
+
msgid ""
|
225 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
226 |
+
"shop name."
|
227 |
+
msgstr "Địa chỉ công ty/cửa hàng hoặc địa chỉ email, điện thoại sẽ được in phía dưới biểu tượng."
|
228 |
+
|
229 |
+
# @ woocommerce-delivery-notes
|
230 |
+
#: ../includes/class-wcdn-settings.php:227
|
231 |
+
msgid "Leave blank to not print an address."
|
232 |
+
msgstr "Để trống để không in địa chỉ."
|
233 |
+
|
234 |
+
#: ../includes/class-wcdn-settings.php:233
|
235 |
+
msgid "Complimentary Close"
|
236 |
+
msgstr "Nội dung Hàng gửi tặng"
|
237 |
+
|
238 |
+
# @ woocommerce-delivery-notes
|
239 |
+
#: ../includes/class-wcdn-settings.php:238
|
240 |
+
msgid ""
|
241 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
242 |
+
msgstr "Ghi nội dung cho người được tặng quà, ví dụ Cám ơn, Chúc mừng năm mới ...)"
|
243 |
+
|
244 |
+
# @ woocommerce-delivery-notes
|
245 |
+
#: ../includes/class-wcdn-settings.php:240
|
246 |
+
msgid "Leave blank to not print any personal notes."
|
247 |
+
msgstr "Để trống để không in ra ghi chú cá nhân."
|
248 |
+
|
249 |
+
# @ woocommerce-delivery-notes
|
250 |
+
#: ../includes/class-wcdn-settings.php:246
|
251 |
+
msgid "Returns Policy, Conditions, etc"
|
252 |
+
msgstr "Điều khoản, quy định trả hàng ..."
|
253 |
+
|
254 |
+
# @ woocommerce-delivery-notes
|
255 |
+
#: ../includes/class-wcdn-settings.php:251
|
256 |
+
msgid ""
|
257 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
258 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
259 |
+
"required info in accordance with the statutory regulations."
|
260 |
+
msgstr ""
|
261 |
+
"Tại đây bạn có thể thêm các thông tin bổ xung như các quy định đảm bảo gửi hàng, trả hàng, hoàn tiền. Trong một "
|
262 |
+
"số khu vực địa lý nhất định (ví dụ như Châu Âu) thì các điều khoản này là bắt buộc."
|
263 |
+
|
264 |
+
# @ woocommerce-delivery-notes
|
265 |
+
#: ../includes/class-wcdn-settings.php:253
|
266 |
+
msgid "Leave blank to not print any policies or conditions."
|
267 |
+
msgstr "Để trống để không in thông tin, điều khoản..."
|
268 |
+
|
269 |
+
# @ woocommerce-delivery-notes
|
270 |
+
#: ../includes/class-wcdn-settings.php:259
|
271 |
+
msgid "Footer"
|
272 |
+
msgstr "Chân trang"
|
273 |
+
|
274 |
+
# @ woocommerce-delivery-notes
|
275 |
+
#: ../includes/class-wcdn-settings.php:264
|
276 |
+
msgid ""
|
277 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
278 |
+
"branded."
|
279 |
+
msgstr "Các nội dung cần in trong chân trang: email, điện thoại, lưu ý."
|
280 |
+
|
281 |
+
# @ woocommerce-delivery-notes
|
282 |
+
#: ../includes/class-wcdn-settings.php:266
|
283 |
+
msgid "Leave blank to not print a footer."
|
284 |
+
msgstr "Để trống để không in chân trang."
|
285 |
+
|
286 |
+
#: ../includes/class-wcdn-settings.php:273
|
287 |
+
msgid "Print Options"
|
288 |
+
msgstr "Tùy chọn In"
|
289 |
+
|
290 |
+
#: ../includes/class-wcdn-settings.php:278
|
291 |
+
msgid "Types"
|
292 |
+
msgstr "Các kiểu"
|
293 |
+
|
294 |
+
#: ../includes/class-wcdn-settings.php:297
|
295 |
+
msgid "Theme Options"
|
296 |
+
msgstr "Tùy chọn chủ đề"
|
297 |
+
|
298 |
+
# @ woocommerce-delivery-notes
|
299 |
+
#: ../includes/class-wcdn-settings.php:302
|
300 |
+
msgid "Print Page Endpoint"
|
301 |
+
msgstr "In đánh dấu kết thúc trang"
|
302 |
+
|
303 |
+
# @ woocommerce-delivery-notes
|
304 |
+
#: ../includes/class-wcdn-settings.php:309
|
305 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
306 |
+
msgstr "Đánh dấu kết thúc trang sẽ được tự động gắn vào bản in. Nó nên là biểu tượng đặc biệt."
|
307 |
+
|
308 |
+
#: ../includes/class-wcdn-settings.php:315
|
309 |
+
msgid "My Account"
|
310 |
+
msgstr "Tài khoản của tôi"
|
311 |
+
|
312 |
+
# @ woocommerce-delivery-notes
|
313 |
+
#: ../includes/class-wcdn-settings.php:322
|
314 |
+
msgid "Show print button on the \"View Order\" page"
|
315 |
+
msgstr "Hiện nút in được trong trang \"Xem đơn hàng\""
|
316 |
+
|
317 |
+
# @ woocommerce-delivery-notes
|
318 |
+
#: ../includes/class-wcdn-settings.php:329
|
319 |
+
msgid "Show print buttons on the \"My Account\" page"
|
320 |
+
msgstr "Hiện nút in được trong trang \"Tài khoản\""
|
321 |
+
|
322 |
+
# @ woocommerce-delivery-notes
|
323 |
+
#: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
|
324 |
+
msgid "Email"
|
325 |
+
msgstr "Email"
|
326 |
+
|
327 |
+
#: ../includes/class-wcdn-settings.php:343
|
328 |
+
msgid "Show print link in customer emails"
|
329 |
+
msgstr "Hiện liên kết in được trong email"
|
330 |
+
|
331 |
+
#: ../includes/class-wcdn-settings.php:347
|
332 |
+
msgid ""
|
333 |
+
"This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
|
334 |
+
"also includes the link."
|
335 |
+
msgstr ""
|
336 |
+
"Nó bao gồm trong các email trạng thái đơn hàng: mới, đang xử lí và đã hoàn thành. Được đặt trên đầu của email và "
|
337 |
+
"cũng bao gồm các liên kết."
|
338 |
+
|
339 |
+
# @ woocommerce-delivery-notes
|
340 |
+
#: ../includes/class-wcdn-settings.php:354
|
341 |
+
msgid "Order Numbering"
|
342 |
+
msgstr "Số đơn hàng"
|
343 |
+
|
344 |
+
#: ../includes/class-wcdn-settings.php:359
|
345 |
+
msgid "Invoice Numbering"
|
346 |
+
msgstr "Số hóa đơn"
|
347 |
+
|
348 |
+
#: ../includes/class-wcdn-settings.php:367
|
349 |
+
msgid "Create invoice numbers"
|
350 |
+
msgstr "Tạo số hóa đơn"
|
351 |
+
|
352 |
+
#: ../includes/class-wcdn-settings.php:374
|
353 |
+
msgid "Invoice Number Start"
|
354 |
+
msgstr "Bắt đầu đánh số từ"
|
355 |
+
|
356 |
+
#: ../includes/class-wcdn-settings.php:381
|
357 |
+
msgid "Start the numbering at the specified number."
|
358 |
+
msgstr "Bắt đầu đánh số "
|
359 |
+
|
360 |
+
#: ../includes/class-wcdn-settings.php:383
|
361 |
+
msgid "Use only integers."
|
362 |
+
msgstr "Chỉ số tự nhiên"
|
363 |
+
|
364 |
+
#: ../includes/class-wcdn-settings.php:389
|
365 |
+
msgid "Invoice Number Prefix"
|
366 |
+
msgstr "Tiền tố cho số hóa đơn"
|
367 |
+
|
368 |
+
#: ../includes/class-wcdn-settings.php:396
|
369 |
+
msgid "This text will be prepended to the invoice number."
|
370 |
+
msgstr "Nội dung sẽ được thêm đằng trước vào số hóa đơn"
|
371 |
+
|
372 |
+
#: ../includes/class-wcdn-settings.php:398
|
373 |
+
msgid "Leave blank to not add a prefix."
|
374 |
+
msgstr "Để trống để không thêm tiền tố"
|
375 |
+
|
376 |
+
#: ../includes/class-wcdn-settings.php:404
|
377 |
+
msgid "Invoice Number Suffix"
|
378 |
+
msgstr "Hậu tố cho số hóa đơn"
|
379 |
+
|
380 |
+
#: ../includes/class-wcdn-settings.php:411
|
381 |
+
msgid "This text will be appended to the invoice number."
|
382 |
+
msgstr "Nội dung sẽ được thêm đằng sau vào số hóa đơn"
|
383 |
+
|
384 |
+
#: ../includes/class-wcdn-settings.php:413
|
385 |
+
msgid "Leave blank to not add a suffix."
|
386 |
+
msgstr "Để trống để không thêm hậu tố"
|
387 |
+
|
388 |
+
#: ../includes/class-wcdn-settings.php:419
|
389 |
+
msgid "Invoice Number Counter"
|
390 |
+
msgstr "Bộ đếm số hóa đơn"
|
391 |
+
|
392 |
+
#: ../includes/class-wcdn-settings.php:428
|
393 |
+
msgid "Reset Counter …"
|
394 |
+
msgstr "Đặt lại bộ đếm số..."
|
395 |
+
|
396 |
+
#: ../includes/class-wcdn-settings.php:434
|
397 |
+
msgid "Sequential Order Number"
|
398 |
+
msgstr "Đánh số đơn hàng theo thứ tự"
|
399 |
+
|
400 |
+
# @ woocommerce-delivery-notes
|
401 |
+
#: ../includes/class-wcdn-settings.php:439
|
402 |
+
msgid "Sequential numbering is enabled."
|
403 |
+
msgstr "Đã kích hoạt đánh số theo thứ tự"
|
404 |
+
|
405 |
+
# @ woocommerce-delivery-notes
|
406 |
+
#: ../includes/class-wcdn-settings.php:441
|
407 |
+
#, php-format
|
408 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
409 |
+
msgstr "Cài đặt và kích hoạt phần mở rộng <a href=\"%s\">WooCommerce Sequential Order Numbers</a> miễn phí."
|
410 |
+
|
411 |
+
#: ../includes/class-wcdn-theme.php:106
|
412 |
+
msgid "Print your order"
|
413 |
+
msgstr "In đơn hàng của bạn"
|
414 |
+
|
415 |
+
#: ../includes/class-wcdn-theme.php:112
|
416 |
+
msgid "Print:"
|
417 |
+
msgstr "In:"
|
418 |
+
|
419 |
+
#: ../includes/class-wcdn-theme.php:112
|
420 |
+
msgid "Open print view in browser"
|
421 |
+
msgstr "Mở bản in được trong trình duyệt"
|
422 |
+
|
423 |
+
# @ woocommerce-delivery-notes
|
424 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
425 |
+
msgid "Print now"
|
426 |
+
msgstr "In"
|
427 |
+
|
428 |
+
# @ woocommerce-delivery-notes
|
429 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
430 |
+
msgid "Order Printing"
|
431 |
+
msgstr "In đơn hàng"
|
432 |
+
|
433 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
434 |
+
msgid "Invoice number: "
|
435 |
+
msgstr "Hóa đơn số:"
|
436 |
+
|
437 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
438 |
+
msgid "Invoice date: "
|
439 |
+
msgstr "Ngày xuất hóa đơn:"
|
440 |
+
|
441 |
+
#: ../includes/wcdn-template-functions.php:232
|
442 |
+
msgid "Invoice Number"
|
443 |
+
msgstr "Hóa đơn số"
|
444 |
+
|
445 |
+
# @ woocommerce-delivery-notes
|
446 |
+
#: ../includes/wcdn-template-functions.php:238
|
447 |
+
msgid "Order Number"
|
448 |
+
msgstr "Đơn hàng số"
|
449 |
+
|
450 |
+
# @ woocommerce-delivery-notes
|
451 |
+
#: ../includes/wcdn-template-functions.php:243
|
452 |
+
msgid "Order Date"
|
453 |
+
msgstr "Ngày đặt hàng"
|
454 |
+
|
455 |
+
# @ woocommerce-delivery-notes
|
456 |
+
#: ../includes/wcdn-template-functions.php:248
|
457 |
+
msgid "Payment Method"
|
458 |
+
msgstr "Phương thức thanh toán"
|
459 |
+
|
460 |
+
# @ woocommerce-delivery-notes
|
461 |
+
#: ../includes/wcdn-template-functions.php:261
|
462 |
+
msgid "Telephone"
|
463 |
+
msgstr "Điện thoại"
|
464 |
+
|
465 |
+
#: ../includes/wcdn-template-functions.php:294
|
466 |
+
msgid "SKU:"
|
467 |
+
msgstr "SKU:"
|
468 |
+
|
469 |
+
#: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
|
470 |
+
#, php-format
|
471 |
+
msgid "(Includes %s)"
|
472 |
+
msgstr "(Bao gồm %s)"
|
473 |
+
|
474 |
+
#: ../includes/wcdn-template-functions.php:400
|
475 |
+
msgid "Refund"
|
476 |
+
msgstr "Hoàn tiền"
|
477 |
+
|
478 |
+
#: ../includes/wcdn-template-functions.php:412
|
479 |
+
msgid "Order Subtotal"
|
480 |
+
msgstr "Các mục phụ"
|
481 |
+
|
482 |
+
# @ woocommerce-delivery-notes
|
483 |
+
#: ../templates/print-order/print-content.php:28
|
484 |
+
msgid "Billing Address"
|
485 |
+
msgstr "Địa chỉ thanh toán"
|
486 |
+
|
487 |
+
# @ woocommerce-delivery-notes
|
488 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
489 |
+
msgid "N/A"
|
490 |
+
msgstr "Không"
|
491 |
+
|
492 |
+
# @ woocommerce-delivery-notes
|
493 |
+
#: ../templates/print-order/print-content.php:37
|
494 |
+
msgid "Shipping Address"
|
495 |
+
msgstr "Địa chỉ nhận hàng"
|
496 |
+
|
497 |
+
# @ woocommerce-delivery-notes
|
498 |
+
#: ../templates/print-order/print-content.php:70
|
499 |
+
msgid "Product"
|
500 |
+
msgstr "Sản phẩm"
|
501 |
+
|
502 |
+
#: ../templates/print-order/print-content.php:71
|
503 |
+
msgid "Price"
|
504 |
+
msgstr "Giá"
|
505 |
+
|
506 |
+
#: ../templates/print-order/print-content.php:72
|
507 |
+
msgid "Quantity"
|
508 |
+
msgstr "Số lượng"
|
509 |
+
|
510 |
+
# @ woocommerce-delivery-notes
|
511 |
+
#: ../templates/print-order/print-content.php:73
|
512 |
+
msgid "Total"
|
513 |
+
msgstr "Tổng cộng"
|
514 |
+
|
515 |
+
# @ woocommerce-delivery-notes
|
516 |
+
#: ../templates/print-order/print-content.php:97
|
517 |
+
msgid "Download:"
|
518 |
+
msgstr "Tải xuống"
|
519 |
+
|
520 |
+
# @ woocommerce-delivery-notes
|
521 |
+
#: ../templates/print-order/print-content.php:98
|
522 |
+
#, php-format
|
523 |
+
msgid "%s Files"
|
524 |
+
msgstr "%s Tập tin"
|
525 |
+
|
526 |
+
# @ woocommerce-delivery-notes
|
527 |
+
#: ../templates/print-order/print-content.php:147
|
528 |
+
msgid "Customer Note"
|
529 |
+
msgstr "Ghi chú"
|
530 |
+
|
531 |
+
# @ woocommerce-delivery-notes
|
532 |
+
#: ../woocommerce-delivery-notes.php:181
|
533 |
+
msgid "Go to the settings page"
|
534 |
+
msgstr "Tới trang thiết lập"
|
535 |
+
|
536 |
+
# @ woocommerce-delivery-notes
|
537 |
+
#: ../woocommerce-delivery-notes.php:181
|
538 |
+
msgid "Settings"
|
539 |
+
msgstr "Thiết lập"
|
languages/woocommerce-delivery-notes.pot
CHANGED
@@ -9,8 +9,8 @@ msgid ""
|
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
-
"POT-Creation-Date:
|
13 |
-
"PO-Revision-Date:
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: en\n"
|
@@ -18,418 +18,513 @@ msgstr ""
|
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
-
"X-Generator: Poedit 1.
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
24 |
-
"
|
25 |
-
"esc_attr_e;esc_attr__\n"
|
26 |
"X-Poedit-Basepath: .\n"
|
27 |
"X-Textdomain-Support: yes\n"
|
28 |
"X-Poedit-SearchPath-0: ..\n"
|
29 |
|
30 |
# @ woocommerce-delivery-notes
|
31 |
-
#: ../includes/class-wcdn-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgstr ""
|
36 |
|
37 |
# @ woocommerce-delivery-notes
|
38 |
-
#: ../includes/class-wcdn-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Print Order"
|
40 |
msgstr ""
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
# @ woocommerce-delivery-notes
|
43 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
44 |
#, php-format
|
45 |
msgid ""
|
46 |
-
"You can preview the <a href=\"%1$s\" target=\"%
|
47 |
-
"
|
48 |
-
"note template</a>."
|
49 |
msgstr ""
|
50 |
|
51 |
# @ woocommerce-delivery-notes
|
52 |
-
#: ../includes/class-wcdn-settings.php:
|
53 |
-
msgid ""
|
54 |
-
"With the FAQ in the readme file you can learn how to customize the template."
|
55 |
msgstr ""
|
56 |
|
57 |
# @ woocommerce-delivery-notes
|
58 |
-
#: ../includes/class-wcdn-settings.php:
|
59 |
msgid "Company/Shop Logo"
|
60 |
msgstr ""
|
61 |
|
62 |
# @ woocommerce-delivery-notes
|
63 |
-
#: ../includes/class-wcdn-settings.php:
|
64 |
msgid "Remove Logo"
|
65 |
msgstr ""
|
66 |
|
67 |
# @ woocommerce-delivery-notes
|
68 |
-
#: ../includes/class-wcdn-settings.php:
|
69 |
msgid "Set Logo"
|
70 |
msgstr ""
|
71 |
|
72 |
# @ woocommerce-delivery-notes
|
73 |
-
#: ../includes/class-wcdn-settings.php:
|
74 |
msgid "A company/shop logo representing your business."
|
75 |
msgstr ""
|
76 |
|
77 |
# @ woocommerce-delivery-notes
|
78 |
-
#: ../includes/class-wcdn-settings.php:
|
79 |
-
#: ../includes/class-wcdn-settings.php:
|
80 |
-
#: ../includes/class-wcdn-settings.php:
|
81 |
-
#: ../includes/class-wcdn-settings.php:
|
82 |
-
#: ../includes/class-wcdn-settings.php:
|
83 |
-
#: ../includes/class-wcdn-settings.php:236
|
84 |
-
#: ../includes/class-wcdn-settings.php:312
|
85 |
-
#: ../includes/class-wcdn-settings.php:328
|
86 |
-
#: ../includes/class-wcdn-settings.php:344
|
87 |
msgid "Note:"
|
88 |
msgstr ""
|
89 |
|
90 |
# @ woocommerce-delivery-notes
|
91 |
-
#: ../includes/class-wcdn-settings.php:
|
92 |
msgid ""
|
93 |
-
"When the image is printed, its pixel density will automatically be eight "
|
94 |
-
"
|
95 |
-
"
|
96 |
-
"pixels and a height of 288 pixels will have a printed size of about 2 inches "
|
97 |
-
"to 1 inch."
|
98 |
msgstr ""
|
99 |
|
100 |
# @ woocommerce-delivery-notes
|
101 |
-
#: ../includes/class-wcdn-settings.php:
|
102 |
msgid "Company/Shop Name"
|
103 |
msgstr ""
|
104 |
|
105 |
# @ woocommerce-delivery-notes
|
106 |
-
#: ../includes/class-wcdn-settings.php:
|
107 |
msgid "Your company/shop name for the Delivery Note."
|
108 |
msgstr ""
|
109 |
|
110 |
# @ woocommerce-delivery-notes
|
111 |
-
#: ../includes/class-wcdn-settings.php:
|
112 |
msgid ""
|
113 |
-
"Leave blank to use the default Website/Blog title defined in WordPress "
|
114 |
-
"
|
115 |
msgstr ""
|
116 |
|
117 |
# @ woocommerce-delivery-notes
|
118 |
-
#: ../includes/class-wcdn-settings.php:
|
119 |
msgid "Company/Shop Address"
|
120 |
msgstr ""
|
121 |
|
122 |
# @ woocommerce-delivery-notes
|
123 |
-
#: ../includes/class-wcdn-settings.php:
|
124 |
msgid ""
|
125 |
-
"The postal address of the company/shop or even e-mail or telephone, which "
|
126 |
-
"
|
127 |
msgstr ""
|
128 |
|
129 |
# @ woocommerce-delivery-notes
|
130 |
-
#: ../includes/class-wcdn-settings.php:
|
131 |
msgid "Leave blank to not print an address."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../includes/class-wcdn-settings.php:
|
135 |
msgid "Complimentary Close"
|
136 |
msgstr ""
|
137 |
|
138 |
# @ woocommerce-delivery-notes
|
139 |
-
#: ../includes/class-wcdn-settings.php:
|
140 |
msgid ""
|
141 |
-
"Add some personal notes, or season greetings or whatever (e.g. Thank You for "
|
142 |
-
"Your Order!, Merry Christmas!, etc.)."
|
143 |
msgstr ""
|
144 |
|
145 |
# @ woocommerce-delivery-notes
|
146 |
-
#: ../includes/class-wcdn-settings.php:
|
147 |
msgid "Leave blank to not print any personal notes."
|
148 |
msgstr ""
|
149 |
|
150 |
# @ woocommerce-delivery-notes
|
151 |
-
#: ../includes/class-wcdn-settings.php:
|
152 |
msgid "Returns Policy, Conditions, etc"
|
153 |
msgstr ""
|
154 |
|
155 |
# @ woocommerce-delivery-notes
|
156 |
-
#: ../includes/class-wcdn-settings.php:
|
157 |
msgid ""
|
158 |
-
"Here you can add some more policies, conditions etc. For example add a "
|
159 |
-
"
|
160 |
-
"
|
161 |
-
"any required info in accordance with the statutory regulations."
|
162 |
msgstr ""
|
163 |
|
164 |
# @ woocommerce-delivery-notes
|
165 |
-
#: ../includes/class-wcdn-settings.php:
|
166 |
msgid "Leave blank to not print any policies or conditions."
|
167 |
msgstr ""
|
168 |
|
169 |
# @ woocommerce-delivery-notes
|
170 |
-
#: ../includes/class-wcdn-settings.php:
|
171 |
msgid "Footer"
|
172 |
msgstr ""
|
173 |
|
174 |
# @ woocommerce-delivery-notes
|
175 |
-
#: ../includes/class-wcdn-settings.php:
|
176 |
msgid ""
|
177 |
-
"Add some further footer imprint, e-mail, telephone, copyright notes etc. "
|
178 |
-
"
|
179 |
msgstr ""
|
180 |
|
181 |
# @ woocommerce-delivery-notes
|
182 |
-
#: ../includes/class-wcdn-settings.php:
|
183 |
msgid "Leave blank to not print a footer."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: ../includes/class-wcdn-settings.php:
|
187 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgstr ""
|
189 |
|
190 |
# @ woocommerce-delivery-notes
|
191 |
-
#: ../includes/class-wcdn-settings.php:
|
192 |
msgid "Print Page Endpoint"
|
193 |
msgstr ""
|
194 |
|
195 |
# @ woocommerce-delivery-notes
|
196 |
-
#: ../includes/class-wcdn-settings.php:
|
197 |
-
msgid ""
|
198 |
-
"The endpoint is appended to the accounts page URL to print the order. It "
|
199 |
-
"should be unique."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../includes/class-wcdn-settings.php:
|
203 |
-
msgid "
|
204 |
msgstr ""
|
205 |
|
206 |
# @ woocommerce-delivery-notes
|
207 |
-
#: ../includes/class-wcdn-settings.php:
|
208 |
msgid "Show print button on the \"View Order\" page"
|
209 |
msgstr ""
|
210 |
|
211 |
# @ woocommerce-delivery-notes
|
212 |
-
#: ../includes/class-wcdn-settings.php:
|
213 |
msgid "Show print buttons on the \"My Account\" page"
|
214 |
msgstr ""
|
215 |
|
216 |
# @ woocommerce-delivery-notes
|
217 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
msgid "Order Numbering"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: ../includes/class-wcdn-settings.php:
|
222 |
-
|
223 |
-
msgid "Invoice Number"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../includes/class-wcdn-settings.php:
|
227 |
msgid "Create invoice numbers"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../includes/class-wcdn-settings.php:
|
231 |
msgid "Invoice Number Start"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../includes/class-wcdn-settings.php:
|
235 |
msgid "Start the numbering at the specified number."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../includes/class-wcdn-settings.php:
|
239 |
msgid "Use only integers."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-wcdn-settings.php:
|
243 |
-
#: ../includes/class-wcdn-settings.php:330
|
244 |
-
#: ../includes/class-wcdn-settings.php:346
|
245 |
-
msgid "Already created invoice numbers are not affected by changes."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: ../includes/class-wcdn-settings.php:320
|
249 |
msgid "Invoice Number Prefix"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../includes/class-wcdn-settings.php:
|
253 |
msgid "This text will be prepended to the invoice number."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/class-wcdn-settings.php:
|
257 |
msgid "Leave blank to not add a prefix."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../includes/class-wcdn-settings.php:
|
261 |
msgid "Invoice Number Suffix"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../includes/class-wcdn-settings.php:
|
265 |
msgid "This text will be appended to the invoice number."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: ../includes/class-wcdn-settings.php:
|
269 |
msgid "Leave blank to not add a suffix."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../includes/class-wcdn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "Sequential Order Number"
|
274 |
msgstr ""
|
275 |
|
276 |
# @ woocommerce-delivery-notes
|
277 |
-
#: ../includes/class-wcdn-settings.php:
|
278 |
msgid "Sequential numbering is enabled."
|
279 |
msgstr ""
|
280 |
|
281 |
# @ woocommerce-delivery-notes
|
282 |
-
#: ../includes/class-wcdn-settings.php:
|
283 |
#, php-format
|
284 |
-
msgid ""
|
285 |
-
"Install and activate the free <a href=\"%s\">WooCommerce Sequential Order "
|
286 |
-
"Numbers</a> Plugin."
|
287 |
msgstr ""
|
288 |
|
289 |
-
|
290 |
-
|
291 |
-
#: ../includes/class-wcdn-writepanel.php:84
|
292 |
-
#: ../includes/class-wcdn-writepanel.php:105
|
293 |
-
#: ../includes/class-wcdn-writepanel.php:106
|
294 |
-
#: ../includes/class-wcdn-writepanel.php:192
|
295 |
-
msgid "Print Invoice"
|
296 |
msgstr ""
|
297 |
|
298 |
-
|
299 |
-
|
300 |
-
#: ../includes/class-wcdn-writepanel.php:87
|
301 |
-
#: ../includes/class-wcdn-writepanel.php:108
|
302 |
-
#: ../includes/class-wcdn-writepanel.php:109
|
303 |
-
#: ../includes/class-wcdn-writepanel.php:193
|
304 |
-
msgid "Print Delivery Note"
|
305 |
msgstr ""
|
306 |
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
msgid "Invoice created."
|
311 |
-
msgid_plural "%s invoices created."
|
312 |
-
msgstr[0] ""
|
313 |
-
msgstr[1] ""
|
314 |
-
|
315 |
-
# @ woocommerce-delivery-notes
|
316 |
-
#: ../includes/class-wcdn-writepanel.php:166
|
317 |
-
#, php-format
|
318 |
-
msgid "Delivery note created."
|
319 |
-
msgid_plural "%s delivery notes created."
|
320 |
-
msgstr[0] ""
|
321 |
-
msgstr[1] ""
|
322 |
|
323 |
# @ woocommerce-delivery-notes
|
324 |
-
#: ../includes/class-wcdn-writepanel.php:
|
325 |
msgid "Print now"
|
326 |
msgstr ""
|
327 |
|
328 |
# @ woocommerce-delivery-notes
|
329 |
-
#: ../includes/class-wcdn-writepanel.php:
|
330 |
msgid "Order Printing"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ../includes/class-wcdn-writepanel.php:
|
334 |
msgid "Invoice number: "
|
335 |
msgstr ""
|
336 |
|
337 |
-
|
338 |
-
|
339 |
-
msgid "Invoice"
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
# @ woocommerce-delivery-notes
|
343 |
-
#: ../includes/wcdn-template-functions.php:34
|
344 |
-
msgid "Delivery Note"
|
345 |
msgstr ""
|
346 |
|
347 |
-
|
348 |
-
|
349 |
-
msgid "Order"
|
350 |
msgstr ""
|
351 |
|
352 |
# @ woocommerce-delivery-notes
|
353 |
-
#: ../includes/wcdn-template-functions.php:
|
354 |
msgid "Order Number"
|
355 |
msgstr ""
|
356 |
|
357 |
# @ woocommerce-delivery-notes
|
358 |
-
#: ../includes/wcdn-template-functions.php:
|
359 |
msgid "Order Date"
|
360 |
msgstr ""
|
361 |
|
362 |
# @ woocommerce-delivery-notes
|
363 |
-
#: ../includes/wcdn-template-functions.php:
|
364 |
msgid "Payment Method"
|
365 |
msgstr ""
|
366 |
|
367 |
# @ woocommerce-delivery-notes
|
368 |
-
#: ../includes/wcdn-template-functions.php:
|
369 |
-
msgid "Email"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
# @ woocommerce-delivery-notes
|
373 |
-
#: ../includes/wcdn-template-functions.php:237
|
374 |
msgid "Telephone"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../includes/wcdn-template-functions.php:
|
378 |
msgid "SKU:"
|
379 |
msgstr ""
|
380 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
# @ woocommerce-delivery-notes
|
382 |
#: ../templates/print-order/print-content.php:28
|
383 |
msgid "Billing Address"
|
384 |
msgstr ""
|
385 |
|
386 |
# @ woocommerce-delivery-notes
|
387 |
-
#: ../templates/print-order/print-content.php:31
|
388 |
-
#: ../templates/print-order/print-content.php:42
|
389 |
msgid "N/A"
|
390 |
msgstr ""
|
391 |
|
392 |
# @ woocommerce-delivery-notes
|
393 |
-
#: ../templates/print-order/print-content.php:
|
394 |
msgid "Shipping Address"
|
395 |
msgstr ""
|
396 |
|
397 |
# @ woocommerce-delivery-notes
|
398 |
-
#: ../templates/print-order/print-content.php:
|
399 |
msgid "Product"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: ../templates/print-order/print-content.php:
|
|
|
|
|
|
|
|
|
403 |
msgid "Quantity"
|
404 |
msgstr ""
|
405 |
|
406 |
# @ woocommerce-delivery-notes
|
407 |
-
#: ../templates/print-order/print-content.php:
|
408 |
msgid "Total"
|
409 |
msgstr ""
|
410 |
|
411 |
# @ woocommerce-delivery-notes
|
412 |
-
#: ../templates/print-order/print-content.php:
|
413 |
msgid "Download:"
|
414 |
msgstr ""
|
415 |
|
416 |
# @ woocommerce-delivery-notes
|
417 |
-
#: ../templates/print-order/print-content.php:
|
418 |
#, php-format
|
419 |
msgid "%s Files"
|
420 |
msgstr ""
|
421 |
|
422 |
# @ woocommerce-delivery-notes
|
423 |
-
#: ../templates/print-order/print-content.php:
|
424 |
msgid "Customer Note"
|
425 |
msgstr ""
|
426 |
|
427 |
# @ woocommerce-delivery-notes
|
428 |
-
#: ../woocommerce-delivery-notes.php:
|
429 |
msgid "Go to the settings page"
|
430 |
msgstr ""
|
431 |
|
432 |
# @ woocommerce-delivery-notes
|
433 |
-
#: ../woocommerce-delivery-notes.php:
|
434 |
msgid "Settings"
|
435 |
msgstr ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: WooCommerce Print Invoice & Delivery Note\n"
|
11 |
"Report-Msgid-Bugs-To: http://deckerweb.de/kontakt/\n"
|
12 |
+
"POT-Creation-Date: 2015-01-31 15:44+0100\n"
|
13 |
+
"PO-Revision-Date: 2015-01-31 15:44+0100\n"
|
14 |
"Last-Translator: David Decker <deckerweb.mobil@googlemail.com>\n"
|
15 |
"Language-Team: \n"
|
16 |
"Language: en\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
21 |
+
"X-Generator: Poedit 1.7.4\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;"
|
24 |
+
"_nx:4c,1,2;_nx_noop:4c,1,2;esc_attr_e;esc_attr__\n"
|
|
|
25 |
"X-Poedit-Basepath: .\n"
|
26 |
"X-Textdomain-Support: yes\n"
|
27 |
"X-Poedit-SearchPath-0: ..\n"
|
28 |
|
29 |
# @ woocommerce-delivery-notes
|
30 |
+
#: ../includes/class-wcdn-print.php:41
|
31 |
+
msgid "Invoice"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: ../includes/class-wcdn-print.php:42
|
35 |
+
msgid "Invoices"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
# @ woocommerce-delivery-notes
|
39 |
+
#: ../includes/class-wcdn-print.php:43
|
40 |
+
msgid "Print Invoice"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: ../includes/class-wcdn-print.php:44
|
44 |
+
msgid "Print Invoices"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
# @ woocommerce-delivery-notes
|
48 |
+
#: ../includes/class-wcdn-print.php:45
|
49 |
+
msgid "Invoice created."
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: ../includes/class-wcdn-print.php:46
|
53 |
+
msgid "Invoices created."
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: ../includes/class-wcdn-print.php:47
|
57 |
+
msgid "Enable Invoices"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
# @ woocommerce-delivery-notes
|
61 |
+
#: ../includes/class-wcdn-print.php:53
|
62 |
+
msgid "Delivery Note"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../includes/class-wcdn-print.php:54
|
66 |
+
msgid "Delivery Notes"
|
67 |
msgstr ""
|
68 |
|
69 |
# @ woocommerce-delivery-notes
|
70 |
+
#: ../includes/class-wcdn-print.php:55
|
71 |
+
msgid "Print Delivery Note"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: ../includes/class-wcdn-print.php:56
|
75 |
+
msgid "Print Delivery Notes"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: ../includes/class-wcdn-print.php:57
|
79 |
+
msgid "Delivery Note created."
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: ../includes/class-wcdn-print.php:58
|
83 |
+
msgid "Delivery Notes created."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: ../includes/class-wcdn-print.php:59
|
87 |
+
msgid "Enable Delivery Notes"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: ../includes/class-wcdn-print.php:65
|
91 |
+
msgid "Receipt"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: ../includes/class-wcdn-print.php:66
|
95 |
+
msgid "Receipts"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: ../includes/class-wcdn-print.php:67
|
99 |
+
msgid "Print Receipt"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: ../includes/class-wcdn-print.php:68
|
103 |
+
msgid "Print Receipts"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: ../includes/class-wcdn-print.php:69
|
107 |
+
msgid "Receipt created."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: ../includes/class-wcdn-print.php:70
|
111 |
+
msgid "Receipts created."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: ../includes/class-wcdn-print.php:71
|
115 |
+
msgid "Enable Receipts"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
# @ woocommerce-delivery-notes
|
119 |
+
#: ../includes/class-wcdn-print.php:80
|
120 |
+
msgid "Order"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: ../includes/class-wcdn-print.php:81
|
124 |
+
msgid "Orders"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
# @ woocommerce-delivery-notes
|
128 |
+
#: ../includes/class-wcdn-print.php:82 ../includes/class-wcdn-settings.php:157
|
129 |
msgid "Print Order"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: ../includes/class-wcdn-print.php:83
|
133 |
+
msgid "Print Orders"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../includes/class-wcdn-settings.php:72
|
137 |
+
msgid "Do you really want to reset the counter to zero? This process can't be undone."
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
# @ woocommerce-delivery-notes
|
141 |
+
#: ../includes/class-wcdn-settings.php:102 ../includes/class-wcdn-theme.php:56 ../includes/class-wcdn-theme.php:91
|
142 |
+
#: ../includes/wcdn-template-functions.php:127
|
143 |
+
msgid "Print"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: ../includes/class-wcdn-settings.php:176
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
+
"You can preview the <a href=\"%1$s\" target=\"%4$s\" class=\"%5$s\">invoice</a>, <a href=\"%2$s\" target=\"%4$s\" "
|
150 |
+
"class=\"%5$s\">delivery note</a> or <a href=\"%3$s\" target=\"%4$s\" class=\"%5$s\">receipt</a> template."
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
# @ woocommerce-delivery-notes
|
154 |
+
#: ../includes/class-wcdn-settings.php:177
|
155 |
+
msgid "With the FAQ in the readme file you can learn how to customize the template."
|
|
|
156 |
msgstr ""
|
157 |
|
158 |
# @ woocommerce-delivery-notes
|
159 |
+
#: ../includes/class-wcdn-settings.php:188
|
160 |
msgid "Company/Shop Logo"
|
161 |
msgstr ""
|
162 |
|
163 |
# @ woocommerce-delivery-notes
|
164 |
+
#: ../includes/class-wcdn-settings.php:194
|
165 |
msgid "Remove Logo"
|
166 |
msgstr ""
|
167 |
|
168 |
# @ woocommerce-delivery-notes
|
169 |
+
#: ../includes/class-wcdn-settings.php:195
|
170 |
msgid "Set Logo"
|
171 |
msgstr ""
|
172 |
|
173 |
# @ woocommerce-delivery-notes
|
174 |
+
#: ../includes/class-wcdn-settings.php:199
|
175 |
msgid "A company/shop logo representing your business."
|
176 |
msgstr ""
|
177 |
|
178 |
# @ woocommerce-delivery-notes
|
179 |
+
#: ../includes/class-wcdn-settings.php:200 ../includes/class-wcdn-settings.php:213
|
180 |
+
#: ../includes/class-wcdn-settings.php:226 ../includes/class-wcdn-settings.php:239
|
181 |
+
#: ../includes/class-wcdn-settings.php:252 ../includes/class-wcdn-settings.php:265
|
182 |
+
#: ../includes/class-wcdn-settings.php:382 ../includes/class-wcdn-settings.php:397
|
183 |
+
#: ../includes/class-wcdn-settings.php:412
|
|
|
|
|
|
|
|
|
184 |
msgid "Note:"
|
185 |
msgstr ""
|
186 |
|
187 |
# @ woocommerce-delivery-notes
|
188 |
+
#: ../includes/class-wcdn-settings.php:201
|
189 |
msgid ""
|
190 |
+
"When the image is printed, its pixel density will automatically be eight times higher than the original. This "
|
191 |
+
"means, 1 printed inch will correspond to about 288 pixels on the screen. Example: an image with a width of 576 "
|
192 |
+
"pixels and a height of 288 pixels will have a printed size of about 2 inches to 1 inch."
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
# @ woocommerce-delivery-notes
|
196 |
+
#: ../includes/class-wcdn-settings.php:207
|
197 |
msgid "Company/Shop Name"
|
198 |
msgstr ""
|
199 |
|
200 |
# @ woocommerce-delivery-notes
|
201 |
+
#: ../includes/class-wcdn-settings.php:212
|
202 |
msgid "Your company/shop name for the Delivery Note."
|
203 |
msgstr ""
|
204 |
|
205 |
# @ woocommerce-delivery-notes
|
206 |
+
#: ../includes/class-wcdn-settings.php:214
|
207 |
msgid ""
|
208 |
+
"Leave blank to use the default Website/Blog title defined in WordPress settings. The name will be ignored when a "
|
209 |
+
"Logo is set."
|
210 |
msgstr ""
|
211 |
|
212 |
# @ woocommerce-delivery-notes
|
213 |
+
#: ../includes/class-wcdn-settings.php:220
|
214 |
msgid "Company/Shop Address"
|
215 |
msgstr ""
|
216 |
|
217 |
# @ woocommerce-delivery-notes
|
218 |
+
#: ../includes/class-wcdn-settings.php:225
|
219 |
msgid ""
|
220 |
+
"The postal address of the company/shop or even e-mail or telephone, which gets printed right after the company/"
|
221 |
+
"shop name."
|
222 |
msgstr ""
|
223 |
|
224 |
# @ woocommerce-delivery-notes
|
225 |
+
#: ../includes/class-wcdn-settings.php:227
|
226 |
msgid "Leave blank to not print an address."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: ../includes/class-wcdn-settings.php:233
|
230 |
msgid "Complimentary Close"
|
231 |
msgstr ""
|
232 |
|
233 |
# @ woocommerce-delivery-notes
|
234 |
+
#: ../includes/class-wcdn-settings.php:238
|
235 |
msgid ""
|
236 |
+
"Add some personal notes, or season greetings or whatever (e.g. Thank You for Your Order!, Merry Christmas!, etc.)."
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
# @ woocommerce-delivery-notes
|
240 |
+
#: ../includes/class-wcdn-settings.php:240
|
241 |
msgid "Leave blank to not print any personal notes."
|
242 |
msgstr ""
|
243 |
|
244 |
# @ woocommerce-delivery-notes
|
245 |
+
#: ../includes/class-wcdn-settings.php:246
|
246 |
msgid "Returns Policy, Conditions, etc"
|
247 |
msgstr ""
|
248 |
|
249 |
# @ woocommerce-delivery-notes
|
250 |
+
#: ../includes/class-wcdn-settings.php:251
|
251 |
msgid ""
|
252 |
+
"Here you can add some more policies, conditions etc. For example add a returns policy in case the client would "
|
253 |
+
"like to send back some goods. In some countries (e.g. in the European Union) this is required so please add any "
|
254 |
+
"required info in accordance with the statutory regulations."
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
# @ woocommerce-delivery-notes
|
258 |
+
#: ../includes/class-wcdn-settings.php:253
|
259 |
msgid "Leave blank to not print any policies or conditions."
|
260 |
msgstr ""
|
261 |
|
262 |
# @ woocommerce-delivery-notes
|
263 |
+
#: ../includes/class-wcdn-settings.php:259
|
264 |
msgid "Footer"
|
265 |
msgstr ""
|
266 |
|
267 |
# @ woocommerce-delivery-notes
|
268 |
+
#: ../includes/class-wcdn-settings.php:264
|
269 |
msgid ""
|
270 |
+
"Add some further footer imprint, e-mail, telephone, copyright notes etc. This makes the printed sheets a bit more "
|
271 |
+
"branded."
|
272 |
msgstr ""
|
273 |
|
274 |
# @ woocommerce-delivery-notes
|
275 |
+
#: ../includes/class-wcdn-settings.php:266
|
276 |
msgid "Leave blank to not print a footer."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: ../includes/class-wcdn-settings.php:273
|
280 |
+
msgid "Print Options"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: ../includes/class-wcdn-settings.php:278
|
284 |
+
msgid "Types"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: ../includes/class-wcdn-settings.php:297
|
288 |
+
msgid "Theme Options"
|
289 |
msgstr ""
|
290 |
|
291 |
# @ woocommerce-delivery-notes
|
292 |
+
#: ../includes/class-wcdn-settings.php:302
|
293 |
msgid "Print Page Endpoint"
|
294 |
msgstr ""
|
295 |
|
296 |
# @ woocommerce-delivery-notes
|
297 |
+
#: ../includes/class-wcdn-settings.php:309
|
298 |
+
msgid "The endpoint is appended to the accounts page URL to print the order. It should be unique."
|
|
|
|
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: ../includes/class-wcdn-settings.php:315
|
302 |
+
msgid "My Account"
|
303 |
msgstr ""
|
304 |
|
305 |
# @ woocommerce-delivery-notes
|
306 |
+
#: ../includes/class-wcdn-settings.php:322
|
307 |
msgid "Show print button on the \"View Order\" page"
|
308 |
msgstr ""
|
309 |
|
310 |
# @ woocommerce-delivery-notes
|
311 |
+
#: ../includes/class-wcdn-settings.php:329
|
312 |
msgid "Show print buttons on the \"My Account\" page"
|
313 |
msgstr ""
|
314 |
|
315 |
# @ woocommerce-delivery-notes
|
316 |
+
#: ../includes/class-wcdn-settings.php:336 ../includes/wcdn-template-functions.php:254
|
317 |
+
msgid "Email"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: ../includes/class-wcdn-settings.php:343
|
321 |
+
msgid "Show print link in customer emails"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: ../includes/class-wcdn-settings.php:347
|
325 |
+
msgid ""
|
326 |
+
"This includes the emails for a new, processing and completed order. On top of that the customer invoice email "
|
327 |
+
"also includes the link."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
# @ woocommerce-delivery-notes
|
331 |
+
#: ../includes/class-wcdn-settings.php:354
|
332 |
msgid "Order Numbering"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../includes/class-wcdn-settings.php:359
|
336 |
+
msgid "Invoice Numbering"
|
|
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-wcdn-settings.php:367
|
340 |
msgid "Create invoice numbers"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../includes/class-wcdn-settings.php:374
|
344 |
msgid "Invoice Number Start"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../includes/class-wcdn-settings.php:381
|
348 |
msgid "Start the numbering at the specified number."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../includes/class-wcdn-settings.php:383
|
352 |
msgid "Use only integers."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../includes/class-wcdn-settings.php:389
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
msgid "Invoice Number Prefix"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../includes/class-wcdn-settings.php:396
|
360 |
msgid "This text will be prepended to the invoice number."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../includes/class-wcdn-settings.php:398
|
364 |
msgid "Leave blank to not add a prefix."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-wcdn-settings.php:404
|
368 |
msgid "Invoice Number Suffix"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-wcdn-settings.php:411
|
372 |
msgid "This text will be appended to the invoice number."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../includes/class-wcdn-settings.php:413
|
376 |
msgid "Leave blank to not add a suffix."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../includes/class-wcdn-settings.php:419
|
380 |
+
msgid "Invoice Number Counter"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: ../includes/class-wcdn-settings.php:428
|
384 |
+
msgid "Reset Counter …"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: ../includes/class-wcdn-settings.php:434
|
388 |
msgid "Sequential Order Number"
|
389 |
msgstr ""
|
390 |
|
391 |
# @ woocommerce-delivery-notes
|
392 |
+
#: ../includes/class-wcdn-settings.php:439
|
393 |
msgid "Sequential numbering is enabled."
|
394 |
msgstr ""
|
395 |
|
396 |
# @ woocommerce-delivery-notes
|
397 |
+
#: ../includes/class-wcdn-settings.php:441
|
398 |
#, php-format
|
399 |
+
msgid "Install and activate the free <a href=\"%s\">WooCommerce Sequential Order Numbers</a> Plugin."
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: ../includes/class-wcdn-theme.php:106
|
403 |
+
msgid "Print your order"
|
|
|
|
|
|
|
|
|
|
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: ../includes/class-wcdn-theme.php:112
|
407 |
+
msgid "Print:"
|
|
|
|
|
|
|
|
|
|
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../includes/class-wcdn-theme.php:112
|
411 |
+
msgid "Open print view in browser"
|
412 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
|
414 |
# @ woocommerce-delivery-notes
|
415 |
+
#: ../includes/class-wcdn-writepanel.php:214
|
416 |
msgid "Print now"
|
417 |
msgstr ""
|
418 |
|
419 |
# @ woocommerce-delivery-notes
|
420 |
+
#: ../includes/class-wcdn-writepanel.php:228
|
421 |
msgid "Order Printing"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../includes/class-wcdn-writepanel.php:256
|
425 |
msgid "Invoice number: "
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../includes/class-wcdn-writepanel.php:257
|
429 |
+
msgid "Invoice date: "
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../includes/wcdn-template-functions.php:232
|
433 |
+
msgid "Invoice Number"
|
|
|
434 |
msgstr ""
|
435 |
|
436 |
# @ woocommerce-delivery-notes
|
437 |
+
#: ../includes/wcdn-template-functions.php:238
|
438 |
msgid "Order Number"
|
439 |
msgstr ""
|
440 |
|
441 |
# @ woocommerce-delivery-notes
|
442 |
+
#: ../includes/wcdn-template-functions.php:243
|
443 |
msgid "Order Date"
|
444 |
msgstr ""
|
445 |
|
446 |
# @ woocommerce-delivery-notes
|
447 |
+
#: ../includes/wcdn-template-functions.php:248
|
448 |
msgid "Payment Method"
|
449 |
msgstr ""
|
450 |
|
451 |
# @ woocommerce-delivery-notes
|
452 |
+
#: ../includes/wcdn-template-functions.php:261
|
|
|
|
|
|
|
|
|
|
|
453 |
msgid "Telephone"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../includes/wcdn-template-functions.php:294
|
457 |
msgid "SKU:"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../includes/wcdn-template-functions.php:380 ../includes/wcdn-template-functions.php:384
|
461 |
+
#, php-format
|
462 |
+
msgid "(Includes %s)"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: ../includes/wcdn-template-functions.php:400
|
466 |
+
msgid "Refund"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: ../includes/wcdn-template-functions.php:412
|
470 |
+
msgid "Order Subtotal"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
# @ woocommerce-delivery-notes
|
474 |
#: ../templates/print-order/print-content.php:28
|
475 |
msgid "Billing Address"
|
476 |
msgstr ""
|
477 |
|
478 |
# @ woocommerce-delivery-notes
|
479 |
+
#: ../templates/print-order/print-content.php:31 ../templates/print-order/print-content.php:40
|
|
|
480 |
msgid "N/A"
|
481 |
msgstr ""
|
482 |
|
483 |
# @ woocommerce-delivery-notes
|
484 |
+
#: ../templates/print-order/print-content.php:37
|
485 |
msgid "Shipping Address"
|
486 |
msgstr ""
|
487 |
|
488 |
# @ woocommerce-delivery-notes
|
489 |
+
#: ../templates/print-order/print-content.php:70
|
490 |
msgid "Product"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../templates/print-order/print-content.php:71
|
494 |
+
msgid "Price"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: ../templates/print-order/print-content.php:72
|
498 |
msgid "Quantity"
|
499 |
msgstr ""
|
500 |
|
501 |
# @ woocommerce-delivery-notes
|
502 |
+
#: ../templates/print-order/print-content.php:73
|
503 |
msgid "Total"
|
504 |
msgstr ""
|
505 |
|
506 |
# @ woocommerce-delivery-notes
|
507 |
+
#: ../templates/print-order/print-content.php:97
|
508 |
msgid "Download:"
|
509 |
msgstr ""
|
510 |
|
511 |
# @ woocommerce-delivery-notes
|
512 |
+
#: ../templates/print-order/print-content.php:98
|
513 |
#, php-format
|
514 |
msgid "%s Files"
|
515 |
msgstr ""
|
516 |
|
517 |
# @ woocommerce-delivery-notes
|
518 |
+
#: ../templates/print-order/print-content.php:147
|
519 |
msgid "Customer Note"
|
520 |
msgstr ""
|
521 |
|
522 |
# @ woocommerce-delivery-notes
|
523 |
+
#: ../woocommerce-delivery-notes.php:181
|
524 |
msgid "Go to the settings page"
|
525 |
msgstr ""
|
526 |
|
527 |
# @ woocommerce-delivery-notes
|
528 |
+
#: ../woocommerce-delivery-notes.php:181
|
529 |
msgid "Settings"
|
530 |
msgstr ""
|
readme.md
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
# WooCommerce Print Invoice & Delivery Note
|
2 |
|
3 |
This is the WooCommerce Print Invoice & Delivery Note repository on GitHub. Here you can browse the source, look at open issues and keep track of development.
|
@@ -16,6 +18,8 @@ To correct the issue by your own, you can fork the repository and send a pull re
|
|
16 |
|
17 |
Contribute and update your translations with GitHub. Make sure you have a [GitHub](https://github.com/signup/free) account. Then [fork](https://github.com/piffpaffpuff/woocommerce-delivery-notes/fork) the code, add your translation and send a pull request.
|
18 |
|
19 |
-
|
|
|
|
|
20 |
|
21 |
-
|
1 |
+
> Announcement: The development of this plugin has been ceased. Thanks to everybody for their support throughout the years. Please contact me on GitHub if you want to take over the project.
|
2 |
+
|
3 |
# WooCommerce Print Invoice & Delivery Note
|
4 |
|
5 |
This is the WooCommerce Print Invoice & Delivery Note repository on GitHub. Here you can browse the source, look at open issues and keep track of development.
|
18 |
|
19 |
Contribute and update your translations with GitHub. Make sure you have a [GitHub](https://github.com/signup/free) account. Then [fork](https://github.com/piffpaffpuff/woocommerce-delivery-notes/fork) the code, add your translation and send a pull request.
|
20 |
|
21 |
+
Read the [WordPress Codex](http://codex.wordpress.org/Translating_WordPress) to learn how to translate a plugin.
|
22 |
+
|
23 |
+
## Tip
|
24 |
|
25 |
+
The GitHub App for [Mac](https://mac.github.com) and [Windows](https://windows.github.com) helps managing your forked repository.
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Contributors: piffpaffpuff
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=K2JKYEASQBBSQ&lc=US&item_name=WooCommerce%20Print%20Invoice%20%26%20Delivery%20Note&item_number=WCDN&amount=20%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest
|
5 |
Tags: delivery note, packing slip, invoice, delivery, shipping, print, order, woocommerce, woothemes, shop
|
6 |
-
Requires at least:
|
7 |
-
Tested up to:
|
8 |
Stable tag: trunk
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
@@ -13,21 +13,31 @@ Print invoices and delivery notes for WooCommerce orders.
|
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
The plugin adds a new side panel on the order page to allow shop administrators to print out the invoice or delivery note. Registered customers can also can also print their order with a button that is added to the order screen.
|
19 |
|
20 |
= Features =
|
21 |
|
22 |
* Print invoices and delivery notes via the side panel on the "Order Edit" page
|
23 |
* Quickly print invoices and delivery notes on the "Orders" page
|
24 |
* Bulk print invoices and delivery notes
|
25 |
-
*
|
|
|
26 |
* Add a company address, a logo and many other information to the invoice and delivery note
|
27 |
-
* Intelligent invoice and delivery note template system with hooks and functions.php support
|
28 |
* Completely customize the invoice and delivery note template
|
29 |
* Simple invoice numbering
|
30 |
* Supports sequential order numbers
|
|
|
|
|
|
|
31 |
|
32 |
= Support =
|
33 |
|
@@ -39,14 +49,24 @@ If you have a patch, or stumbled upon an issue with the source code that isn't a
|
|
39 |
|
40 |
= Translating =
|
41 |
|
42 |
-
When your language is missing you can contribute a translation to the [GitHub repository](https://github.com/piffpaffpuff/woocommerce-delivery-notes)
|
43 |
|
44 |
== Installation ==
|
45 |
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
== Frequently Asked Questions ==
|
52 |
|
@@ -75,7 +95,7 @@ You can change the font with CSS. Use the `wcdn_head` hook and then write your o
|
|
75 |
An example that changes the font and makes the addresses very large. Paste the code in the `functions.php` file of your theme:
|
76 |
|
77 |
`
|
78 |
-
function
|
79 |
?>
|
80 |
<style>
|
81 |
#page {
|
@@ -90,7 +110,7 @@ function my_serif_font_and_large_address() {
|
|
90 |
</style>
|
91 |
<?php
|
92 |
}
|
93 |
-
add_action( 'wcdn_head', '
|
94 |
`
|
95 |
|
96 |
= Can I hide the prices on the delivery note? =
|
@@ -100,21 +120,61 @@ Sure, the easiest way is to hide them with some CSS that is hooked in with `wcdn
|
|
100 |
An example that hides the whole price column and the totals. Paste the code in the `functions.php` file of your theme:
|
101 |
|
102 |
`
|
103 |
-
function
|
104 |
?>
|
105 |
<style>
|
106 |
-
.delivery-note .head-price
|
107 |
-
.delivery-note .
|
|
|
|
|
108 |
.delivery-note .order-items tfoot {
|
109 |
display: none;
|
110 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
.delivery-note .order-items tbody tr:last-child {
|
112 |
border-bottom: 0.24em solid black;
|
113 |
}
|
114 |
</style>
|
115 |
<?php
|
116 |
}
|
117 |
-
add_action( 'wcdn_head', '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
`
|
119 |
|
120 |
= Is it possible to remove a field from the order info section? =
|
@@ -124,11 +184,11 @@ Yes, use the `wcdn_order_info_fields` filter hook. It returns all the fields as
|
|
124 |
An example that removes the 'Payment Method' field. Paste the code in the `functions.php` file of your theme:
|
125 |
|
126 |
`
|
127 |
-
function
|
128 |
unset( $fields['payment_method'] );
|
129 |
return $fields;
|
130 |
}
|
131 |
-
add_filter( 'wcdn_order_info_fields', '
|
132 |
`
|
133 |
|
134 |
= How can I add some more fields to the order info section? =
|
@@ -138,7 +198,7 @@ Use the `wcdn_order_info_fields` filter hook. It returns all the fields as array
|
|
138 |
An example that adds a 'VAT' and 'Customer Number' field to the end of the list. Paste the code in the `functions.php` file of your theme:
|
139 |
|
140 |
`
|
141 |
-
function
|
142 |
$new_fields = array();
|
143 |
|
144 |
if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) {
|
@@ -157,7 +217,7 @@ function my_custom_order_fields( $fields, $order ) {
|
|
157 |
|
158 |
return array_merge( $fields, $new_fields );
|
159 |
}
|
160 |
-
add_filter( 'wcdn_order_info_fields', '
|
161 |
`
|
162 |
|
163 |
= What about the product image, can I add it to the invoice and delivery note? =
|
@@ -167,12 +227,12 @@ Yes, use the `wcdn_order_item_before` action hook. It allows you to add html con
|
|
167 |
An example that adds a 40px large product image. Paste the code in the `functions.php` file of your theme:
|
168 |
|
169 |
`
|
170 |
-
function
|
171 |
if( isset( $product->id ) && has_post_thumbnail( $product->id ) ) {
|
172 |
echo get_the_post_thumbnail( $product->id, array( 40, 40 ) );
|
173 |
}
|
174 |
}
|
175 |
-
add_action( 'wcdn_order_item_before', '
|
176 |
`
|
177 |
|
178 |
= How can I differentiate between invoice and delivery note through CSS? =
|
@@ -221,7 +281,7 @@ The plugin uses the exact same content as WooCommerce. If the content isn't avai
|
|
221 |
|
222 |
Upload your language file to `/wp-content/languages/plugins/` (create this folder if it doesn't exist). WordPress will then load the language. Make sure you use the same locale as in your configuration and the correct plugin locale i.e. `woocommerce-delivery-notes-it_IT.mo/.po`.
|
223 |
|
224 |
-
Please [contribute your translation](
|
225 |
|
226 |
== Screenshots ==
|
227 |
|
@@ -234,6 +294,113 @@ Please [contribute your translation](http://translate.wpautobahn.com/projects/wo
|
|
234 |
|
235 |
== Changelog ==
|
236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
= 3.1.1 =
|
238 |
|
239 |
* Fix the hidden loading indicator on order edit screen
|
@@ -244,8 +411,8 @@ Please [contribute your translation](http://translate.wpautobahn.com/projects/wo
|
|
244 |
|
245 |
**Note: Template changes had to be made. Please control your template after the update in case you applied some custom styling.**
|
246 |
|
247 |
-
* By popular demand the 'Quantity' column is back in the template
|
248 |
-
* Basic invoice numbering
|
249 |
|
250 |
= 3.0.6 =
|
251 |
|
@@ -276,12 +443,10 @@ Please [contribute your translation](http://translate.wpautobahn.com/projects/wo
|
|
276 |
|
277 |
== Upgrade Notice ==
|
278 |
|
279 |
-
=
|
280 |
|
281 |
-
|
282 |
|
283 |
-
=
|
284 |
|
285 |
-
|
286 |
-
* Prior print templates aren't compatible. Read the [FAQ](http://wordpress.org/plugins/woocommerce-delivery-notes/faq/) to customize the new template.
|
287 |
-
* Translations aren't updated, except German.
|
3 |
Contributors: piffpaffpuff
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=K2JKYEASQBBSQ&lc=US&item_name=WooCommerce%20Print%20Invoice%20%26%20Delivery%20Note&item_number=WCDN&amount=20%2e00¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHostedGuest
|
5 |
Tags: delivery note, packing slip, invoice, delivery, shipping, print, order, woocommerce, woothemes, shop
|
6 |
+
Requires at least: 4.0
|
7 |
+
Tested up to: 4.2.1
|
8 |
Stable tag: trunk
|
9 |
License: GPLv3 or later
|
10 |
License URI: http://www.opensource.org/licenses/gpl-license.php
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
= Announcement: The development of this plugin has been ceased. Thanks to everybody for their support throughout the years. Please contact me on GitHub if you want to take over the project. =
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
You can print out invoices and delivery notes for the [WooCommerce](http://wordpress.org/plugins/woocommerce/) orders. You can also edit the Company/Shop name, Company/Shop postal address and also add personal notes, conditions/policies (like a refund policy) and a footer imprint.
|
21 |
+
|
22 |
+
The plugin adds a new side panel on the order page to allow shop administrators to print out the invoice or delivery note. Registered customers can also print their order with a button that is added to the order screen.
|
23 |
+
|
24 |
+
Check out [WooCommerce Print Invoice & Delivery Note Pro](#) for more advanced features.
|
25 |
|
|
|
26 |
|
27 |
= Features =
|
28 |
|
29 |
* Print invoices and delivery notes via the side panel on the "Order Edit" page
|
30 |
* Quickly print invoices and delivery notes on the "Orders" page
|
31 |
* Bulk print invoices and delivery notes
|
32 |
+
* Allow customers to print the order in the "My Account" page
|
33 |
+
* Include a print link in customer E-Mails
|
34 |
* Add a company address, a logo and many other information to the invoice and delivery note
|
|
|
35 |
* Completely customize the invoice and delivery note template
|
36 |
* Simple invoice numbering
|
37 |
* Supports sequential order numbers
|
38 |
+
* Supports the WooCommerce refund system
|
39 |
+
* Intelligent invoice and delivery note template system with hooks and functions.php support
|
40 |
+
* Get even more features with [WooCommerce Print Invoice & Delivery Note Pro](#)
|
41 |
|
42 |
= Support =
|
43 |
|
49 |
|
50 |
= Translating =
|
51 |
|
52 |
+
When your language is missing you can contribute a translation to the [GitHub repository](https://github.com/piffpaffpuff/woocommerce-delivery-notes#translating).
|
53 |
|
54 |
== Installation ==
|
55 |
|
56 |
+
= Minimum Requirements =
|
57 |
+
|
58 |
+
* WooCommerce 2.2 or later
|
59 |
+
* WordPress 4.0 or later
|
60 |
+
|
61 |
+
= Automatic installation =
|
62 |
+
|
63 |
+
Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.
|
64 |
+
|
65 |
+
In the search field type “WooCommerce Print Invoice” and click Search Plugins. Once you’ve found the plugin you can view details about it such as the the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.
|
66 |
+
|
67 |
+
= Manual installation =
|
68 |
+
|
69 |
+
The manual installation method involves downloading the plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains [instructions on how to do this here](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
|
70 |
|
71 |
== Frequently Asked Questions ==
|
72 |
|
95 |
An example that changes the font and makes the addresses very large. Paste the code in the `functions.php` file of your theme:
|
96 |
|
97 |
`
|
98 |
+
function example_serif_font_and_large_address() {
|
99 |
?>
|
100 |
<style>
|
101 |
#page {
|
110 |
</style>
|
111 |
<?php
|
112 |
}
|
113 |
+
add_action( 'wcdn_head', 'example_serif_font_and_large_address', 20 );
|
114 |
`
|
115 |
|
116 |
= Can I hide the prices on the delivery note? =
|
120 |
An example that hides the whole price column and the totals. Paste the code in the `functions.php` file of your theme:
|
121 |
|
122 |
`
|
123 |
+
function example_price_free_delivery_note() {
|
124 |
?>
|
125 |
<style>
|
126 |
+
.delivery-note .head-item-price,
|
127 |
+
.delivery-note .head-price,
|
128 |
+
.delivery-note .product-item-price,
|
129 |
+
.delivery-note .product-price,
|
130 |
.delivery-note .order-items tfoot {
|
131 |
display: none;
|
132 |
}
|
133 |
+
.delivery-note .head-name,
|
134 |
+
.delivery-note .product-name {
|
135 |
+
width: 50%;
|
136 |
+
}
|
137 |
+
.delivery-note .head-quantity,
|
138 |
+
.delivery-note .product-quantity {
|
139 |
+
width: 50%;
|
140 |
+
}
|
141 |
.delivery-note .order-items tbody tr:last-child {
|
142 |
border-bottom: 0.24em solid black;
|
143 |
}
|
144 |
</style>
|
145 |
<?php
|
146 |
}
|
147 |
+
add_action( 'wcdn_head', 'example_price_free_delivery_note', 20 );
|
148 |
+
`
|
149 |
+
|
150 |
+
= I use the receipt in my POS, can I style it? =
|
151 |
+
|
152 |
+
Sure, you can style with CSS, very much the same way as the delivery note or invoice.
|
153 |
+
|
154 |
+
An example that hides the addresses. Paste the code in the `functions.php` file of your theme:
|
155 |
+
|
156 |
+
`
|
157 |
+
function example_address_free_receipt() {
|
158 |
+
?>
|
159 |
+
<style>
|
160 |
+
.content {
|
161 |
+
padding: 4% 6%;
|
162 |
+
}
|
163 |
+
.company-address,
|
164 |
+
.order-addresses {
|
165 |
+
display: none;
|
166 |
+
}
|
167 |
+
.order-info li span {
|
168 |
+
display: inline-block;
|
169 |
+
float: right;
|
170 |
+
}
|
171 |
+
.order-thanks {
|
172 |
+
margin-left: inherit;
|
173 |
+
}
|
174 |
+
</style>
|
175 |
+
<?php
|
176 |
+
}
|
177 |
+
add_action( 'wcdn_head', 'example_address_free_receipt', 20 );
|
178 |
`
|
179 |
|
180 |
= Is it possible to remove a field from the order info section? =
|
184 |
An example that removes the 'Payment Method' field. Paste the code in the `functions.php` file of your theme:
|
185 |
|
186 |
`
|
187 |
+
function example_removed_payment_method( $fields ) {
|
188 |
unset( $fields['payment_method'] );
|
189 |
return $fields;
|
190 |
}
|
191 |
+
add_filter( 'wcdn_order_info_fields', 'example_removed_payment_method' );
|
192 |
`
|
193 |
|
194 |
= How can I add some more fields to the order info section? =
|
198 |
An example that adds a 'VAT' and 'Customer Number' field to the end of the list. Paste the code in the `functions.php` file of your theme:
|
199 |
|
200 |
`
|
201 |
+
function example_custom_order_fields( $fields, $order ) {
|
202 |
$new_fields = array();
|
203 |
|
204 |
if( get_post_meta( $order->id, 'your_meta_field_name', true ) ) {
|
217 |
|
218 |
return array_merge( $fields, $new_fields );
|
219 |
}
|
220 |
+
add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields', 10, 2 );
|
221 |
`
|
222 |
|
223 |
= What about the product image, can I add it to the invoice and delivery note? =
|
227 |
An example that adds a 40px large product image. Paste the code in the `functions.php` file of your theme:
|
228 |
|
229 |
`
|
230 |
+
function example_product_image( $product ) {
|
231 |
if( isset( $product->id ) && has_post_thumbnail( $product->id ) ) {
|
232 |
echo get_the_post_thumbnail( $product->id, array( 40, 40 ) );
|
233 |
}
|
234 |
}
|
235 |
+
add_action( 'wcdn_order_item_before', 'example_product_image' );
|
236 |
`
|
237 |
|
238 |
= How can I differentiate between invoice and delivery note through CSS? =
|
281 |
|
282 |
Upload your language file to `/wp-content/languages/plugins/` (create this folder if it doesn't exist). WordPress will then load the language. Make sure you use the same locale as in your configuration and the correct plugin locale i.e. `woocommerce-delivery-notes-it_IT.mo/.po`.
|
283 |
|
284 |
+
Please [contribute your translation](https://github.com/piffpaffpuff/woocommerce-delivery-notes#translating) to include it in the distribution.
|
285 |
|
286 |
== Screenshots ==
|
287 |
|
294 |
|
295 |
== Changelog ==
|
296 |
|
297 |
+
= Minimum Requirements: WooCommerce 2.2 =
|
298 |
+
|
299 |
+
= 4.2.0 =
|
300 |
+
|
301 |
+
* Tweak - Refactored settings screen
|
302 |
+
* Fix - Compatibility with latest WooCommerce
|
303 |
+
* Fix - Print preview loading indicators
|
304 |
+
* Fix - Icon font embed
|
305 |
+
* Dev - Load only one instance of the plugin (singleton class)
|
306 |
+
* Dev - New settings hooks that work better with WooCommerce
|
307 |
+
|
308 |
+
= 4.1.6 =
|
309 |
+
|
310 |
+
* Fix - More flexible protocol checks of email permalinks
|
311 |
+
|
312 |
+
= 4.1.5 =
|
313 |
+
|
314 |
+
* Fix - Check protocol of email permalinks
|
315 |
+
* Fix - Show preview links on the settings page
|
316 |
+
* Fix - Consistent privileges for users with admin access
|
317 |
+
|
318 |
+
= 4.1.4 =
|
319 |
+
|
320 |
+
* Fix - Double check the bulk action type to improve bulk order deletion
|
321 |
+
* Fix - Default arguments for the E-Mail hook
|
322 |
+
|
323 |
+
= 4.1.3 =
|
324 |
+
|
325 |
+
* Feature - Better support for WooCommerce 2.3 refunds
|
326 |
+
|
327 |
+
= 4.1.2 =
|
328 |
+
|
329 |
+
* Fix - For a fatal error caused by an unknown property in the plugin update system
|
330 |
+
* Fix - Where the 'Types' options didn't stick in some cases
|
331 |
+
|
332 |
+
= 4.1.1 =
|
333 |
+
|
334 |
+
* Fix - For a fatal error caused by an unknown property in the plugin update system
|
335 |
+
|
336 |
+
= 4.1 =
|
337 |
+
|
338 |
+
* Feature - Support for WooCommerce 2.2 refunds
|
339 |
+
* Feature - Option to add a print link to customer emails
|
340 |
+
* Tweak - Code improvements and some new hooks
|
341 |
+
|
342 |
+
= 4.0.2 =
|
343 |
+
|
344 |
+
* Tweak - Second attempt for better spacing between price columns
|
345 |
+
|
346 |
+
= 4.0.1 =
|
347 |
+
|
348 |
+
* Tweak - Better spacing between price columns
|
349 |
+
|
350 |
+
= 4.0 =
|
351 |
+
|
352 |
+
* The print page now also includes the item price
|
353 |
+
* Customize titles with your own translation file (woocommerce-delivery-notes-xx_XX.mo). Place it in /wp-content/languages/plugins to override the plugin language.
|
354 |
+
|
355 |
+
= 3.4.2 =
|
356 |
+
|
357 |
+
* Remove some left over developer comments from the print page
|
358 |
+
|
359 |
+
= 3.4.1 =
|
360 |
+
|
361 |
+
* Fix an issue where a blank page was printed in WooCommerce 2.1
|
362 |
+
|
363 |
+
= 3.4 =
|
364 |
+
|
365 |
+
**Note: The template was modified. Please check your print-content.php if you copied it to your theme directory.**
|
366 |
+
|
367 |
+
* Improved WooCommerce 2.2 compatibility
|
368 |
+
* Fix an issue were shipping and billing addresses did not respect the WooCommerce settings
|
369 |
+
* Better way to reset the invoice number counter
|
370 |
+
|
371 |
+
= 3.3.1 =
|
372 |
+
|
373 |
+
* Small code improvements
|
374 |
+
|
375 |
+
= 3.3 =
|
376 |
+
|
377 |
+
* WordPress 4.0 and WooCommerce 2.2 compatibility
|
378 |
+
* Fix an issue where the print buttons were hidden after the update
|
379 |
+
|
380 |
+
= 3.2.3 =
|
381 |
+
|
382 |
+
* WordPress 4.0 and WooCommerce 2.2 compatibility
|
383 |
+
* Template: Improved the CSS to generate less blank pages
|
384 |
+
* Fixed the settings link on the Plugins page
|
385 |
+
|
386 |
+
= 3.2.2 =
|
387 |
+
|
388 |
+
* Some language upadates. Old outdated languages were removed. Please [contribute your language](https://github.com/piffpaffpuff/woocommerce-delivery-notes#translating)!
|
389 |
+
* Fix a print issue with not completed orders.
|
390 |
+
* Tweaked JavaScript for the theme print button to gracefully handle non-modern browsers.
|
391 |
+
|
392 |
+
= 3.2.1 =
|
393 |
+
|
394 |
+
* New template function for the invoice date
|
395 |
+
* Fix invoice number display logic
|
396 |
+
* Fix slashes in the options fields
|
397 |
+
|
398 |
+
= 3.2 =
|
399 |
+
|
400 |
+
* Improved theme print button: Print the invoice only for completed orders and a receipt for all other order states. This can be changed via 'wcdn_theme_print_button_template_type' filter hook.
|
401 |
+
* Fix the print button on the "Thank You" page for guest checkouts
|
402 |
+
* Added CSS classes to the admin side panel
|
403 |
+
|
404 |
= 3.1.1 =
|
405 |
|
406 |
* Fix the hidden loading indicator on order edit screen
|
411 |
|
412 |
**Note: Template changes had to be made. Please control your template after the update in case you applied some custom styling.**
|
413 |
|
414 |
+
* By popular demand the 'Quantity' column is back in the template
|
415 |
+
* Basic invoice numbering
|
416 |
|
417 |
= 3.0.6 =
|
418 |
|
443 |
|
444 |
== Upgrade Notice ==
|
445 |
|
446 |
+
= 4.2.0 =
|
447 |
|
448 |
+
4.2.0 requires at least WooCommerce 2.2.
|
449 |
|
450 |
+
= 4.1.5 =
|
451 |
|
452 |
+
4.1.5 requires at least WooCommerce 2.2.
|
|
|
|
templates/print-order/print-content.php
CHANGED
@@ -23,29 +23,25 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
23 |
</div><!-- .order-branding -->
|
24 |
|
25 |
|
26 |
-
<div class="order-addresses">
|
27 |
<div class="billing-address">
|
28 |
<h3><?php _e( 'Billing Address', 'woocommerce-delivery-notes' ); ?></h3>
|
29 |
<address>
|
30 |
|
31 |
-
<?php if( !$order->get_formatted_billing_address() ) _e( 'N/A', 'woocommerce' ); else echo apply_filters( '
|
32 |
|
33 |
</address>
|
34 |
</div>
|
35 |
|
36 |
-
|
37 |
-
|
38 |
-
<
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
</div>
|
46 |
-
|
47 |
-
<?php endif; ?>
|
48 |
-
|
49 |
<?php do_action( 'wcdn_after_addresses', $order ); ?>
|
50 |
</div><!-- .order-addresses -->
|
51 |
|
@@ -72,6 +68,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
72 |
<thead>
|
73 |
<tr>
|
74 |
<th class="head-name"><span><?php _e('Product', 'woocommerce-delivery-notes'); ?></span></th>
|
|
|
75 |
<th class="head-quantity"><span><?php _e('Quantity', 'woocommerce-delivery-notes'); ?></span></th>
|
76 |
<th class="head-price"><span><?php _e('Total', 'woocommerce-delivery-notes'); ?></span></th>
|
77 |
</tr>
|
@@ -113,6 +110,9 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
113 |
<?php endforeach; ?>
|
114 |
</dl>
|
115 |
</td>
|
|
|
|
|
|
|
116 |
<td class="product-quantity">
|
117 |
<span><?php echo apply_filters( 'wcdn_order_item_quantity', $item['qty'], $item ); ?></span>
|
118 |
</td>
|
@@ -124,16 +124,15 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
124 |
<?php endif; ?>
|
125 |
</tbody>
|
126 |
|
127 |
-
<tfoot>
|
128 |
<?php if( $totals = $order->get_order_item_totals() ) : ?>
|
129 |
-
<?php foreach
|
130 |
-
|
131 |
-
<
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
<?php endforeach; ?>
|
138 |
<?php endif; ?>
|
139 |
</tfoot>
|
23 |
</div><!-- .order-branding -->
|
24 |
|
25 |
|
26 |
+
<div class="order-addresses<?php if( !wcdn_has_shipping_address( $order ) ) : ?> no-shipping-address<?php endif; ?>">
|
27 |
<div class="billing-address">
|
28 |
<h3><?php _e( 'Billing Address', 'woocommerce-delivery-notes' ); ?></h3>
|
29 |
<address>
|
30 |
|
31 |
+
<?php if( !$order->get_formatted_billing_address() ) _e( 'N/A', 'woocommerce-delivery-notes' ); else echo apply_filters( 'wcdn_address_billing', $order->get_formatted_billing_address(), $order ); ?>
|
32 |
|
33 |
</address>
|
34 |
</div>
|
35 |
|
36 |
+
<div class="shipping-address">
|
37 |
+
<h3><?php _e( 'Shipping Address', 'woocommerce-delivery-notes' ); ?></h3>
|
38 |
+
<address>
|
39 |
+
|
40 |
+
<?php if( !$order->get_formatted_shipping_address() ) _e( 'N/A', 'woocommerce-delivery-notes' ); else echo apply_filters( 'wcdn_address_shipping', $order->get_formatted_shipping_address(), $order ); ?>
|
41 |
+
|
42 |
+
</address>
|
43 |
+
</div>
|
44 |
+
|
|
|
|
|
|
|
|
|
45 |
<?php do_action( 'wcdn_after_addresses', $order ); ?>
|
46 |
</div><!-- .order-addresses -->
|
47 |
|
68 |
<thead>
|
69 |
<tr>
|
70 |
<th class="head-name"><span><?php _e('Product', 'woocommerce-delivery-notes'); ?></span></th>
|
71 |
+
<th class="head-item-price"><span><?php _e('Price', 'woocommerce-delivery-notes'); ?></span></th>
|
72 |
<th class="head-quantity"><span><?php _e('Quantity', 'woocommerce-delivery-notes'); ?></span></th>
|
73 |
<th class="head-price"><span><?php _e('Total', 'woocommerce-delivery-notes'); ?></span></th>
|
74 |
</tr>
|
110 |
<?php endforeach; ?>
|
111 |
</dl>
|
112 |
</td>
|
113 |
+
<td class="product-item-price">
|
114 |
+
<span><?php echo wcdn_get_formatted_item_price( $order, $item ); ?></span>
|
115 |
+
</td>
|
116 |
<td class="product-quantity">
|
117 |
<span><?php echo apply_filters( 'wcdn_order_item_quantity', $item['qty'], $item ); ?></span>
|
118 |
</td>
|
124 |
<?php endif; ?>
|
125 |
</tbody>
|
126 |
|
127 |
+
<tfoot>
|
128 |
<?php if( $totals = $order->get_order_item_totals() ) : ?>
|
129 |
+
<?php foreach( $totals as $total ) : ?>
|
130 |
+
<tr>
|
131 |
+
<td class="total-name"><span><?php echo $total['label']; ?></span></td>
|
132 |
+
<td class="total-item-price"></td>
|
133 |
+
<td class="total-quantity"></td>
|
134 |
+
<td class="total-price"><span><?php echo $total['value']; ?></span></td>
|
135 |
+
</tr>
|
|
|
136 |
<?php endforeach; ?>
|
137 |
<?php endif; ?>
|
138 |
</tfoot>
|
templates/print-order/print-order.php
CHANGED
@@ -10,6 +10,11 @@
|
|
10 |
if ( !defined( 'ABSPATH' ) ) exit;
|
11 |
?>
|
12 |
|
|
|
|
|
|
|
|
|
|
|
13 |
<?php wcdn_get_template_content( 'print-header.php' ); ?>
|
14 |
|
15 |
<?php
|
@@ -28,7 +33,7 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
28 |
|
29 |
<article class="content">
|
30 |
|
31 |
-
<?php
|
32 |
|
33 |
</article><!-- .content -->
|
34 |
|
@@ -46,4 +51,9 @@ if ( !defined( 'ABSPATH' ) ) exit;
|
|
46 |
do_action( 'wcdn_after_content' );
|
47 |
?>
|
48 |
|
49 |
-
<?php wcdn_get_template_content( 'print-footer.php' ); ?>
|
|
|
|
|
|
|
|
|
|
10 |
if ( !defined( 'ABSPATH' ) ) exit;
|
11 |
?>
|
12 |
|
13 |
+
<?php
|
14 |
+
// wcdn_before_template hook
|
15 |
+
do_action( 'wcdn_before_template' );
|
16 |
+
?>
|
17 |
+
|
18 |
<?php wcdn_get_template_content( 'print-header.php' ); ?>
|
19 |
|
20 |
<?php
|
33 |
|
34 |
<article class="content">
|
35 |
|
36 |
+
<?php do_action( 'wcdn_loop_content', $order, wcdn_get_template_type() ); ?>
|
37 |
|
38 |
</article><!-- .content -->
|
39 |
|
51 |
do_action( 'wcdn_after_content' );
|
52 |
?>
|
53 |
|
54 |
+
<?php wcdn_get_template_content( 'print-footer.php' ); ?>
|
55 |
+
|
56 |
+
<?php
|
57 |
+
// wcdn_after_template hook
|
58 |
+
do_action( 'wcdn_after_template' );
|
59 |
+
?>
|
templates/print-order/style.css
CHANGED
@@ -82,7 +82,7 @@ tr {
|
|
82 |
|
83 |
td,
|
84 |
th {
|
85 |
-
padding: 0.375em 0;
|
86 |
vertical-align: top;
|
87 |
}
|
88 |
|
@@ -98,6 +98,10 @@ th {
|
|
98 |
padding-bottom: 1.25em;
|
99 |
}
|
100 |
|
|
|
|
|
|
|
|
|
101 |
/* Page Margins & Basic Stylings */
|
102 |
#page {
|
103 |
margin-left: auto;
|
@@ -111,7 +115,10 @@ th {
|
|
111 |
padding-right: 10%;
|
112 |
padding-top: 5%;
|
113 |
padding-bottom: 5%;
|
114 |
-
|
|
|
|
|
|
|
115 |
}
|
116 |
|
117 |
h1,
|
@@ -162,10 +169,17 @@ h2 {
|
|
162 |
float: left;
|
163 |
}
|
164 |
|
165 |
-
|
166 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
168 |
}
|
|
|
|
|
|
|
169 |
|
170 |
/* Order Info */
|
171 |
.order-info ul {
|
@@ -178,11 +192,13 @@ h2 {
|
|
178 |
|
179 |
.order-info li strong {
|
180 |
min-width: 18%;
|
|
|
181 |
display: inline-block;
|
182 |
white-space: nowrap;
|
183 |
text-overflow: ellipsis;
|
184 |
overflow: hidden;
|
185 |
margin-bottom: 0;
|
|
|
186 |
}
|
187 |
|
188 |
/* Order Items */
|
@@ -199,14 +215,16 @@ h2 {
|
|
199 |
.order-items .head-quantity,
|
200 |
.order-items .product-quantity,
|
201 |
.order-items .total-quantity,
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
.order-items .head-price,
|
203 |
.order-items .product-price,
|
204 |
.order-items .total-price {
|
205 |
-
width:
|
206 |
-
}
|
207 |
-
|
208 |
-
.order-items tbody .name {
|
209 |
-
font-weight: bold;
|
210 |
}
|
211 |
|
212 |
.order-items p {
|
@@ -234,17 +252,29 @@ h2 {
|
|
234 |
padding-right: 0.2em;
|
235 |
}
|
236 |
|
237 |
-
.order-items
|
238 |
-
|
|
|
|
|
|
|
239 |
}
|
240 |
|
241 |
-
.order-items
|
242 |
-
|
243 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
}
|
245 |
|
246 |
.order-items tfoot tr:last-child .total-price .amount:first-child {
|
247 |
-
font-size: 1.273em;
|
248 |
font-weight: bold;
|
249 |
}
|
250 |
|
@@ -254,8 +284,7 @@ h2 {
|
|
254 |
|
255 |
/* Order Notes */
|
256 |
.order-notes {
|
257 |
-
|
258 |
-
line-height: 150%;
|
259 |
margin-bottom: 6em;
|
260 |
}
|
261 |
|
@@ -288,4 +317,9 @@ h2 {
|
|
288 |
body {
|
289 |
font-size: 8pt;
|
290 |
}
|
|
|
|
|
|
|
|
|
|
|
291 |
}
|
82 |
|
83 |
td,
|
84 |
th {
|
85 |
+
padding: 0.375em 0.75em 0.375em 0;
|
86 |
vertical-align: top;
|
87 |
}
|
88 |
|
98 |
padding-bottom: 1.25em;
|
99 |
}
|
100 |
|
101 |
+
tfoot {
|
102 |
+
display: table-row-group;
|
103 |
+
}
|
104 |
+
|
105 |
/* Page Margins & Basic Stylings */
|
106 |
#page {
|
107 |
margin-left: auto;
|
115 |
padding-right: 10%;
|
116 |
padding-top: 5%;
|
117 |
padding-bottom: 5%;
|
118 |
+
}
|
119 |
+
|
120 |
+
.content + .content {
|
121 |
+
page-break-before: always;
|
122 |
}
|
123 |
|
124 |
h1,
|
169 |
float: left;
|
170 |
}
|
171 |
|
172 |
+
.order-addresses.no-shipping-address .shipping-address {
|
173 |
+
display: none;
|
174 |
+
}
|
175 |
+
|
176 |
+
/*
|
177 |
+
.order-addresses.no-shipping-address .billing-address {
|
178 |
+
margin-left: 50%;
|
179 |
}
|
180 |
+
*/
|
181 |
+
|
182 |
+
/* Switch the addresses for invoices */
|
183 |
|
184 |
/* Order Info */
|
185 |
.order-info ul {
|
192 |
|
193 |
.order-info li strong {
|
194 |
min-width: 18%;
|
195 |
+
font-weight: normal;
|
196 |
display: inline-block;
|
197 |
white-space: nowrap;
|
198 |
text-overflow: ellipsis;
|
199 |
overflow: hidden;
|
200 |
margin-bottom: 0;
|
201 |
+
padding-right: 0.35em;
|
202 |
}
|
203 |
|
204 |
/* Order Items */
|
215 |
.order-items .head-quantity,
|
216 |
.order-items .product-quantity,
|
217 |
.order-items .total-quantity,
|
218 |
+
.order-items .head-item-price,
|
219 |
+
.order-items .product-item-price,
|
220 |
+
.order-items .total-item-price {
|
221 |
+
width: 15%;
|
222 |
+
}
|
223 |
+
|
224 |
.order-items .head-price,
|
225 |
.order-items .product-price,
|
226 |
.order-items .total-price {
|
227 |
+
width: 20%;
|
|
|
|
|
|
|
|
|
228 |
}
|
229 |
|
230 |
.order-items p {
|
252 |
padding-right: 0.2em;
|
253 |
}
|
254 |
|
255 |
+
.order-items .product-name .attachment {
|
256 |
+
display: block;
|
257 |
+
float: left;
|
258 |
+
margin-right: 0.5em;
|
259 |
+
width: 36px;
|
260 |
}
|
261 |
|
262 |
+
.order-items .product-name .attachment img {
|
263 |
+
max-width: 100%;
|
264 |
+
height: auto;
|
265 |
+
}
|
266 |
+
|
267 |
+
.order-items .product-name .name,
|
268 |
+
.order-items .product-name .extras {
|
269 |
+
overflow: hidden;
|
270 |
+
}
|
271 |
+
|
272 |
+
.order-items tfoot tr:first-child,
|
273 |
+
.order-items tfoot tr:last-child {
|
274 |
+
font-weight: bold;
|
275 |
}
|
276 |
|
277 |
.order-items tfoot tr:last-child .total-price .amount:first-child {
|
|
|
278 |
font-weight: bold;
|
279 |
}
|
280 |
|
284 |
|
285 |
/* Order Notes */
|
286 |
.order-notes {
|
287 |
+
margin-top: 3em;
|
|
|
288 |
margin-bottom: 6em;
|
289 |
}
|
290 |
|
317 |
body {
|
318 |
font-size: 8pt;
|
319 |
}
|
320 |
+
|
321 |
+
.content {
|
322 |
+
/* Remove padding to not generate empty follow up pages */
|
323 |
+
padding-bottom: 0;
|
324 |
+
}
|
325 |
}
|
woocommerce-delivery-notes.php
CHANGED
@@ -5,15 +5,15 @@
|
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
-
* Version:
|
9 |
* Author: Triggvy Gunderson
|
10 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
11 |
* License: GPLv3 or later
|
12 |
* License URI: http://www.opensource.org/licenses/gpl-license.php
|
13 |
* Text Domain: woocommerce-delivery-notes
|
14 |
-
* Domain Path: /languages
|
15 |
*
|
16 |
-
* Copyright
|
17 |
*
|
18 |
* This file is part of WooCommerce Print Invoices & Delivery Notes,
|
19 |
* a plugin for WordPress.
|
@@ -33,39 +33,104 @@
|
|
33 |
* along with WordPress. If not, see <http://www.gnu.org/licenses/>.
|
34 |
*/
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
/**
|
37 |
* Base class
|
38 |
*/
|
39 |
if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
40 |
|
41 |
final class WooCommerce_Delivery_Notes {
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
|
|
|
|
|
|
|
44 |
public static $plugin_url;
|
45 |
public static $plugin_path;
|
46 |
public static $plugin_basefile;
|
47 |
public static $plugin_basefile_path;
|
|
|
48 |
|
|
|
|
|
|
|
49 |
public $writepanel;
|
50 |
public $settings;
|
51 |
public $print;
|
52 |
public $theme;
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
/**
|
55 |
* Constructor
|
56 |
*/
|
57 |
public function __construct() {
|
58 |
-
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
self::$plugin_basefile_path = __FILE__;
|
61 |
self::$plugin_basefile = plugin_basename( self::$plugin_basefile_path );
|
62 |
self::$plugin_url = plugin_dir_url( self::$plugin_basefile );
|
63 |
self::$plugin_path = trailingslashit( dirname( self::$plugin_basefile_path ) );
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
|
71 |
/**
|
@@ -87,29 +152,22 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
87 |
include_once( 'includes/wcdn-template-hooks.php' );
|
88 |
}
|
89 |
|
90 |
-
/**
|
91 |
-
* Install the defaults on activation
|
92 |
-
*/
|
93 |
-
public function install() {
|
94 |
-
// Define default settings
|
95 |
-
$option = get_option( self::$plugin_prefix . 'print_order_page_endpoint' );
|
96 |
-
if( !$option ) {
|
97 |
-
update_option( self::$plugin_prefix . 'print_order_page_endpoint', 'print-order' );
|
98 |
-
|
99 |
-
// Flush the rewrite rules when a fresh install
|
100 |
-
set_transient( self::$plugin_prefix . 'flush_rewrite_rules', true );
|
101 |
-
}
|
102 |
-
}
|
103 |
-
|
104 |
/**
|
105 |
* Load the localisation
|
106 |
*/
|
107 |
-
public function localise() {
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
|
111 |
/**
|
112 |
-
*
|
113 |
*/
|
114 |
public function load() {
|
115 |
// WooCommerce activation required
|
@@ -125,23 +183,66 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
125 |
|
126 |
// Load the hooks for the template after the objetcs.
|
127 |
// Like this the template has full access to all objects.
|
128 |
-
|
|
|
129 |
add_action( 'init', array( $this, 'include_template_functions' ) );
|
|
|
|
|
|
|
130 |
}
|
131 |
}
|
132 |
-
|
133 |
/**
|
134 |
-
*
|
135 |
*/
|
136 |
-
public function
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
|
140 |
/**
|
141 |
* Add settings link to plugin page
|
142 |
*/
|
143 |
public function add_settings_link( $links ) {
|
144 |
-
$
|
|
|
145 |
array_unshift( $links, $settings );
|
146 |
return $links;
|
147 |
}
|
@@ -154,7 +255,7 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
154 |
$site_plugins = get_site_option( 'active_sitewide_plugins', array() );
|
155 |
$woocommerce_basename = plugin_basename( WC_PLUGIN_FILE );
|
156 |
|
157 |
-
if( ( in_array( $woocommerce_basename, $blog_plugins ) || isset( $site_plugins[$woocommerce_basename] ) ) && version_compare( WC_VERSION, '2.
|
158 |
return true;
|
159 |
} else {
|
160 |
return false;
|
@@ -165,8 +266,15 @@ if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
|
165 |
}
|
166 |
|
167 |
/**
|
168 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
*/
|
170 |
-
$wcdn =
|
171 |
|
172 |
?>
|
5 |
* Plugin Name: WooCommerce Print Invoice & Delivery Note
|
6 |
* Plugin URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
7 |
* Description: Print Invoices & Delivery Notes for WooCommerce Orders.
|
8 |
+
* Version: 4.2.0
|
9 |
* Author: Triggvy Gunderson
|
10 |
* Author URI: https://github.com/piffpaffpuff/woocommerce-delivery-notes
|
11 |
* License: GPLv3 or later
|
12 |
* License URI: http://www.opensource.org/licenses/gpl-license.php
|
13 |
* Text Domain: woocommerce-delivery-notes
|
14 |
+
* Domain Path: /languages
|
15 |
*
|
16 |
+
* Copyright 2015 Triggvy Gunderson
|
17 |
*
|
18 |
* This file is part of WooCommerce Print Invoices & Delivery Notes,
|
19 |
* a plugin for WordPress.
|
33 |
* along with WordPress. If not, see <http://www.gnu.org/licenses/>.
|
34 |
*/
|
35 |
|
36 |
+
/**
|
37 |
+
* Exit if accessed directly
|
38 |
+
*/
|
39 |
+
if ( !defined( 'ABSPATH' ) ) {
|
40 |
+
exit;
|
41 |
+
}
|
42 |
+
|
43 |
/**
|
44 |
* Base class
|
45 |
*/
|
46 |
if ( !class_exists( 'WooCommerce_Delivery_Notes' ) ) {
|
47 |
|
48 |
final class WooCommerce_Delivery_Notes {
|
49 |
+
|
50 |
+
/**
|
51 |
+
* The single instance of the class
|
52 |
+
*/
|
53 |
+
protected static $_instance = null;
|
54 |
|
55 |
+
/**
|
56 |
+
* Default properties
|
57 |
+
*/
|
58 |
+
public static $plugin_version = '4.2.0';
|
59 |
public static $plugin_url;
|
60 |
public static $plugin_path;
|
61 |
public static $plugin_basefile;
|
62 |
public static $plugin_basefile_path;
|
63 |
+
public static $plugin_text_domain;
|
64 |
|
65 |
+
/**
|
66 |
+
* Sub class instances
|
67 |
+
*/
|
68 |
public $writepanel;
|
69 |
public $settings;
|
70 |
public $print;
|
71 |
public $theme;
|
72 |
|
73 |
+
/**
|
74 |
+
* Main Instance
|
75 |
+
*/
|
76 |
+
public static function instance() {
|
77 |
+
if( is_null( self::$_instance ) ) {
|
78 |
+
self::$_instance = new self();
|
79 |
+
}
|
80 |
+
return self::$_instance;
|
81 |
+
}
|
82 |
+
|
83 |
+
/**
|
84 |
+
* Cloning is forbidden
|
85 |
+
*/
|
86 |
+
public function __clone() {
|
87 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'woocommerce-delivery-notes' ), '4.1' );
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* Unserializing instances of this class is forbidden
|
92 |
+
*/
|
93 |
+
public function __wakeup() {
|
94 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'woocommerce-delivery-notes' ), '4.1' );
|
95 |
+
}
|
96 |
+
|
97 |
/**
|
98 |
* Constructor
|
99 |
*/
|
100 |
public function __construct() {
|
101 |
+
$this->define_constants();
|
102 |
+
$this->init_hooks();
|
103 |
+
|
104 |
+
// Send out the load action
|
105 |
+
do_action( 'wcdn_load');
|
106 |
+
}
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Hook into actions and filters
|
110 |
+
*/
|
111 |
+
public function init_hooks() {
|
112 |
+
add_action( 'init', array( $this, 'localise' ) );
|
113 |
+
add_action( 'woocommerce_init', array( $this, 'load' ) );
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Define WC Constants
|
118 |
+
*/
|
119 |
+
private function define_constants() {
|
120 |
self::$plugin_basefile_path = __FILE__;
|
121 |
self::$plugin_basefile = plugin_basename( self::$plugin_basefile_path );
|
122 |
self::$plugin_url = plugin_dir_url( self::$plugin_basefile );
|
123 |
self::$plugin_path = trailingslashit( dirname( self::$plugin_basefile_path ) );
|
124 |
+
self::$plugin_text_domain = trim( dirname( self::$plugin_basefile ) );
|
125 |
+
}
|
126 |
+
|
127 |
+
/**
|
128 |
+
* Define constant if not already set
|
129 |
+
*/
|
130 |
+
private function define( $name, $value ) {
|
131 |
+
if( !defined( $name ) ) {
|
132 |
+
define( $name, $value );
|
133 |
+
}
|
134 |
}
|
135 |
|
136 |
/**
|
152 |
include_once( 'includes/wcdn-template-hooks.php' );
|
153 |
}
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
/**
|
156 |
* Load the localisation
|
157 |
*/
|
158 |
+
public function localise() {
|
159 |
+
// Load language files from the wp-content/languages/plugins folder
|
160 |
+
$mo_file = WP_LANG_DIR . '/plugins/' . self::$plugin_text_domain . '-' . get_locale() . '.mo';
|
161 |
+
if( is_readable( $mo_file ) ) {
|
162 |
+
load_textdomain( self::$plugin_text_domain, $mo_file );
|
163 |
+
}
|
164 |
+
|
165 |
+
// Otherwise load them from the plugin folder
|
166 |
+
load_plugin_textdomain( self::$plugin_text_domain, false, dirname( self::$plugin_basefile ) . '/languages/' );
|
167 |
}
|
168 |
|
169 |
/**
|
170 |
+
* Load the main plugin classes and functions
|
171 |
*/
|
172 |
public function load() {
|
173 |
// WooCommerce activation required
|
183 |
|
184 |
// Load the hooks for the template after the objetcs.
|
185 |
// Like this the template has full access to all objects.
|
186 |
+
add_filter( 'plugin_action_links_' . self::$plugin_basefile, array( $this, 'add_settings_link') );
|
187 |
+
add_action( 'admin_init', array( $this, 'update' ) );
|
188 |
add_action( 'init', array( $this, 'include_template_functions' ) );
|
189 |
+
|
190 |
+
// Send out the init action
|
191 |
+
do_action( 'wcdn_init');
|
192 |
}
|
193 |
}
|
194 |
+
|
195 |
/**
|
196 |
+
* Install or update the default settings
|
197 |
*/
|
198 |
+
public function update() {
|
199 |
+
$option_version = get_option( 'wcdn_version', '1' );
|
200 |
+
|
201 |
+
// Update the settings
|
202 |
+
if( version_compare( $option_version, self::$plugin_version, '<' ) ) {
|
203 |
+
// Legacy updates
|
204 |
+
if( version_compare( $option_version, '4.2.0', '<' ) ) {
|
205 |
+
// Group invoice numbering
|
206 |
+
$invoice_start = intval( get_option( 'wcdn_invoice_number_start', 1 ) );
|
207 |
+
$invoice_counter = intval( get_option( 'wcdn_invoice_number_counter', 0 ) );
|
208 |
+
update_option( 'wcdn_invoice_number_count', $invoice_start + $invoice_counter );
|
209 |
+
|
210 |
+
// Translate checkbox values
|
211 |
+
foreach( $this->settings->get_settings() as $value ) {
|
212 |
+
if( isset( $value['id'] ) && isset( $value['type'] ) && $value['type'] == 'checkbox' ) {
|
213 |
+
$autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
|
214 |
+
$option = get_option( $value['id'] );
|
215 |
+
if( (bool)$option ) {
|
216 |
+
update_option( $value['id'], 'yes' );
|
217 |
+
} else {
|
218 |
+
update_option( $value['id'], 'no' );
|
219 |
+
}
|
220 |
+
}
|
221 |
+
}
|
222 |
+
}
|
223 |
+
|
224 |
+
// Set all options that have default values
|
225 |
+
foreach( $this->settings->get_settings() as $value ) {
|
226 |
+
if( isset( $value['default'] ) && isset( $value['id'] ) ) {
|
227 |
+
$autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
|
228 |
+
add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
// Flush the transients in case the endpoint changed
|
233 |
+
set_transient( 'wcdn_flush_rewrite_rules', true );
|
234 |
+
|
235 |
+
// Update the settings to the latest version
|
236 |
+
update_option( 'wcdn_version', self::$plugin_version );
|
237 |
+
}
|
238 |
}
|
239 |
|
240 |
/**
|
241 |
* Add settings link to plugin page
|
242 |
*/
|
243 |
public function add_settings_link( $links ) {
|
244 |
+
$url = esc_url( admin_url( add_query_arg( array( 'page' => 'wc-settings', 'tab' => $this->settings->id ), 'admin.php' ) ) );
|
245 |
+
$settings = sprintf( '<a href="%s" title="%s">%s</a>' , $url, __( 'Go to the settings page', 'woocommerce-delivery-notes' ) , __( 'Settings', 'woocommerce-delivery-notes' ) );
|
246 |
array_unshift( $links, $settings );
|
247 |
return $links;
|
248 |
}
|
255 |
$site_plugins = get_site_option( 'active_sitewide_plugins', array() );
|
256 |
$woocommerce_basename = plugin_basename( WC_PLUGIN_FILE );
|
257 |
|
258 |
+
if( ( in_array( $woocommerce_basename, $blog_plugins ) || isset( $site_plugins[$woocommerce_basename] ) ) && version_compare( WC_VERSION, '2.2', '>=' ) ) {
|
259 |
return true;
|
260 |
} else {
|
261 |
return false;
|
266 |
}
|
267 |
|
268 |
/**
|
269 |
+
* Returns the main instance of the plugin to prevent the need to use globals
|
270 |
+
*/
|
271 |
+
function WCDN() {
|
272 |
+
return WooCommerce_Delivery_Notes::instance();
|
273 |
+
}
|
274 |
+
|
275 |
+
/**
|
276 |
+
* Global for backwards compatibility
|
277 |
*/
|
278 |
+
$GLOBALS['wcdn'] = WCDN();
|
279 |
|
280 |
?>
|