WooCommerce PDF Invoices & Packing Slips - Version 2.8.0

Version Description

  • Fix: Support for PHP8.0, deprecating support for PHP7.0 or older (separate addon available for backwards compatibility)
  • Fix: Setup wizard crash when 3rd party plugins/themes check screen object
  • Dev: Use internal date formatting function, allowing easier PDF specific date format overrides
  • Dev: Introduced new action hook wpo_wcpdf_document_created_manually
  • Marked tested up to WooCommerce 5.0
Download this release

Release Info

Developer pomegranate
Plugin Icon 128x128 WooCommerce PDF Invoices & Packing Slips
Version 2.8.0
Comparing to
See all releases

Code changes from version 2.7.4 to 2.8.0

Files changed (45) hide show
  1. assets/js/confetti.js +347 -347
  2. assets/js/media-upload.js +67 -67
  3. assets/js/order-script.js +7 -18
  4. assets/js/setup-wizard.js +20 -20
  5. composer.json +5 -6
  6. composer.lock +225 -207
  7. includes/class-wcpdf-admin.php +159 -83
  8. includes/class-wcpdf-install.php +4 -4
  9. includes/class-wcpdf-main.php +2 -0
  10. includes/class-wcpdf-pdf-maker.php +61 -60
  11. includes/class-wcpdf-setup-wizard.php +5 -0
  12. includes/compatibility/abstract-wc-data-compatibility.php +204 -204
  13. includes/compatibility/class-wc-core-compatibility.php +231 -231
  14. includes/compatibility/class-wc-date-compatibility.php +103 -103
  15. includes/compatibility/class-wc-product-compatibility.php +288 -288
  16. includes/compatibility/mb-string-compatibility.php +129 -129
  17. includes/compatibility/wc-datetime-functions-compatibility.php +48 -48
  18. includes/documents/abstract-wcpdf-order-document-methods.php +3 -3
  19. includes/legacy/class-wcpdf-legacy-deprecated-hooks.php +41 -41
  20. includes/legacy/class-wcpdf-legacy-export.php +95 -95
  21. includes/legacy/class-wcpdf-legacy-functions.php +53 -53
  22. includes/legacy/class-wcpdf-legacy-settings.php +154 -154
  23. includes/legacy/class-wcpdf-legacy.php +89 -89
  24. includes/views/attachment-settings-hint.php +24 -24
  25. includes/views/setup-wizard/good-to-go.php +6 -6
  26. includes/views/setup-wizard/logo.php +20 -20
  27. includes/views/setup-wizard/paper-format.php +14 -14
  28. includes/views/setup-wizard/shop-name.php +11 -11
  29. includes/views/work-at-wpovernight.php +71 -71
  30. includes/wcpdf-functions.php +10 -0
  31. languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.po +1293 -1293
  32. languages/woocommerce-pdf-invoices-packing-slips-da_DK.po +961 -961
  33. languages/woocommerce-pdf-invoices-packing-slips-de_DE.po +926 -926
  34. languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.po +945 -945
  35. languages/woocommerce-pdf-invoices-packing-slips-en_AU.po +774 -774
  36. languages/woocommerce-pdf-invoices-packing-slips-es_ES.po +949 -949
  37. languages/woocommerce-pdf-invoices-packing-slips-et.po +899 -899
  38. languages/woocommerce-pdf-invoices-packing-slips-fi.po +948 -948
  39. languages/woocommerce-pdf-invoices-packing-slips-fr_FR.po +969 -969
  40. languages/woocommerce-pdf-invoices-packing-slips-hr.po +926 -926
  41. languages/woocommerce-pdf-invoices-packing-slips-hu_HU.po +839 -839
  42. languages/woocommerce-pdf-invoices-packing-slips-id_ID.po +926 -926
  43. languages/woocommerce-pdf-invoices-packing-slips-it_IT.po +941 -941
  44. languages/woocommerce-pdf-invoices-packing-slips-ja.po +868 -868
  45. languages/woocommerce-pdf-invoices-packing-slips-lv.po +0 -3
assets/js/confetti.js CHANGED
@@ -1,348 +1,348 @@
1
- jQuery(document).ready(function($) {
2
- var frameRate = 30;
3
- var dt = 1.0 / frameRate;
4
- var DEG_TO_RAD = Math.PI / 180;
5
- var RAD_TO_DEG = 180 / Math.PI;
6
- var colors = [
7
- ["#df0049", "#660671"],
8
- ["#00e857", "#005291"],
9
- ["#2bebbc", "#05798a"],
10
- ["#ffd200", "#b06c00"]
11
- ];
12
-
13
- function Vector2(_x, _y) {
14
- this.x = _x, this.y = _y;
15
- this.Length = function() {
16
- return Math.sqrt(this.SqrLength());
17
- }
18
- this.SqrLength = function() {
19
- return this.x * this.x + this.y * this.y;
20
- }
21
- this.Equals = function(_vec0, _vec1) {
22
- return _vec0.x == _vec1.x && _vec0.y == _vec1.y;
23
- }
24
- this.Add = function(_vec) {
25
- this.x += _vec.x;
26
- this.y += _vec.y;
27
- }
28
- this.Sub = function(_vec) {
29
- this.x -= _vec.x;
30
- this.y -= _vec.y;
31
- }
32
- this.Div = function(_f) {
33
- this.x /= _f;
34
- this.y /= _f;
35
- }
36
- this.Mul = function(_f) {
37
- this.x *= _f;
38
- this.y *= _f;
39
- }
40
- this.Normalize = function() {
41
- var sqrLen = this.SqrLength();
42
- if (sqrLen != 0) {
43
- var factor = 1.0 / Math.sqrt(sqrLen);
44
- this.x *= factor;
45
- this.y *= factor;
46
- }
47
- }
48
- this.Normalized = function() {
49
- var sqrLen = this.SqrLength();
50
- if (sqrLen != 0) {
51
- var factor = 1.0 / Math.sqrt(sqrLen);
52
- return new Vector2(this.x * factor, this.y * factor);
53
- }
54
- return new Vector2(0, 0);
55
- }
56
- }
57
- Vector2.Lerp = function(_vec0, _vec1, _t) {
58
- return new Vector2((_vec1.x - _vec0.x) * _t + _vec0.x, (_vec1.y - _vec0.y) * _t + _vec0.y);
59
- }
60
- Vector2.Distance = function(_vec0, _vec1) {
61
- return Math.sqrt(Vector2.SqrDistance(_vec0, _vec1));
62
- }
63
- Vector2.SqrDistance = function(_vec0, _vec1) {
64
- var x = _vec0.x - _vec1.x;
65
- var y = _vec0.y - _vec1.y;
66
- return (x * x + y * y + z * z);
67
- }
68
- Vector2.Scale = function(_vec0, _vec1) {
69
- return new Vector2(_vec0.x * _vec1.x, _vec0.y * _vec1.y);
70
- }
71
- Vector2.Min = function(_vec0, _vec1) {
72
- return new Vector2(Math.min(_vec0.x, _vec1.x), Math.min(_vec0.y, _vec1.y));
73
- }
74
- Vector2.Max = function(_vec0, _vec1) {
75
- return new Vector2(Math.max(_vec0.x, _vec1.x), Math.max(_vec0.y, _vec1.y));
76
- }
77
- Vector2.ClampMagnitude = function(_vec0, _len) {
78
- var vecNorm = _vec0.Normalized;
79
- return new Vector2(vecNorm.x * _len, vecNorm.y * _len);
80
- }
81
- Vector2.Sub = function(_vec0, _vec1) {
82
- return new Vector2(_vec0.x - _vec1.x, _vec0.y - _vec1.y, _vec0.z - _vec1.z);
83
- }
84
-
85
- function EulerMass(_x, _y, _mass, _drag) {
86
- this.position = new Vector2(_x, _y);
87
- this.mass = _mass;
88
- this.drag = _drag;
89
- this.force = new Vector2(0, 0);
90
- this.velocity = new Vector2(0, 0);
91
- this.AddForce = function(_f) {
92
- this.force.Add(_f);
93
- }
94
- this.Integrate = function(_dt) {
95
- var acc = this.CurrentForce(this.position);
96
- acc.Div(this.mass);
97
- var posDelta = new Vector2(this.velocity.x, this.velocity.y);
98
- posDelta.Mul(_dt);
99
- this.position.Add(posDelta);
100
- acc.Mul(_dt);
101
- this.velocity.Add(acc);
102
- this.force = new Vector2(0, 0);
103
- }
104
- this.CurrentForce = function(_pos, _vel) {
105
- var totalForce = new Vector2(this.force.x, this.force.y);
106
- var speed = this.velocity.Length();
107
- var dragVel = new Vector2(this.velocity.x, this.velocity.y);
108
- dragVel.Mul(this.drag * this.mass * speed);
109
- totalForce.Sub(dragVel);
110
- return totalForce;
111
- }
112
- }
113
-
114
- function ConfettiPaper(_x, _y) {
115
- this.pos = new Vector2(_x, _y);
116
- this.rotationSpeed = Math.random() * 600 + 800;
117
- this.angle = DEG_TO_RAD * Math.random() * 360;
118
- this.rotation = DEG_TO_RAD * Math.random() * 360;
119
- this.cosA = 1.0;
120
- this.size = 5.0;
121
- this.oscillationSpeed = Math.random() * 1.5 + 0.5;
122
- this.xSpeed = 40.0;
123
- this.ySpeed = Math.random() * 60 + 50.0;
124
- this.corners = new Array();
125
- this.time = Math.random();
126
- var ci = Math.round(Math.random() * (colors.length - 1));
127
- this.frontColor = colors[ci][0];
128
- this.backColor = colors[ci][1];
129
- for (var i = 0; i < 4; i++) {
130
- var dx = Math.cos(this.angle + DEG_TO_RAD * (i * 90 + 45));
131
- var dy = Math.sin(this.angle + DEG_TO_RAD * (i * 90 + 45));
132
- this.corners[i] = new Vector2(dx, dy);
133
- }
134
- this.Update = function(_dt) {
135
- this.time += _dt;
136
- this.rotation += this.rotationSpeed * _dt;
137
- this.cosA = Math.cos(DEG_TO_RAD * this.rotation);
138
- this.pos.x += Math.cos(this.time * this.oscillationSpeed) * this.xSpeed * _dt
139
- this.pos.y += this.ySpeed * _dt;
140
- if (this.pos.y > ConfettiPaper.bounds.y) {
141
- this.pos.x = Math.random() * ConfettiPaper.bounds.x;
142
- this.pos.y = 0;
143
- }
144
- }
145
- this.Draw = function(_g) {
146
- if (this.cosA > 0) {
147
- _g.fillStyle = this.frontColor;
148
- } else {
149
- _g.fillStyle = this.backColor;
150
- }
151
- _g.beginPath();
152
- _g.moveTo(this.pos.x + this.corners[0].x * this.size, this.pos.y + this.corners[0].y * this.size * this.cosA);
153
- for (var i = 1; i < 4; i++) {
154
- _g.lineTo(this.pos.x + this.corners[i].x * this.size, this.pos.y + this.corners[i].y * this.size * this.cosA);
155
- }
156
- _g.closePath();
157
- _g.fill();
158
- }
159
- }
160
- ConfettiPaper.bounds = new Vector2(0, 0);
161
-
162
- function ConfettiRibbon(_x, _y, _count, _dist, _thickness, _angle, _mass, _drag) {
163
- this.particleDist = _dist;
164
- this.particleCount = _count;
165
- this.particleMass = _mass;
166
- this.particleDrag = _drag;
167
- this.particles = new Array();
168
- var ci = Math.round(Math.random() * (colors.length - 1));
169
- this.frontColor = colors[ci][0];
170
- this.backColor = colors[ci][1];
171
- this.xOff = Math.cos(DEG_TO_RAD * _angle) * _thickness;
172
- this.yOff = Math.sin(DEG_TO_RAD * _angle) * _thickness;
173
- this.position = new Vector2(_x, _y);
174
- this.prevPosition = new Vector2(_x, _y);
175
- this.velocityInherit = Math.random() * 2 + 4;
176
- this.time = Math.random() * 100;
177
- this.oscillationSpeed = Math.random() * 2 + 2;
178
- this.oscillationDistance = Math.random() * 40 + 40;
179
- this.ySpeed = Math.random() * 40 + 80;
180
- for (var i = 0; i < this.particleCount; i++) {
181
- this.particles[i] = new EulerMass(_x, _y - i * this.particleDist, this.particleMass, this.particleDrag);
182
- }
183
- this.Update = function(_dt) {
184
- var i = 0;
185
- this.time += _dt * this.oscillationSpeed;
186
- this.position.y += this.ySpeed * _dt;
187
- this.position.x += Math.cos(this.time) * this.oscillationDistance * _dt;
188
- this.particles[0].position = this.position;
189
- var dX = this.prevPosition.x - this.position.x;
190
- var dY = this.prevPosition.y - this.position.y;
191
- var delta = Math.sqrt(dX * dX + dY * dY);
192
- this.prevPosition = new Vector2(this.position.x, this.position.y);
193
- for (i = 1; i < this.particleCount; i++) {
194
- var dirP = Vector2.Sub(this.particles[i - 1].position, this.particles[i].position);
195
- dirP.Normalize();
196
- dirP.Mul((delta / _dt) * this.velocityInherit);
197
- this.particles[i].AddForce(dirP);
198
- }
199
- for (i = 1; i < this.particleCount; i++) {
200
- this.particles[i].Integrate(_dt);
201
- }
202
- for (i = 1; i < this.particleCount; i++) {
203
- var rp2 = new Vector2(this.particles[i].position.x, this.particles[i].position.y);
204
- rp2.Sub(this.particles[i - 1].position);
205
- rp2.Normalize();
206
- rp2.Mul(this.particleDist);
207
- rp2.Add(this.particles[i - 1].position);
208
- this.particles[i].position = rp2;
209
- }
210
- if (this.position.y > ConfettiRibbon.bounds.y + this.particleDist * this.particleCount) {
211
- this.Reset();
212
- }
213
- }
214
- this.Reset = function() {
215
- this.position.y = -Math.random() * ConfettiRibbon.bounds.y;
216
- this.position.x = Math.random() * ConfettiRibbon.bounds.x;
217
- this.prevPosition = new Vector2(this.position.x, this.position.y);
218
- this.velocityInherit = Math.random() * 2 + 4;
219
- this.time = Math.random() * 100;
220
- this.oscillationSpeed = Math.random() * 2.0 + 1.5;
221
- this.oscillationDistance = Math.random() * 40 + 40;
222
- this.ySpeed = Math.random() * 40 + 80;
223
- var ci = Math.round(Math.random() * (colors.length - 1));
224
- this.frontColor = colors[ci][0];
225
- this.backColor = colors[ci][1];
226
- this.particles = new Array();
227
- for (var i = 0; i < this.particleCount; i++) {
228
- this.particles[i] = new EulerMass(this.position.x, this.position.y - i * this.particleDist, this.particleMass, this.particleDrag);
229
- }
230
- }
231
- this.Draw = function(_g) {
232
- for (var i = 0; i < this.particleCount - 1; i++) {
233
- var p0 = new Vector2(this.particles[i].position.x + this.xOff, this.particles[i].position.y + this.yOff);
234
- var p1 = new Vector2(this.particles[i + 1].position.x + this.xOff, this.particles[i + 1].position.y + this.yOff);
235
- if (this.Side(this.particles[i].position.x, this.particles[i].position.y, this.particles[i + 1].position.x, this.particles[i + 1].position.y, p1.x, p1.y) < 0) {
236
- _g.fillStyle = this.frontColor;
237
- _g.strokeStyle = this.frontColor;
238
- } else {
239
- _g.fillStyle = this.backColor;
240
- _g.strokeStyle = this.backColor;
241
- }
242
- if (i == 0) {
243
- _g.beginPath();
244
- _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
245
- _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
246
- _g.lineTo((this.particles[i + 1].position.x + p1.x) * 0.5, (this.particles[i + 1].position.y + p1.y) * 0.5);
247
- _g.closePath();
248
- _g.stroke();
249
- _g.fill();
250
- _g.beginPath();
251
- _g.moveTo(p1.x, p1.y);
252
- _g.lineTo(p0.x, p0.y);
253
- _g.lineTo((this.particles[i + 1].position.x + p1.x) * 0.5, (this.particles[i + 1].position.y + p1.y) * 0.5);
254
- _g.closePath();
255
- _g.stroke();
256
- _g.fill();
257
- } else if (i == this.particleCount - 2) {
258
- _g.beginPath();
259
- _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
260
- _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
261
- _g.lineTo((this.particles[i].position.x + p0.x) * 0.5, (this.particles[i].position.y + p0.y) * 0.5);
262
- _g.closePath();
263
- _g.stroke();
264
- _g.fill();
265
- _g.beginPath();
266
- _g.moveTo(p1.x, p1.y);
267
- _g.lineTo(p0.x, p0.y);
268
- _g.lineTo((this.particles[i].position.x + p0.x) * 0.5, (this.particles[i].position.y + p0.y) * 0.5);
269
- _g.closePath();
270
- _g.stroke();
271
- _g.fill();
272
- } else {
273
- _g.beginPath();
274
- _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
275
- _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
276
- _g.lineTo(p1.x, p1.y);
277
- _g.lineTo(p0.x, p0.y);
278
- _g.closePath();
279
- _g.stroke();
280
- _g.fill();
281
- }
282
- }
283
- }
284
- this.Side = function(x1, y1, x2, y2, x3, y3) {
285
- return ((x1 - x2) * (y3 - y2) - (y1 - y2) * (x3 - x2));
286
- }
287
- }
288
- ConfettiRibbon.bounds = new Vector2(0, 0);
289
- confetti = {};
290
- confetti.Context = function(parent) {
291
- var i = 0;
292
- var canvasParent = document.getElementById(parent);
293
- var canvas = document.createElement('canvas');
294
- canvas.width = canvasParent.offsetWidth;
295
- canvas.height = canvasParent.offsetHeight;
296
- canvasParent.appendChild(canvas);
297
- var context = canvas.getContext('2d');
298
- var interval = null;
299
- var confettiRibbonCount = 7;
300
- var rpCount = 30;
301
- var rpDist = 8.0;
302
- var rpThick = 8.0;
303
- var confettiRibbons = new Array();
304
- ConfettiRibbon.bounds = new Vector2(canvas.width, canvas.height);
305
- for (i = 0; i < confettiRibbonCount; i++) {
306
- confettiRibbons[i] = new ConfettiRibbon(Math.random() * canvas.width, -Math.random() * canvas.height * 2, rpCount, rpDist, rpThick, 45, 1, 0.05);
307
- }
308
- var confettiPaperCount = 25;
309
- var confettiPapers = new Array();
310
- ConfettiPaper.bounds = new Vector2(canvas.width, canvas.height);
311
- for (i = 0; i < confettiPaperCount; i++) {
312
- confettiPapers[i] = new ConfettiPaper(Math.random() * canvas.width, Math.random() * canvas.height);
313
- }
314
- this.resize = function() {
315
- canvas.width = canvasParent.offsetWidth;
316
- canvas.height = canvasParent.offsetHeight;
317
- ConfettiPaper.bounds = new Vector2(canvas.width, canvas.height);
318
- ConfettiRibbon.bounds = new Vector2(canvas.width, canvas.height);
319
- }
320
- this.start = function() {
321
- this.stop()
322
- var context = this
323
- this.interval = setInterval(function() {
324
- confetti.update();
325
- }, 1000.0 / frameRate)
326
- }
327
- this.stop = function() {
328
- clearInterval(this.interval);
329
- }
330
- this.update = function() {
331
- var i = 0;
332
- context.clearRect(0, 0, canvas.width, canvas.height);
333
- for (i = 0; i < confettiPaperCount; i++) {
334
- confettiPapers[i].Update(dt);
335
- confettiPapers[i].Draw(context);
336
- }
337
- for (i = 0; i < confettiRibbonCount; i++) {
338
- confettiRibbons[i].Update(dt);
339
- confettiRibbons[i].Draw(context);
340
- }
341
- }
342
- }
343
- var confetti = new confetti.Context('confetti');
344
- confetti.start();
345
- $(window).resize(function() {
346
- confetti.resize();
347
- });
348
  });
1
+ jQuery(document).ready(function($) {
2
+ var frameRate = 30;
3
+ var dt = 1.0 / frameRate;
4
+ var DEG_TO_RAD = Math.PI / 180;
5
+ var RAD_TO_DEG = 180 / Math.PI;
6
+ var colors = [
7
+ ["#df0049", "#660671"],
8
+ ["#00e857", "#005291"],
9
+ ["#2bebbc", "#05798a"],
10
+ ["#ffd200", "#b06c00"]
11
+ ];
12
+
13
+ function Vector2(_x, _y) {
14
+ this.x = _x, this.y = _y;
15
+ this.Length = function() {
16
+ return Math.sqrt(this.SqrLength());
17
+ }
18
+ this.SqrLength = function() {
19
+ return this.x * this.x + this.y * this.y;
20
+ }
21
+ this.Equals = function(_vec0, _vec1) {
22
+ return _vec0.x == _vec1.x && _vec0.y == _vec1.y;
23
+ }
24
+ this.Add = function(_vec) {
25
+ this.x += _vec.x;
26
+ this.y += _vec.y;
27
+ }
28
+ this.Sub = function(_vec) {
29
+ this.x -= _vec.x;
30
+ this.y -= _vec.y;
31
+ }
32
+ this.Div = function(_f) {
33
+ this.x /= _f;
34
+ this.y /= _f;
35
+ }
36
+ this.Mul = function(_f) {
37
+ this.x *= _f;
38
+ this.y *= _f;
39
+ }
40
+ this.Normalize = function() {
41
+ var sqrLen = this.SqrLength();
42
+ if (sqrLen != 0) {
43
+ var factor = 1.0 / Math.sqrt(sqrLen);
44
+ this.x *= factor;
45
+ this.y *= factor;
46
+ }
47
+ }
48
+ this.Normalized = function() {
49
+ var sqrLen = this.SqrLength();
50
+ if (sqrLen != 0) {
51
+ var factor = 1.0 / Math.sqrt(sqrLen);
52
+ return new Vector2(this.x * factor, this.y * factor);
53
+ }
54
+ return new Vector2(0, 0);
55
+ }
56
+ }
57
+ Vector2.Lerp = function(_vec0, _vec1, _t) {
58
+ return new Vector2((_vec1.x - _vec0.x) * _t + _vec0.x, (_vec1.y - _vec0.y) * _t + _vec0.y);
59
+ }
60
+ Vector2.Distance = function(_vec0, _vec1) {
61
+ return Math.sqrt(Vector2.SqrDistance(_vec0, _vec1));
62
+ }
63
+ Vector2.SqrDistance = function(_vec0, _vec1) {
64
+ var x = _vec0.x - _vec1.x;
65
+ var y = _vec0.y - _vec1.y;
66
+ return (x * x + y * y + z * z);
67
+ }
68
+ Vector2.Scale = function(_vec0, _vec1) {
69
+ return new Vector2(_vec0.x * _vec1.x, _vec0.y * _vec1.y);
70
+ }
71
+ Vector2.Min = function(_vec0, _vec1) {
72
+ return new Vector2(Math.min(_vec0.x, _vec1.x), Math.min(_vec0.y, _vec1.y));
73
+ }
74
+ Vector2.Max = function(_vec0, _vec1) {
75
+ return new Vector2(Math.max(_vec0.x, _vec1.x), Math.max(_vec0.y, _vec1.y));
76
+ }
77
+ Vector2.ClampMagnitude = function(_vec0, _len) {
78
+ var vecNorm = _vec0.Normalized;
79
+ return new Vector2(vecNorm.x * _len, vecNorm.y * _len);
80
+ }
81
+ Vector2.Sub = function(_vec0, _vec1) {
82
+ return new Vector2(_vec0.x - _vec1.x, _vec0.y - _vec1.y, _vec0.z - _vec1.z);
83
+ }
84
+
85
+ function EulerMass(_x, _y, _mass, _drag) {
86
+ this.position = new Vector2(_x, _y);
87
+ this.mass = _mass;
88
+ this.drag = _drag;
89
+ this.force = new Vector2(0, 0);
90
+ this.velocity = new Vector2(0, 0);
91
+ this.AddForce = function(_f) {
92
+ this.force.Add(_f);
93
+ }
94
+ this.Integrate = function(_dt) {
95
+ var acc = this.CurrentForce(this.position);
96
+ acc.Div(this.mass);
97
+ var posDelta = new Vector2(this.velocity.x, this.velocity.y);
98
+ posDelta.Mul(_dt);
99
+ this.position.Add(posDelta);
100
+ acc.Mul(_dt);
101
+ this.velocity.Add(acc);
102
+ this.force = new Vector2(0, 0);
103
+ }
104
+ this.CurrentForce = function(_pos, _vel) {
105
+ var totalForce = new Vector2(this.force.x, this.force.y);
106
+ var speed = this.velocity.Length();
107
+ var dragVel = new Vector2(this.velocity.x, this.velocity.y);
108
+ dragVel.Mul(this.drag * this.mass * speed);
109
+ totalForce.Sub(dragVel);
110
+ return totalForce;
111
+ }
112
+ }
113
+
114
+ function ConfettiPaper(_x, _y) {
115
+ this.pos = new Vector2(_x, _y);
116
+ this.rotationSpeed = Math.random() * 600 + 800;
117
+ this.angle = DEG_TO_RAD * Math.random() * 360;
118
+ this.rotation = DEG_TO_RAD * Math.random() * 360;
119
+ this.cosA = 1.0;
120
+ this.size = 5.0;
121
+ this.oscillationSpeed = Math.random() * 1.5 + 0.5;
122
+ this.xSpeed = 40.0;
123
+ this.ySpeed = Math.random() * 60 + 50.0;
124
+ this.corners = new Array();
125
+ this.time = Math.random();
126
+ var ci = Math.round(Math.random() * (colors.length - 1));
127
+ this.frontColor = colors[ci][0];
128
+ this.backColor = colors[ci][1];
129
+ for (var i = 0; i < 4; i++) {
130
+ var dx = Math.cos(this.angle + DEG_TO_RAD * (i * 90 + 45));
131
+ var dy = Math.sin(this.angle + DEG_TO_RAD * (i * 90 + 45));
132
+ this.corners[i] = new Vector2(dx, dy);
133
+ }
134
+ this.Update = function(_dt) {
135
+ this.time += _dt;
136
+ this.rotation += this.rotationSpeed * _dt;
137
+ this.cosA = Math.cos(DEG_TO_RAD * this.rotation);
138
+ this.pos.x += Math.cos(this.time * this.oscillationSpeed) * this.xSpeed * _dt
139
+ this.pos.y += this.ySpeed * _dt;
140
+ if (this.pos.y > ConfettiPaper.bounds.y) {
141
+ this.pos.x = Math.random() * ConfettiPaper.bounds.x;
142
+ this.pos.y = 0;
143
+ }
144
+ }
145
+ this.Draw = function(_g) {
146
+ if (this.cosA > 0) {
147
+ _g.fillStyle = this.frontColor;
148
+ } else {
149
+ _g.fillStyle = this.backColor;
150
+ }
151
+ _g.beginPath();
152
+ _g.moveTo(this.pos.x + this.corners[0].x * this.size, this.pos.y + this.corners[0].y * this.size * this.cosA);
153
+ for (var i = 1; i < 4; i++) {
154
+ _g.lineTo(this.pos.x + this.corners[i].x * this.size, this.pos.y + this.corners[i].y * this.size * this.cosA);
155
+ }
156
+ _g.closePath();
157
+ _g.fill();
158
+ }
159
+ }
160
+ ConfettiPaper.bounds = new Vector2(0, 0);
161
+
162
+ function ConfettiRibbon(_x, _y, _count, _dist, _thickness, _angle, _mass, _drag) {
163
+ this.particleDist = _dist;
164
+ this.particleCount = _count;
165
+ this.particleMass = _mass;
166
+ this.particleDrag = _drag;
167
+ this.particles = new Array();
168
+ var ci = Math.round(Math.random() * (colors.length - 1));
169
+ this.frontColor = colors[ci][0];
170
+ this.backColor = colors[ci][1];
171
+ this.xOff = Math.cos(DEG_TO_RAD * _angle) * _thickness;
172
+ this.yOff = Math.sin(DEG_TO_RAD * _angle) * _thickness;
173
+ this.position = new Vector2(_x, _y);
174
+ this.prevPosition = new Vector2(_x, _y);
175
+ this.velocityInherit = Math.random() * 2 + 4;
176
+ this.time = Math.random() * 100;
177
+ this.oscillationSpeed = Math.random() * 2 + 2;
178
+ this.oscillationDistance = Math.random() * 40 + 40;
179
+ this.ySpeed = Math.random() * 40 + 80;
180
+ for (var i = 0; i < this.particleCount; i++) {
181
+ this.particles[i] = new EulerMass(_x, _y - i * this.particleDist, this.particleMass, this.particleDrag);
182
+ }
183
+ this.Update = function(_dt) {
184
+ var i = 0;
185
+ this.time += _dt * this.oscillationSpeed;
186
+ this.position.y += this.ySpeed * _dt;
187
+ this.position.x += Math.cos(this.time) * this.oscillationDistance * _dt;
188
+ this.particles[0].position = this.position;
189
+ var dX = this.prevPosition.x - this.position.x;
190
+ var dY = this.prevPosition.y - this.position.y;
191
+ var delta = Math.sqrt(dX * dX + dY * dY);
192
+ this.prevPosition = new Vector2(this.position.x, this.position.y);
193
+ for (i = 1; i < this.particleCount; i++) {
194
+ var dirP = Vector2.Sub(this.particles[i - 1].position, this.particles[i].position);
195
+ dirP.Normalize();
196
+ dirP.Mul((delta / _dt) * this.velocityInherit);
197
+ this.particles[i].AddForce(dirP);
198
+ }
199
+ for (i = 1; i < this.particleCount; i++) {
200
+ this.particles[i].Integrate(_dt);
201
+ }
202
+ for (i = 1; i < this.particleCount; i++) {
203
+ var rp2 = new Vector2(this.particles[i].position.x, this.particles[i].position.y);
204
+ rp2.Sub(this.particles[i - 1].position);
205
+ rp2.Normalize();
206
+ rp2.Mul(this.particleDist);
207
+ rp2.Add(this.particles[i - 1].position);
208
+ this.particles[i].position = rp2;
209
+ }
210
+ if (this.position.y > ConfettiRibbon.bounds.y + this.particleDist * this.particleCount) {
211
+ this.Reset();
212
+ }
213
+ }
214
+ this.Reset = function() {
215
+ this.position.y = -Math.random() * ConfettiRibbon.bounds.y;
216
+ this.position.x = Math.random() * ConfettiRibbon.bounds.x;
217
+ this.prevPosition = new Vector2(this.position.x, this.position.y);
218
+ this.velocityInherit = Math.random() * 2 + 4;
219
+ this.time = Math.random() * 100;
220
+ this.oscillationSpeed = Math.random() * 2.0 + 1.5;
221
+ this.oscillationDistance = Math.random() * 40 + 40;
222
+ this.ySpeed = Math.random() * 40 + 80;
223
+ var ci = Math.round(Math.random() * (colors.length - 1));
224
+ this.frontColor = colors[ci][0];
225
+ this.backColor = colors[ci][1];
226
+ this.particles = new Array();
227
+ for (var i = 0; i < this.particleCount; i++) {
228
+ this.particles[i] = new EulerMass(this.position.x, this.position.y - i * this.particleDist, this.particleMass, this.particleDrag);
229
+ }
230
+ }
231
+ this.Draw = function(_g) {
232
+ for (var i = 0; i < this.particleCount - 1; i++) {
233
+ var p0 = new Vector2(this.particles[i].position.x + this.xOff, this.particles[i].position.y + this.yOff);
234
+ var p1 = new Vector2(this.particles[i + 1].position.x + this.xOff, this.particles[i + 1].position.y + this.yOff);
235
+ if (this.Side(this.particles[i].position.x, this.particles[i].position.y, this.particles[i + 1].position.x, this.particles[i + 1].position.y, p1.x, p1.y) < 0) {
236
+ _g.fillStyle = this.frontColor;
237
+ _g.strokeStyle = this.frontColor;
238
+ } else {
239
+ _g.fillStyle = this.backColor;
240
+ _g.strokeStyle = this.backColor;
241
+ }
242
+ if (i == 0) {
243
+ _g.beginPath();
244
+ _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
245
+ _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
246
+ _g.lineTo((this.particles[i + 1].position.x + p1.x) * 0.5, (this.particles[i + 1].position.y + p1.y) * 0.5);
247
+ _g.closePath();
248
+ _g.stroke();
249
+ _g.fill();
250
+ _g.beginPath();
251
+ _g.moveTo(p1.x, p1.y);
252
+ _g.lineTo(p0.x, p0.y);
253
+ _g.lineTo((this.particles[i + 1].position.x + p1.x) * 0.5, (this.particles[i + 1].position.y + p1.y) * 0.5);
254
+ _g.closePath();
255
+ _g.stroke();
256
+ _g.fill();
257
+ } else if (i == this.particleCount - 2) {
258
+ _g.beginPath();
259
+ _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
260
+ _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
261
+ _g.lineTo((this.particles[i].position.x + p0.x) * 0.5, (this.particles[i].position.y + p0.y) * 0.5);
262
+ _g.closePath();
263
+ _g.stroke();
264
+ _g.fill();
265
+ _g.beginPath();
266
+ _g.moveTo(p1.x, p1.y);
267
+ _g.lineTo(p0.x, p0.y);
268
+ _g.lineTo((this.particles[i].position.x + p0.x) * 0.5, (this.particles[i].position.y + p0.y) * 0.5);
269
+ _g.closePath();
270
+ _g.stroke();
271
+ _g.fill();
272
+ } else {
273
+ _g.beginPath();
274
+ _g.moveTo(this.particles[i].position.x, this.particles[i].position.y);
275
+ _g.lineTo(this.particles[i + 1].position.x, this.particles[i + 1].position.y);
276
+ _g.lineTo(p1.x, p1.y);
277
+ _g.lineTo(p0.x, p0.y);
278
+ _g.closePath();
279
+ _g.stroke();
280
+ _g.fill();
281
+ }
282
+ }
283
+ }
284
+ this.Side = function(x1, y1, x2, y2, x3, y3) {
285
+ return ((x1 - x2) * (y3 - y2) - (y1 - y2) * (x3 - x2));
286
+ }
287
+ }
288
+ ConfettiRibbon.bounds = new Vector2(0, 0);
289
+ confetti = {};
290
+ confetti.Context = function(parent) {
291
+ var i = 0;
292
+ var canvasParent = document.getElementById(parent);
293
+ var canvas = document.createElement('canvas');
294
+ canvas.width = canvasParent.offsetWidth;
295
+ canvas.height = canvasParent.offsetHeight;
296
+ canvasParent.appendChild(canvas);
297
+ var context = canvas.getContext('2d');
298
+ var interval = null;
299
+ var confettiRibbonCount = 7;
300
+ var rpCount = 30;
301
+ var rpDist = 8.0;
302
+ var rpThick = 8.0;
303
+ var confettiRibbons = new Array();
304
+ ConfettiRibbon.bounds = new Vector2(canvas.width, canvas.height);
305
+ for (i = 0; i < confettiRibbonCount; i++) {
306
+ confettiRibbons[i] = new ConfettiRibbon(Math.random() * canvas.width, -Math.random() * canvas.height * 2, rpCount, rpDist, rpThick, 45, 1, 0.05);
307
+ }
308
+ var confettiPaperCount = 25;
309
+ var confettiPapers = new Array();
310
+ ConfettiPaper.bounds = new Vector2(canvas.width, canvas.height);
311
+ for (i = 0; i < confettiPaperCount; i++) {
312
+ confettiPapers[i] = new ConfettiPaper(Math.random() * canvas.width, Math.random() * canvas.height);
313
+ }
314
+ this.resize = function() {
315
+ canvas.width = canvasParent.offsetWidth;
316
+ canvas.height = canvasParent.offsetHeight;
317
+ ConfettiPaper.bounds = new Vector2(canvas.width, canvas.height);
318
+ ConfettiRibbon.bounds = new Vector2(canvas.width, canvas.height);
319
+ }
320
+ this.start = function() {
321
+ this.stop()
322
+ var context = this
323
+ this.interval = setInterval(function() {
324
+ confetti.update();
325
+ }, 1000.0 / frameRate)
326
+ }
327
+ this.stop = function() {
328
+ clearInterval(this.interval);
329
+ }
330
+ this.update = function() {
331
+ var i = 0;
332
+ context.clearRect(0, 0, canvas.width, canvas.height);
333
+ for (i = 0; i < confettiPaperCount; i++) {
334
+ confettiPapers[i].Update(dt);
335
+ confettiPapers[i].Draw(context);
336
+ }
337
+ for (i = 0; i < confettiRibbonCount; i++) {
338
+ confettiRibbons[i].Update(dt);
339
+ confettiRibbons[i].Draw(context);
340
+ }
341
+ }
342
+ }
343
+ var confetti = new confetti.Context('confetti');
344
+ confetti.start();
345
+ $(window).resize(function() {
346
+ confetti.resize();
347
+ });
348
  });
assets/js/media-upload.js CHANGED
@@ -1,68 +1,68 @@
1
- // Thanks to Mike Jolley!
2
- // http://mikejolley.com/2012/12/using-the-new-wordpress-3-5-media-uploader-in-plugins/
3
-
4
- jQuery(document).ready(function($) {
5
-
6
- // Uploading files
7
- var file_frame;
8
- $('#wpo-wcpdf-settings, .wpo-wcpdf-setup').on('click', '.wpo_upload_image_button', function( event ){
9
- // get corresponding input fields
10
- $row = $(this).parent();
11
- $id = $row.find('input#header_logo');
12
- $logo = $row.find('img#img-header_logo');
13
-
14
- // get remove button text
15
- remove_button_text = $( this ).data( 'remove_button_text' );
16
-
17
- event.preventDefault();
18
-
19
- // If the media frame already exists, reopen it.
20
- if ( file_frame ) {
21
- file_frame.open();
22
- return;
23
- }
24
-
25
-
26
- // Create the media frame.
27
- file_frame = wp.media.frames.file_frame = wp.media({
28
- title: $( this ).data( 'uploader_title' ),
29
- button: {
30
- text: $( this ).data( 'uploader_button_text' ),
31
- },
32
- multiple: false // Set to true to allow multiple files to be selected
33
- });
34
-
35
- // When an image is selected, run a callback.
36
- file_frame.on( 'select', function() {
37
- // We set multiple to false so only get one image from the uploader
38
- attachment = file_frame.state().get('selection').first().toJSON();
39
-
40
- // set the value of the input field to the attachment id
41
- $id.val(attachment.id);
42
-
43
- if ( $logo.length == 0 ) {
44
- // show image & remove button
45
- attachment_img = '<img src="'+attachment.url+'" style="display:block" id="img-header_logo"/>';
46
- remove_button = '<span class="button wpo_remove_image_button" data-input_id="header_logo">'+remove_button_text+'</span>';
47
- $id.before(attachment_img+remove_button);
48
- } else {
49
- $logo.attr("src", attachment.url );
50
- }
51
- });
52
-
53
- // Finally, open the modal
54
- file_frame.open();
55
- });
56
-
57
- $('#wpo-wcpdf-settings').on('click', '.wpo_remove_image_button', function( event ){
58
- // get corresponding input fields
59
- $row = $(this).parent();
60
- $id = $row.find('input#header_logo');
61
- $logo = $row.find('img#img-header_logo');
62
-
63
- $id.val('');
64
- $logo.remove();
65
- $( this ).remove();
66
- $( '.attachment-resolution' ).remove();
67
- });
68
  });
1
+ // Thanks to Mike Jolley!
2
+ // http://mikejolley.com/2012/12/using-the-new-wordpress-3-5-media-uploader-in-plugins/
3
+
4
+ jQuery(document).ready(function($) {
5
+
6
+ // Uploading files
7
+ var file_frame;
8
+ $('#wpo-wcpdf-settings, .wpo-wcpdf-setup').on('click', '.wpo_upload_image_button', function( event ){
9
+ // get corresponding input fields
10
+ $row = $(this).parent();
11
+ $id = $row.find('input#header_logo');
12
+ $logo = $row.find('img#img-header_logo');
13
+
14
+ // get remove button text
15
+ remove_button_text = $( this ).data( 'remove_button_text' );
16
+
17
+ event.preventDefault();
18
+
19
+ // If the media frame already exists, reopen it.
20
+ if ( file_frame ) {
21
+ file_frame.open();
22
+ return;
23
+ }
24
+
25
+
26
+ // Create the media frame.
27
+ file_frame = wp.media.frames.file_frame = wp.media({
28
+ title: $( this ).data( 'uploader_title' ),
29
+ button: {
30
+ text: $( this ).data( 'uploader_button_text' ),
31
+ },
32
+ multiple: false // Set to true to allow multiple files to be selected
33
+ });
34
+
35
+ // When an image is selected, run a callback.
36
+ file_frame.on( 'select', function() {
37
+ // We set multiple to false so only get one image from the uploader
38
+ attachment = file_frame.state().get('selection').first().toJSON();
39
+
40
+ // set the value of the input field to the attachment id
41
+ $id.val(attachment.id);
42
+
43
+ if ( $logo.length == 0 ) {
44
+ // show image & remove button
45
+ attachment_img = '<img src="'+attachment.url+'" style="display:block" id="img-header_logo"/>';
46
+ remove_button = '<span class="button wpo_remove_image_button" data-input_id="header_logo">'+remove_button_text+'</span>';
47
+ $id.before(attachment_img+remove_button);
48
+ } else {
49
+ $logo.attr("src", attachment.url );
50
+ }
51
+ });
52
+
53
+ // Finally, open the modal
54
+ file_frame.open();
55
+ });
56
+
57
+ $('#wpo-wcpdf-settings').on('click', '.wpo_remove_image_button', function( event ){
58
+ // get corresponding input fields
59
+ $row = $(this).parent();
60
+ $id = $row.find('input#header_logo');
61
+ $logo = $row.find('img#img-header_logo');
62
+
63
+ $id.val('');
64
+ $logo.remove();
65
+ $( this ).remove();
66
+ $( '.attachment-resolution' ).remove();
67
+ });
68
  });
assets/js/order-script.js CHANGED
@@ -30,7 +30,7 @@ jQuery(document).ready(function($) {
30
  });
31
 
32
  $('#wpo_wcpdf-data-input-box').insertAfter('#woocommerce-order-data');
33
-
34
  // enable invoice number edit if user initiated
35
  $( ".wpo-wcpdf-set-date-number, .wpo-wcpdf-edit-date-number, .wpo-wcpdf-edit-document-notes" ).click(function() {
36
  $form = $(this).closest('.wcpdf-data-fields-section');
@@ -42,11 +42,11 @@ jQuery(document).ready(function($) {
42
  if( $form.find(".read-only").is(":visible") ) {
43
  $form.find(".read-only").hide();
44
  $form.find(".editable").show();
45
- $form.find(':input').prop('disabled', false);
46
  } else {
47
  $form.find(".read-only").show();
48
  $form.find(".editable").hide();
49
- $form.find(':input').prop('disabled', true);
50
  }
51
  });
52
 
@@ -89,23 +89,12 @@ jQuery(document).ready(function($) {
89
  $(this).addClass('wcpdf-regenerate-spin');
90
  $form = $(this).closest('.wcpdf-data-fields');
91
 
92
- // create an object with the form inputs data
93
- form_inputs_data = {};
94
- $form.find(':input').each( function() {
95
- if (!$(this).is(':disabled')) {
96
- name = $(this).attr("name");
97
- name = name.split('[', 1)[0]; // for credit-note array []
98
- value = $(this).val();
99
- form_inputs_data[name] = value;
100
- }
101
- } );
102
-
103
- // convert data to json string
104
- form_data_json = JSON.stringify( form_inputs_data );
105
-
106
  // create an object with the data attributes
107
  form_data_attributes = $form.data();
108
 
 
 
 
109
  // Make sure all feedback icons are hidden before each call
110
  $form.find('.document-action-success, .document-action-failed').hide();
111
 
@@ -114,7 +103,7 @@ jQuery(document).ready(function($) {
114
  data: {
115
  action: 'wpo_wcpdf_regenerate_document',
116
  security: $(this).data('nonce'),
117
- form_data: form_data_json,
118
  order_id: form_data_attributes.order_id,
119
  document_type: form_data_attributes.document,
120
  },
30
  });
31
 
32
  $('#wpo_wcpdf-data-input-box').insertAfter('#woocommerce-order-data');
33
+
34
  // enable invoice number edit if user initiated
35
  $( ".wpo-wcpdf-set-date-number, .wpo-wcpdf-edit-date-number, .wpo-wcpdf-edit-document-notes" ).click(function() {
36
  $form = $(this).closest('.wcpdf-data-fields-section');
42
  if( $form.find(".read-only").is(":visible") ) {
43
  $form.find(".read-only").hide();
44
  $form.find(".editable").show();
45
+ $form.find(':input').attr('disabled', false);
46
  } else {
47
  $form.find(".read-only").show();
48
  $form.find(".editable").hide();
49
+ $form.find(':input').attr('disabled', true);
50
  }
51
  });
52
 
89
  $(this).addClass('wcpdf-regenerate-spin');
90
  $form = $(this).closest('.wcpdf-data-fields');
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  // create an object with the data attributes
93
  form_data_attributes = $form.data();
94
 
95
+ // create a serialized string with the form inputs name/value
96
+ serialized = $form.find(":input:visible:not(:disabled)").serialize();
97
+
98
  // Make sure all feedback icons are hidden before each call
99
  $form.find('.document-action-success, .document-action-failed').hide();
100
 
103
  data: {
104
  action: 'wpo_wcpdf_regenerate_document',
105
  security: $(this).data('nonce'),
106
+ form_data: serialized,
107
  order_id: form_data_attributes.order_id,
108
  document_type: form_data_attributes.document,
109
  },
assets/js/setup-wizard.js CHANGED
@@ -1,20 +1,20 @@
1
- jQuery( function( $ ) {
2
-
3
- $( '.tab' ).click(function() {
4
- $( this ).closest('.extra-field').find('.tab').removeClass( 'active' );
5
- $( this ).addClass( 'active' );
6
- var $language = $( this ).attr('id');
7
- console.log($language);
8
- $( this ).siblings('.extra-field-input').hide();
9
- $('.' + $language ).show();
10
- });
11
-
12
- // Show Preview of logo
13
- $('#file-upload').change( function(event) {
14
- if ( event.target.files[0] ) {
15
- var tmppath = URL.createObjectURL(event.target.files[0]);
16
- $( '#logo-preview' ).find( "img" ).attr( 'src',tmppath );
17
- }
18
- });
19
-
20
- });
1
+ jQuery( function( $ ) {
2
+
3
+ $( '.tab' ).click(function() {
4
+ $( this ).closest('.extra-field').find('.tab').removeClass( 'active' );
5
+ $( this ).addClass( 'active' );
6
+ var $language = $( this ).attr('id');
7
+ console.log($language);
8
+ $( this ).siblings('.extra-field-input').hide();
9
+ $('.' + $language ).show();
10
+ });
11
+
12
+ // Show Preview of logo
13
+ $('#file-upload').change( function(event) {
14
+ if ( event.target.files[0] ) {
15
+ var tmppath = URL.createObjectURL(event.target.files[0]);
16
+ $( '#logo-preview' ).find( "img" ).attr( 'src',tmppath );
17
+ }
18
+ });
19
+
20
+ });
composer.json CHANGED
@@ -1,6 +1,5 @@
1
- {
2
- "require": {
3
- "php": ">=5.3.0",
4
- "dompdf/dompdf": "*"
5
- }
6
- }
1
+ {
2
+ "require": {
3
+ "dompdf/dompdf": "^1.0"
4
+ }
5
+ }
 
composer.lock CHANGED
@@ -1,207 +1,225 @@
1
- {
2
- "_readme": [
3
- "This file locks the dependencies of your project to a known state",
4
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
- "This file is @generated automatically"
6
- ],
7
- "content-hash": "7e8e737c6fffa1c43aefc1018cab381f",
8
- "packages": [
9
- {
10
- "name": "dompdf/dompdf",
11
- "version": "v0.8.3",
12
- "source": {
13
- "type": "git",
14
- "url": "https://github.com/dompdf/dompdf.git",
15
- "reference": "75f13c700009be21a1965dc2c5b68a8708c22ba2"
16
- },
17
- "dist": {
18
- "type": "zip",
19
- "url": "https://api.github.com/repos/dompdf/dompdf/zipball/75f13c700009be21a1965dc2c5b68a8708c22ba2",
20
- "reference": "75f13c700009be21a1965dc2c5b68a8708c22ba2",
21
- "shasum": ""
22
- },
23
- "require": {
24
- "ext-dom": "*",
25
- "ext-mbstring": "*",
26
- "phenx/php-font-lib": "0.5.*",
27
- "phenx/php-svg-lib": "0.3.*",
28
- "php": ">=5.4.0"
29
- },
30
- "require-dev": {
31
- "phpunit/phpunit": "^4.8|^5.5|^6.5",
32
- "squizlabs/php_codesniffer": "2.*"
33
- },
34
- "suggest": {
35
- "ext-gd": "Needed to process images",
36
- "ext-gmagick": "Improves image processing performance",
37
- "ext-imagick": "Improves image processing performance"
38
- },
39
- "type": "library",
40
- "extra": {
41
- "branch-alias": {
42
- "dev-develop": "0.7-dev"
43
- }
44
- },
45
- "autoload": {
46
- "psr-4": {
47
- "Dompdf\\": "src/"
48
- },
49
- "classmap": [
50
- "lib/"
51
- ]
52
- },
53
- "notification-url": "https://packagist.org/downloads/",
54
- "license": [
55
- "LGPL-2.1"
56
- ],
57
- "authors": [
58
- {
59
- "name": "Fabien Ménager",
60
- "email": "fabien.menager@gmail.com"
61
- },
62
- {
63
- "name": "Brian Sweeney",
64
- "email": "eclecticgeek@gmail.com"
65
- },
66
- {
67
- "name": "Gabriel Bull",
68
- "email": "me@gabrielbull.com"
69
- }
70
- ],
71
- "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
72
- "homepage": "https://github.com/dompdf/dompdf",
73
- "time": "2018-12-14T02:40:31+00:00"
74
- },
75
- {
76
- "name": "phenx/php-font-lib",
77
- "version": "0.5.1",
78
- "source": {
79
- "type": "git",
80
- "url": "https://github.com/PhenX/php-font-lib.git",
81
- "reference": "760148820110a1ae0936e5cc35851e25a938bc97"
82
- },
83
- "dist": {
84
- "type": "zip",
85
- "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/760148820110a1ae0936e5cc35851e25a938bc97",
86
- "reference": "760148820110a1ae0936e5cc35851e25a938bc97",
87
- "shasum": ""
88
- },
89
- "require-dev": {
90
- "phpunit/phpunit": "^4.8"
91
- },
92
- "type": "library",
93
- "autoload": {
94
- "psr-4": {
95
- "FontLib\\": "src/FontLib"
96
- }
97
- },
98
- "notification-url": "https://packagist.org/downloads/",
99
- "license": [
100
- "LGPL-3.0"
101
- ],
102
- "authors": [
103
- {
104
- "name": "Fabien Ménager",
105
- "email": "fabien.menager@gmail.com"
106
- }
107
- ],
108
- "description": "A library to read, parse, export and make subsets of different types of font files.",
109
- "homepage": "https://github.com/PhenX/php-font-lib",
110
- "time": "2017-09-13T16:14:37+00:00"
111
- },
112
- {
113
- "name": "phenx/php-svg-lib",
114
- "version": "v0.3.2",
115
- "source": {
116
- "type": "git",
117
- "url": "https://github.com/PhenX/php-svg-lib.git",
118
- "reference": "ccc46ef6340d4b8a4a68047e68d8501ea961442c"
119
- },
120
- "dist": {
121
- "type": "zip",
122
- "url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/ccc46ef6340d4b8a4a68047e68d8501ea961442c",
123
- "reference": "ccc46ef6340d4b8a4a68047e68d8501ea961442c",
124
- "shasum": ""
125
- },
126
- "require": {
127
- "sabberworm/php-css-parser": "8.1.*"
128
- },
129
- "require-dev": {
130
- "phpunit/phpunit": "~5.0"
131
- },
132
- "type": "library",
133
- "autoload": {
134
- "psr-0": {
135
- "Svg\\": "src/"
136
- }
137
- },
138
- "notification-url": "https://packagist.org/downloads/",
139
- "license": [
140
- "LGPL-3.0"
141
- ],
142
- "authors": [
143
- {
144
- "name": "Fabien Ménager",
145
- "email": "fabien.menager@gmail.com"
146
- }
147
- ],
148
- "description": "A library to read, parse and export to PDF SVG files.",
149
- "homepage": "https://github.com/PhenX/php-svg-lib",
150
- "time": "2018-06-03T10:10:03+00:00"
151
- },
152
- {
153
- "name": "sabberworm/php-css-parser",
154
- "version": "8.1.0",
155
- "source": {
156
- "type": "git",
157
- "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
158
- "reference": "850cbbcbe7fbb155387a151ea562897a67e242ef"
159
- },
160
- "dist": {
161
- "type": "zip",
162
- "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/850cbbcbe7fbb155387a151ea562897a67e242ef",
163
- "reference": "850cbbcbe7fbb155387a151ea562897a67e242ef",
164
- "shasum": ""
165
- },
166
- "require": {
167
- "php": ">=5.3.2"
168
- },
169
- "require-dev": {
170
- "phpunit/phpunit": "*"
171
- },
172
- "type": "library",
173
- "autoload": {
174
- "psr-0": {
175
- "Sabberworm\\CSS": "lib/"
176
- }
177
- },
178
- "notification-url": "https://packagist.org/downloads/",
179
- "license": [
180
- "MIT"
181
- ],
182
- "authors": [
183
- {
184
- "name": "Raphael Schweikert"
185
- }
186
- ],
187
- "description": "Parser for CSS Files written in PHP",
188
- "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
189
- "keywords": [
190
- "css",
191
- "parser",
192
- "stylesheet"
193
- ],
194
- "time": "2016-07-19T19:14:21+00:00"
195
- }
196
- ],
197
- "packages-dev": [],
198
- "aliases": [],
199
- "minimum-stability": "stable",
200
- "stability-flags": [],
201
- "prefer-stable": false,
202
- "prefer-lowest": false,
203
- "platform": {
204
- "php": ">=5.3.0"
205
- },
206
- "platform-dev": []
207
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+ "This file is @generated automatically"
6
+ ],
7
+ "content-hash": "7c2abc1e1b0f348160eb65a9bc21787f",
8
+ "packages": [
9
+ {
10
+ "name": "dompdf/dompdf",
11
+ "version": "v1.0.2",
12
+ "source": {
13
+ "type": "git",
14
+ "url": "https://github.com/dompdf/dompdf.git",
15
+ "reference": "8768448244967a46d6e67b891d30878e0e15d25c"
16
+ },
17
+ "dist": {
18
+ "type": "zip",
19
+ "url": "https://api.github.com/repos/dompdf/dompdf/zipball/8768448244967a46d6e67b891d30878e0e15d25c",
20
+ "reference": "8768448244967a46d6e67b891d30878e0e15d25c",
21
+ "shasum": ""
22
+ },
23
+ "require": {
24
+ "ext-dom": "*",
25
+ "ext-mbstring": "*",
26
+ "phenx/php-font-lib": "^0.5.2",
27
+ "phenx/php-svg-lib": "^0.3.3",
28
+ "php": "^7.1 || ^8.0"
29
+ },
30
+ "require-dev": {
31
+ "mockery/mockery": "^1.3",
32
+ "phpunit/phpunit": "^7.5 || ^8 || ^9",
33
+ "squizlabs/php_codesniffer": "^3.5"
34
+ },
35
+ "suggest": {
36
+ "ext-gd": "Needed to process images",
37
+ "ext-gmagick": "Improves image processing performance",
38
+ "ext-imagick": "Improves image processing performance",
39
+ "ext-zlib": "Needed for pdf stream compression"
40
+ },
41
+ "type": "library",
42
+ "extra": {
43
+ "branch-alias": {
44
+ "dev-develop": "0.7-dev"
45
+ }
46
+ },
47
+ "autoload": {
48
+ "psr-4": {
49
+ "Dompdf\\": "src/"
50
+ },
51
+ "classmap": [
52
+ "lib/"
53
+ ]
54
+ },
55
+ "notification-url": "https://packagist.org/downloads/",
56
+ "license": [
57
+ "LGPL-2.1"
58
+ ],
59
+ "authors": [
60
+ {
61
+ "name": "Fabien Ménager",
62
+ "email": "fabien.menager@gmail.com"
63
+ },
64
+ {
65
+ "name": "Brian Sweeney",
66
+ "email": "eclecticgeek@gmail.com"
67
+ },
68
+ {
69
+ "name": "Gabriel Bull",
70
+ "email": "me@gabrielbull.com"
71
+ }
72
+ ],
73
+ "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
74
+ "homepage": "https://github.com/dompdf/dompdf",
75
+ "support": {
76
+ "issues": "https://github.com/dompdf/dompdf/issues",
77
+ "source": "https://github.com/dompdf/dompdf/tree/v1.0.2"
78
+ },
79
+ "time": "2021-01-08T14:18:52+00:00"
80
+ },
81
+ {
82
+ "name": "phenx/php-font-lib",
83
+ "version": "0.5.2",
84
+ "source": {
85
+ "type": "git",
86
+ "url": "https://github.com/PhenX/php-font-lib.git",
87
+ "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8"
88
+ },
89
+ "dist": {
90
+ "type": "zip",
91
+ "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8",
92
+ "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8",
93
+ "shasum": ""
94
+ },
95
+ "require-dev": {
96
+ "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7"
97
+ },
98
+ "type": "library",
99
+ "autoload": {
100
+ "psr-4": {
101
+ "FontLib\\": "src/FontLib"
102
+ }
103
+ },
104
+ "notification-url": "https://packagist.org/downloads/",
105
+ "license": [
106
+ "LGPL-3.0"
107
+ ],
108
+ "authors": [
109
+ {
110
+ "name": "Fabien Ménager",
111
+ "email": "fabien.menager@gmail.com"
112
+ }
113
+ ],
114
+ "description": "A library to read, parse, export and make subsets of different types of font files.",
115
+ "homepage": "https://github.com/PhenX/php-font-lib",
116
+ "support": {
117
+ "issues": "https://github.com/PhenX/php-font-lib/issues",
118
+ "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2"
119
+ },
120
+ "time": "2020-03-08T15:31:32+00:00"
121
+ },
122
+ {
123
+ "name": "phenx/php-svg-lib",
124
+ "version": "v0.3.3",
125
+ "source": {
126
+ "type": "git",
127
+ "url": "https://github.com/PhenX/php-svg-lib.git",
128
+ "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32"
129
+ },
130
+ "dist": {
131
+ "type": "zip",
132
+ "url": "https://api.github.com/repos/PhenX/php-svg-lib/zipball/5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
133
+ "reference": "5fa61b65e612ce1ae15f69b3d223cb14ecc60e32",
134
+ "shasum": ""
135
+ },
136
+ "require": {
137
+ "sabberworm/php-css-parser": "^8.3"
138
+ },
139
+ "require-dev": {
140
+ "phpunit/phpunit": "^5.5|^6.5"
141
+ },
142
+ "type": "library",
143
+ "autoload": {
144
+ "psr-4": {
145
+ "Svg\\": "src/Svg"
146
+ }
147
+ },
148
+ "notification-url": "https://packagist.org/downloads/",
149
+ "license": [
150
+ "LGPL-3.0"
151
+ ],
152
+ "authors": [
153
+ {
154
+ "name": "Fabien Ménager",
155
+ "email": "fabien.menager@gmail.com"
156
+ }
157
+ ],
158
+ "description": "A library to read, parse and export to PDF SVG files.",
159
+ "homepage": "https://github.com/PhenX/php-svg-lib",
160
+ "support": {
161
+ "issues": "https://github.com/PhenX/php-svg-lib/issues",
162
+ "source": "https://github.com/PhenX/php-svg-lib/tree/master"
163
+ },
164
+ "time": "2019-09-11T20:02:13+00:00"
165
+ },
166
+ {
167
+ "name": "sabberworm/php-css-parser",
168
+ "version": "8.3.1",
169
+ "source": {
170
+ "type": "git",
171
+ "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
172
+ "reference": "d217848e1396ef962fb1997cf3e2421acba7f796"
173
+ },
174
+ "dist": {
175
+ "type": "zip",
176
+ "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/d217848e1396ef962fb1997cf3e2421acba7f796",
177
+ "reference": "d217848e1396ef962fb1997cf3e2421acba7f796",
178
+ "shasum": ""
179
+ },
180
+ "require": {
181
+ "php": ">=5.3.2"
182
+ },
183
+ "require-dev": {
184
+ "codacy/coverage": "^1.4",
185
+ "phpunit/phpunit": "~4.8"
186
+ },
187
+ "type": "library",
188
+ "autoload": {
189
+ "psr-0": {
190
+ "Sabberworm\\CSS": "lib/"
191
+ }
192
+ },
193
+ "notification-url": "https://packagist.org/downloads/",
194
+ "license": [
195
+ "MIT"
196
+ ],
197
+ "authors": [
198
+ {
199
+ "name": "Raphael Schweikert"
200
+ }
201
+ ],
202
+ "description": "Parser for CSS Files written in PHP",
203
+ "homepage": "http://www.sabberworm.com/blog/2010/6/10/php-css-parser",
204
+ "keywords": [
205
+ "css",
206
+ "parser",
207
+ "stylesheet"
208
+ ],
209
+ "support": {
210
+ "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
211
+ "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.3.1"
212
+ },
213
+ "time": "2020-06-01T09:10:00+00:00"
214
+ }
215
+ ],
216
+ "packages-dev": [],
217
+ "aliases": [],
218
+ "minimum-stability": "stable",
219
+ "stability-flags": [],
220
+ "prefer-stable": false,
221
+ "prefer-lowest": false,
222
+ "platform": [],
223
+ "platform-dev": [],
224
+ "plugin-api-version": "2.0.0"
225
+ }
includes/class-wcpdf-admin.php CHANGED
@@ -358,113 +358,155 @@ class Admin {
358
  <?php
359
  }
360
 
361
- /**
362
- * Add metabox for invoice number & date
363
- */
364
- public function data_input_box_content ( $post ) {
365
  $order = WCX::get_order( $post->ID );
366
  $this->disable_storing_document_settings();
 
367
 
368
- do_action( 'wpo_wcpdf_meta_box_start', $post->ID );
369
-
370
- if ( $invoice = wcpdf_get_invoice( $order ) ) {
371
- $invoice_number = $invoice->get_number();
372
- $invoice_date = $invoice->get_date();
373
- $invoice_notes = !empty($invoice->get_document_notes()) ? $invoice->get_document_notes() : null;
374
 
375
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
 
377
- <div class="wcpdf-data-fields" data-document="invoice" data-order_id="<?php echo WCX_Order::get_id( $order ); ?>">
378
- <section class="wcpdf-data-fields-section number-date">
379
- <h4>
380
- <?php echo $invoice->get_title(); ?><?php if ($invoice->exists()) : ?>
381
- <span class="wpo-wcpdf-edit-date-number dashicons dashicons-edit"></span>
382
- <span class="wpo-wcpdf-delete-document dashicons dashicons-trash" data-nonce="<?php echo wp_create_nonce( "wpo_wcpdf_delete_document" ); ?>"></span>
383
- <?php do_action( 'wpo_wcpdf_document_actions', $invoice ); ?>
384
- <?php endif; ?>
385
- </h4>
386
-
387
- <!-- Read only -->
388
- <div class="read-only">
389
- <?php if ($invoice->exists()) : ?>
390
- <div class="invoice-number">
391
- <p class="form-field _wcpdf_invoice_number_field ">
392
- <p>
393
- <span><strong><?php _e( 'Invoice Number', 'woocommerce-pdf-invoices-packing-slips' ); ?>:</strong></span>
394
- <span><?php if (!empty($invoice_number)) echo $invoice_number->get_formatted(); ?></span>
395
- </p>
396
- </p>
397
- </div>
 
398
 
399
- <div class="invoice-date">
400
- <p class="form-field form-field-wide">
401
- <p>
402
- <span><strong><?php _e( 'Invoice Date:', 'woocommerce-pdf-invoices-packing-slips' ); ?></strong></span>
403
- <span><?php if (!empty($invoice_date)) echo $invoice_date->date_i18n( wc_date_format().' @ '.wc_time_format() ); ?></span>
404
- </p>
405
- </p>
406
- </div>
407
 
408
- <?php do_action( 'wpo_wcpdf_meta_box_after_document_data', $invoice, $order ); ?>
 
 
 
 
409
 
410
- <?php else : ?>
411
- <span class="wpo-wcpdf-set-date-number button"><?php _e( 'Set invoice number & date', 'woocommerce-pdf-invoices-packing-slips' ) ?></span>
412
- <?php endif; ?>
413
- </div>
414
 
415
- <!-- Editable -->
416
- <div class="editable">
417
- <p class="form-field _wcpdf_invoice_number_field ">
418
- <label for="_wcpdf_invoice_number"><?php _e( 'Invoice Number (unformatted!)', 'woocommerce-pdf-invoices-packing-slips' ); ?>:</label>
419
- <?php if ( $invoice->exists() && !empty($invoice_number) ) : ?>
420
- <input type="text" class="short" style="" name="_wcpdf_invoice_number" id="_wcpdf_invoice_number" value="<?php echo $invoice_number->get_plain(); ?>" disabled="disabled">
421
- <?php else : ?>
422
- <input type="text" class="short" style="" name="_wcpdf_invoice_number" id="_wcpdf_invoice_number" value="" disabled="disabled">
423
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  </p>
 
 
425
  <p class="form-field form-field-wide">
426
- <label for="_wcpdf_invoice_date"><?php _e( 'Invoice Date:', 'woocommerce-pdf-invoices-packing-slips' ); ?></label>
427
- <?php if ( $invoice->exists() && !empty($invoice_date) ) : ?>
428
- <input type="text" class="date-picker-field" name="_wcpdf_invoice_date" id="_wcpdf_invoice_date" maxlength="10" value="<?php echo $invoice_date->date_i18n( 'Y-m-d' ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" disabled="disabled"/>@<input type="number" class="hour" disabled="disabled" placeholder="<?php _e( 'h', 'woocommerce' ) ?>" name="_wcpdf_invoice_date_hour" id="_wcpdf_invoice_date_hour" min="0" max="23" size="2" value="<?php echo $invoice_date->date_i18n( 'H' ) ?>" pattern="([01]?[0-9]{1}|2[0-3]{1})" />:<input type="number" class="minute" placeholder="<?php _e( 'm', 'woocommerce' ) ?>" name="_wcpdf_invoice_date_minute" id="_wcpdf_invoice_date_minute" min="0" max="59" size="2" value="<?php echo $invoice_date->date_i18n( 'i' ); ?>" pattern="[0-5]{1}[0-9]{1}" disabled="disabled" />
429
- <?php else : ?>
430
- <input type="text" class="date-picker-field" name="_wcpdf_invoice_date" id="_wcpdf_invoice_date" maxlength="10" disabled="disabled" value="<?php echo date_i18n( 'Y-m-d' ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" />@<input type="number" class="hour" disabled="disabled" placeholder="<?php _e( 'h', 'woocommerce' ) ?>" name="_wcpdf_invoice_date_hour" id="_wcpdf_invoice_date_hour" min="0" max="23" size="2" value="<?php echo date_i18n( 'H' ); ?>" pattern="([01]?[0-9]{1}|2[0-3]{1})" />:<input type="number" class="minute" placeholder="<?php _e( 'm', 'woocommerce' ) ?>" name="_wcpdf_invoice_date_minute" id="_wcpdf_invoice_date_minute" min="0" max="59" size="2" value="<?php echo date_i18n( 'i' ); ?>" pattern="[0-5]{1}[0-9]{1}" disabled="disabled" />
431
- <?php endif; ?>
432
  </p>
433
  </div>
434
- </section>
435
- <?php do_action( 'wpo_wcpdf_meta_box_before_document_notes', $invoice, $order ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436
  <section class="wcpdf-data-fields-section notes">
437
  <p class="form-field form-field-wide">
438
  <div>
439
- <span><strong><?php _e( 'Notes (printed in the invoice):', 'woocommerce-pdf-invoices-packing-slips' ); ?></strong></span>
440
  <span class="wpo-wcpdf-edit-document-notes dashicons dashicons-edit"></span>
441
  </div>
442
  <!-- Read only -->
443
  <div class="read-only">
444
- <?php if ( $invoice->exists() ) : ?>
445
- <p><?php if (!empty($invoice_notes)) echo $invoice_notes; ?></p>
446
- <?php endif; ?>
447
  </div>
448
  <!-- Editable -->
449
  <div class="editable">
450
  <p class="form-field form-field-wide">
451
- <?php if ( $invoice->exists() ) : ?>
452
- <p><textarea name="_wcpdf_invoice_notes" cols="60" rows="5" disabled="disabled"><?php if (!empty($invoice_notes)) echo $invoice_notes; ?></textarea></p>
453
- <?php else : ?>
454
- <p><textarea name="_wcpdf_invoice_notes" cols="60" rows="5" disabled="disabled"></textarea></p>
455
- <?php endif; ?>
456
  </p>
457
  </div>
458
  </p>
459
  </section>
460
- <?php do_action( 'wpo_wcpdf_meta_box_after_document_notes', $invoice, $order ); ?>
461
- </div>
462
 
 
463
 
464
- <?php
465
- }
466
 
467
- do_action( 'wpo_wcpdf_meta_box_end', $post->ID );
 
468
  }
469
 
470
  public function add_regenerate_document_button( $document ) {
@@ -533,6 +575,9 @@ class Admin {
533
  $invoice->set_data( $document_data, $order );
534
  $invoice->save();
535
  }
 
 
 
536
  }
537
  }
538
 
@@ -710,7 +755,7 @@ class Admin {
710
  ) );
711
  }
712
 
713
- if( empty($_POST['form_data']) || empty($_POST['order_id']) || empty($_POST['document_type']) ) {
714
  wp_send_json_error( array(
715
  'message' => 'incomplete request',
716
  ) );
@@ -725,11 +770,25 @@ class Admin {
725
  $order_id = absint( $_POST['order_id'] );
726
  $order = WCX::get_order( $order_id );
727
  $document_type = sanitize_text_field( $_POST['document_type'] );
728
- $form_data = json_decode( stripslashes( $_POST['form_data'] ), true );
 
 
 
 
 
 
 
 
 
729
 
730
  try {
731
  $document = wcpdf_get_document( $document_type, wc_get_order( $order_id ) );
732
  if ( !empty($document) && $document->exists() ) {
 
 
 
 
 
733
  // save document data
734
  $document_data = $this->process_order_document_form_data( $form_data, $document->slug );
735
  $document->regenerate( $order, $document_data );
@@ -750,6 +809,22 @@ class Admin {
750
  }
751
  }
752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  public function debug_enabled_warning( $wp_admin_bar ) {
754
  if ( isset(WPO_WCPDF()->settings->debug_settings['enable_debug']) && current_user_can( 'administrator' ) ) {
755
  $status_settings_url = 'admin.php?page=wpo_wcpdf_options_page&tab=debug';
@@ -770,10 +845,11 @@ class Admin {
770
  $data['number'] = sanitize_text_field( $form_data['_wcpdf_'.$document_slug.'_number'] );
771
  }
772
 
773
- if( ! empty( $form_data['_wcpdf_'.$document_slug.'_date'] ) ) {
774
- $date = $form_data['_wcpdf_'.$document_slug.'_date'];
775
- $hour = ! empty( $form_data['_wcpdf_'.$document_slug.'_date_hour'] ) ? $form_data['_wcpdf_'.$document_slug.'_date_hour'] : '00';
776
- $minute = ! empty( $form_data['_wcpdf_'.$document_slug.'_date_minute'] ) ? $form_data['_wcpdf_'.$document_slug.'_date_minute'] : '00';
 
777
 
778
  // clean & sanitize input
779
  $date = date( 'Y-m-d', strtotime( $date ) );
@@ -781,7 +857,7 @@ class Admin {
781
  $minute = sprintf('%02d', intval( $minute ) );
782
  $data['date'] = "{$date} {$hour}:{$minute}:00";
783
 
784
- } elseif ( empty( $_POST['_wcpdf_'.$document_slug.'_date'] ) && !empty( $_POST['_wcpdf_'.$document_slug.'_number'] ) ) {
785
  $data['date'] = current_time( 'timestamp', true );
786
  }
787
 
358
  <?php
359
  }
360
 
361
+ public function data_input_box_content( $post ) {
 
 
 
362
  $order = WCX::get_order( $post->ID );
363
  $this->disable_storing_document_settings();
364
+ $invoice = wcpdf_get_document( 'invoice', $order );
365
 
366
+ do_action( 'wpo_wcpdf_meta_box_start', $order, $this );
 
 
 
 
 
367
 
368
+ if ( $invoice && $invoice->exists() ) {
369
+ // data
370
+ $data = array(
371
+ 'number' => array(
372
+ 'label' => __( 'Invoice Number:', 'woocommerce-pdf-invoices-packing-slips' ),
373
+ ),
374
+ 'date' => array(
375
+ 'label' => __( 'Invoice Date:', 'woocommerce-pdf-invoices-packing-slips' ),
376
+ ),
377
+ 'notes' => array(
378
+ 'label' => __( 'Notes (printed in the invoice):', 'woocommerce-pdf-invoices-packing-slips' ),
379
+ ),
380
+ );
381
+ // output
382
+ $this->output_number_date_edit_fields( $invoice, $data );
383
 
384
+ } else {
385
+ printf( '<div class="wcpdf-data-fields"><p>&#9888; %s</p></div>', __( 'Invoice not generated for this order.', 'woocommerce-pdf-invoices-packing-slips' ) );
386
+ }
387
+
388
+ do_action( 'wpo_wcpdf_meta_box_end', $order, $this );
389
+ }
390
+
391
+ public function get_current_values_for_document( $document, $data ) {
392
+ $current = array(
393
+ 'number' => array(
394
+ 'plain' => ! empty( $document->get_number() ) ? $document->get_number()->get_plain() : '',
395
+ 'formatted' => ! empty( $document->get_number() ) ? $document->get_number()->get_formatted() : '',
396
+ 'name' => "_wcpdf_{$document->slug}_number",
397
+ ),
398
+ 'date' => array(
399
+ 'formatted' => ! empty( $document->get_date() ) ? $document->get_date()->date_i18n( wc_date_format().' @ '.wc_time_format() ) : '',
400
+ 'date' => ! empty( $document->get_date() ) ? $document->get_date()->date_i18n( 'Y-m-d' ) : '',
401
+ 'hour' => ! empty( $document->get_date() ) ? $document->get_date()->date_i18n( 'H' ) : '',
402
+ 'minute' => ! empty( $document->get_date() ) ? $document->get_date()->date_i18n( 'i' ) : '',
403
+ 'name' => "_wcpdf_{$document->slug}_date",
404
+ ),
405
+ );
406
 
407
+ if ( !empty( $data['notes'] ) ) {
408
+ $current['notes'] = array(
409
+ 'value' => $document->get_document_notes(),
410
+ 'name' =>"_wcpdf_{$document->slug}_notes",
411
+ );
412
+ }
 
 
413
 
414
+ foreach ( $data as $key => $value ) {
415
+ if ( isset( $current[$key] ) ) {
416
+ $data[$key] = array_merge( $current[$key], $value );
417
+ }
418
+ }
419
 
420
+ return apply_filters( 'wpo_wcpdf_current_values_for_document', $data, $document );
421
+ }
 
 
422
 
423
+ public function output_number_date_edit_fields( $document, $data ) {
424
+ if( empty( $document ) || empty( $data ) ) return;
425
+ $data = $this->get_current_values_for_document( $document, $data );
426
+ ?>
427
+ <div class="wcpdf-data-fields" data-document="<?= $document->get_type(); ?>" data-order_id="<?php echo WCX_Order::get_id( $document->order ); ?>">
428
+ <section class="wcpdf-data-fields-section number-date">
429
+ <!-- Title -->
430
+ <h4>
431
+ <?= $document->get_title(); ?>
432
+ <span class="wpo-wcpdf-edit-date-number dashicons dashicons-edit"></span>
433
+ <span class="wpo-wcpdf-delete-document dashicons dashicons-trash" data-nonce="<?php echo wp_create_nonce( "wpo_wcpdf_delete_document" ); ?>"></span>
434
+ <?php do_action( 'wpo_wcpdf_document_actions', $document ); ?>
435
+ </h4>
436
+
437
+ <!-- Read only -->
438
+ <div class="read-only">
439
+ <div class="<?= $document->get_type(); ?>-number">
440
+ <p class="form-field <?= $data['number']['name']; ?>_field">
441
+ <p>
442
+ <span><strong><?= $data['number']['label']; ?></strong></span>
443
+ <span><?= $data['number']['formatted']; ?></span>
444
+ </p>
445
  </p>
446
+ </div>
447
+ <div class="<?= $document->get_type(); ?>-date">
448
  <p class="form-field form-field-wide">
449
+ <p>
450
+ <span><strong><?= $data['date']['label']; ?></strong></span>
451
+ <span><?= $data['date']['formatted']; ?></span>
452
+ </p>
 
 
453
  </p>
454
  </div>
455
+ <?php do_action( 'wpo_wcpdf_meta_box_after_document_data', $document, $document->order ); ?>
456
+ </div>
457
+
458
+ <!-- Editable -->
459
+ <div class="editable">
460
+ <p class="form-field <?= $data['number']['name']; ?>_field ">
461
+ <label for="<?= $data['number']['name']; ?>"><?= $data['number']['label']; ?></label>
462
+ <?php if ( ! empty( $data['number']['plain'] ) ) : ?>
463
+ <input type="text" class="short" style="" name="<?= $data['number']['name']; ?>" id="<?= $data['number']['name']; ?>" value="<?= $data['number']['plain']; ?>" disabled="disabled" > (<?= __( 'unformatted!', 'woocommerce-pdf-invoices-packing-slips' ) ?>)
464
+ <?php else : ?>
465
+ <input type="text" class="short" style="" name="<?= $data['number']['name']; ?>" id="<?= $data['number']['name']; ?>" value="" disabled="disabled" > (<?= __( 'unformatted!', 'woocommerce-pdf-invoices-packing-slips' ) ?>)
466
+ <?php endif; ?>
467
+ </p>
468
+ <p class="form-field form-field-wide">
469
+ <label for="<?= $data['date']['name'] ?>[date]"><?= $data['date']['label']; ?></label>
470
+ <?php if ( ! empty( $data['date']['date'] ) ) : ?>
471
+ <input type="text" class="date-picker-field" name="<?= $data['date']['name'] ?>[date]" id="<?= $data['date']['name'] ?>[date]" maxlength="10" value="<?= $data['date']['date']; ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" disabled="disabled"/>@<input type="number" class="hour" disabled="disabled" placeholder="<?php _e( 'h', 'woocommerce' ); ?>" name="<?= $data['date']['name']; ?>[hour]" id="<?= $data['date']['name']; ?>[hour]" min="0" max="23" size="2" value="<?= $data['date']['hour']; ?>" pattern="([01]?[0-9]{1}|2[0-3]{1})" />:<input type="number" class="minute" placeholder="<?php _e( 'm', 'woocommerce' ); ?>" name="<?= $data['date']['name']; ?>[minute]" id="<?= $data['date']['name']; ?>[minute]" min="0" max="59" size="2" value="<?= $data['date']['minute']; ?>" pattern="[0-5]{1}[0-9]{1}" disabled="disabled" />
472
+ <?php else : ?>
473
+ <input type="text" class="date-picker-field" name="<?= $data['date']['name'] ?>[date]" id="<?= $data['date']['name'] ?>[date]" maxlength="10" disabled="disabled" value="<?php echo date_i18n( 'Y-m-d' ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" />@<input type="number" class="hour" disabled="disabled" placeholder="<?php _e( 'h', 'woocommerce' ); ?>" name="<?= $data['date']['name']; ?>[hour]" id="<?= $data['date']['name']; ?>[hour]" min="0" max="23" size="2" value="<?php echo date_i18n( 'H' ); ?>" pattern="([01]?[0-9]{1}|2[0-3]{1})" />:<input type="number" class="minute" placeholder="<?php _e( 'm', 'woocommerce' ); ?>" name="<?= $data['date']['name']; ?>[minute]" id="<?= $data['date']['name']; ?>[minute]" min="0" max="59" size="2" value="<?php echo date_i18n( 'i' ); ?>" pattern="[0-5]{1}[0-9]{1}" disabled="disabled" />
474
+ <?php endif; ?>
475
+ </p>
476
+ </div>
477
+ </section>
478
+
479
+ <!-- Document Notes -->
480
+ <?php if( array_key_exists( 'notes', $data ) ) : ?>
481
+
482
+ <?php do_action( 'wpo_wcpdf_meta_box_before_document_notes', $document, $document->order ); ?>
483
+
484
  <section class="wcpdf-data-fields-section notes">
485
  <p class="form-field form-field-wide">
486
  <div>
487
+ <span><strong><?= $data['notes']['label']; ?></strong></span>
488
  <span class="wpo-wcpdf-edit-document-notes dashicons dashicons-edit"></span>
489
  </div>
490
  <!-- Read only -->
491
  <div class="read-only">
492
+ <p><?= $data['notes']['value']; ?></p>
 
 
493
  </div>
494
  <!-- Editable -->
495
  <div class="editable">
496
  <p class="form-field form-field-wide">
497
+ <p><textarea name="<?= $data['notes']['name']; ?>" class="<?= $data['notes']['name']; ?>" cols="60" rows="5" disabled="disabled"><?= $data['notes']['value']; ?></textarea></p>
 
 
 
 
498
  </p>
499
  </div>
500
  </p>
501
  </section>
 
 
502
 
503
+ <?php do_action( 'wpo_wcpdf_meta_box_after_document_notes', $document, $document->order ); ?>
504
 
505
+ <?php endif; ?>
506
+ <!-- / Document Notes -->
507
 
508
+ </div>
509
+ <?php
510
  }
511
 
512
  public function add_regenerate_document_button( $document ) {
575
  $invoice->set_data( $document_data, $order );
576
  $invoice->save();
577
  }
578
+
579
+ // allow other documents to hook here and save their form data
580
+ do_action( 'wpo_wcpdf_on_save_invoice_order_data', $_POST, $order, $this );
581
  }
582
  }
583
 
755
  ) );
756
  }
757
 
758
+ if( empty($_POST['order_id']) || empty($_POST['document_type']) ) {
759
  wp_send_json_error( array(
760
  'message' => 'incomplete request',
761
  ) );
770
  $order_id = absint( $_POST['order_id'] );
771
  $order = WCX::get_order( $order_id );
772
  $document_type = sanitize_text_field( $_POST['document_type'] );
773
+
774
+ // parse form data
775
+ parse_str($_POST['form_data'], $form_data);
776
+ if ( is_array( $form_data ) ) {
777
+ foreach ( $form_data as $key => &$value ) {
778
+ if ( is_array( $value ) && !empty( $value[$order_id] ) ) {
779
+ $value = $value[$order_id];
780
+ }
781
+ }
782
+ }
783
 
784
  try {
785
  $document = wcpdf_get_document( $document_type, wc_get_order( $order_id ) );
786
  if ( !empty($document) && $document->exists() ) {
787
+ // perform legacy date fields replacements check
788
+ if( isset( $form_data["_wcpdf_{$document->slug}_date"] ) && ! is_array( $form_data["_wcpdf_{$document->slug}_date"] ) ) {
789
+ $form_data = $this->legacy_date_fields_replacements( $form_data, $document->slug );
790
+ }
791
+
792
  // save document data
793
  $document_data = $this->process_order_document_form_data( $form_data, $document->slug );
794
  $document->regenerate( $order, $document_data );
809
  }
810
  }
811
 
812
+ public function legacy_date_fields_replacements( $form_data, $document_slug ) {
813
+ $legacy_date = sanitize_text_field( $form_data["_wcpdf_{$document_slug}_date"] );
814
+ $legacy_hour = sanitize_text_field( $form_data["_wcpdf_{$document_slug}_date_hour"] );
815
+ $legacy_minute = sanitize_text_field( $form_data["_wcpdf_{$document_slug}_date_minute"] );
816
+ unset( $form_data["_wcpdf_{$document_slug}_date_hour"] );
817
+ unset( $form_data["_wcpdf_{$document_slug}_date_minute"] );
818
+
819
+ $form_data["_wcpdf_{$document_slug}_date"] = array(
820
+ 'date' => $legacy_date,
821
+ 'hour' => $legacy_hour,
822
+ 'minute' => $legacy_minute,
823
+ );
824
+
825
+ return $form_data;
826
+ }
827
+
828
  public function debug_enabled_warning( $wp_admin_bar ) {
829
  if ( isset(WPO_WCPDF()->settings->debug_settings['enable_debug']) && current_user_can( 'administrator' ) ) {
830
  $status_settings_url = 'admin.php?page=wpo_wcpdf_options_page&tab=debug';
845
  $data['number'] = sanitize_text_field( $form_data['_wcpdf_'.$document_slug.'_number'] );
846
  }
847
 
848
+ $date_entered = ! empty( $form_data['_wcpdf_'.$document_slug.'_date'] ) && ! empty( $form_data['_wcpdf_'.$document_slug.'_date']['date'] );
849
+ if( $date_entered ) {
850
+ $date = $form_data['_wcpdf_'.$document_slug.'_date']['date'];
851
+ $hour = ! empty( $form_data['_wcpdf_'.$document_slug.'_date']['hour'] ) ? $form_data['_wcpdf_'.$document_slug.'_date']['hour'] : '00';
852
+ $minute = ! empty( $form_data['_wcpdf_'.$document_slug.'_date']['minute'] ) ? $form_data['_wcpdf_'.$document_slug.'_date']['minute'] : '00';
853
 
854
  // clean & sanitize input
855
  $date = date( 'Y-m-d', strtotime( $date ) );
857
  $minute = sprintf('%02d', intval( $minute ) );
858
  $data['date'] = "{$date} {$hour}:{$minute}:00";
859
 
860
+ } elseif ( ! $date_entered && !empty( $_POST['_wcpdf_'.$document_slug.'_number'] ) ) {
861
  $data['date'] = current_time( 'timestamp', true );
862
  }
863
 
includes/class-wcpdf-install.php CHANGED
@@ -61,8 +61,8 @@ class Install {
61
  * Plugin install method. Perform any installation tasks here
62
  */
63
  protected function install() {
64
- // only install when php 5.3 or higher
65
- if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
66
  return;
67
  }
68
 
@@ -185,8 +185,8 @@ class Install {
185
  * @param string $installed_version the currently installed ('old') version
186
  */
187
  protected function upgrade( $installed_version ) {
188
- // only upgrade when php 5.3 or higher
189
- if ( version_compare( PHP_VERSION, '5.3', '<' ) ) {
190
  return;
191
  }
192
 
61
  * Plugin install method. Perform any installation tasks here
62
  */
63
  protected function install() {
64
+ // only install when php 5.6 or higher
65
+ if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
66
  return;
67
  }
68
 
185
  * @param string $installed_version the currently installed ('old') version
186
  */
187
  protected function upgrade( $installed_version ) {
188
+ // only upgrade when php 5.6 or higher
189
+ if ( version_compare( PHP_VERSION, '5.6', '<' ) ) {
190
  return;
191
  }
192
 
includes/class-wcpdf-main.php CHANGED
@@ -339,6 +339,8 @@ class Main {
339
  $document = wcpdf_get_document( $document_type, $order_ids, true );
340
 
341
  if ( $document ) {
 
 
342
  $output_format = WPO_WCPDF()->settings->get_output_format( $document_type );
343
  // allow URL override
344
  if ( isset( $_GET['output'] ) && in_array( $_GET['output'], array( 'html', 'pdf' ) ) ) {
339
  $document = wcpdf_get_document( $document_type, $order_ids, true );
340
 
341
  if ( $document ) {
342
+ do_action( 'wpo_wcpdf_document_created_manually', $document, $order_ids ); // note that $order_ids is filtered and may not be the same as the order IDs used for the document (which can be fetched from the document object itself)
343
+
344
  $output_format = WPO_WCPDF()->settings->get_output_format( $document_type );
345
  // allow URL override
346
  if ( isset( $_GET['output'] ) && in_array( $_GET['output'], array( 'html', 'pdf' ) ) ) {
includes/class-wcpdf-pdf-maker.php CHANGED
@@ -1,60 +1,61 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices;
3
-
4
- use Dompdf\Dompdf;
5
- use Dompdf\Options;
6
-
7
- if ( ! defined( 'ABSPATH' ) ) {
8
- exit; // Exit if accessed directly
9
- }
10
-
11
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\PDF_Maker' ) ) :
12
-
13
- class PDF_Maker {
14
- public $html;
15
- public $settings;
16
-
17
- public function __construct( $html, $settings = array() ) {
18
- $this->html = $html;
19
-
20
- $default_settings = array(
21
- 'paper_size' => 'A4',
22
- 'paper_orientation' => 'portrait',
23
- 'font_subsetting' => false,
24
- );
25
- $this->settings = $settings + $default_settings;
26
- }
27
-
28
- public function output() {
29
- if ( empty( $this->html ) ) {
30
- return;
31
- }
32
-
33
- require WPO_WCPDF()->plugin_path() . '/vendor/autoload.php';
34
-
35
- // set options
36
- $options = new Options( apply_filters( 'wpo_wcpdf_dompdf_options', array(
37
- 'defaultFont' => 'dejavu sans',
38
- 'tempDir' => WPO_WCPDF()->main->get_tmp_path('dompdf'),
39
- 'logOutputFile' => WPO_WCPDF()->main->get_tmp_path('dompdf') . "/log.htm",
40
- 'fontDir' => WPO_WCPDF()->main->get_tmp_path('fonts'),
41
- 'fontCache' => WPO_WCPDF()->main->get_tmp_path('fonts'),
42
- 'isRemoteEnabled' => true,
43
- 'isFontSubsettingEnabled' => $this->settings['font_subsetting'],
44
- // HTML5 parser requires iconv
45
- 'isHtml5ParserEnabled' => ( isset(WPO_WCPDF()->settings->debug_settings['use_html5_parser']) && extension_loaded('iconv') ) ? true : false,
46
- ) ) );
47
-
48
- // instantiate and use the dompdf class
49
- $dompdf = new Dompdf( $options );
50
- $dompdf->loadHtml( $this->html );
51
- $dompdf->setPaper( $this->settings['paper_size'], $this->settings['paper_orientation'] );
52
- $dompdf = apply_filters( 'wpo_wcpdf_before_dompdf_render', $dompdf, $this->html );
53
- $dompdf->render();
54
- $dompdf = apply_filters( 'wpo_wcpdf_after_dompdf_render', $dompdf, $this->html );
55
-
56
- return $dompdf->output();
57
- }
58
- }
59
-
60
- endif; // class_exists
 
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices;
3
+
4
+ use Dompdf\Dompdf;
5
+ use Dompdf\Options;
6
+
7
+ if ( ! defined( 'ABSPATH' ) ) {
8
+ exit; // Exit if accessed directly
9
+ }
10
+
11
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\PDF_Maker' ) ) :
12
+
13
+ class PDF_Maker {
14
+ public $html;
15
+ public $settings;
16
+
17
+ public function __construct( $html, $settings = array() ) {
18
+ $this->html = $html;
19
+
20
+ $default_settings = array(
21
+ 'paper_size' => 'A4',
22
+ 'paper_orientation' => 'portrait',
23
+ 'font_subsetting' => false,
24
+ );
25
+ $this->settings = $settings + $default_settings;
26
+ }
27
+
28
+ public function output() {
29
+ if ( empty( $this->html ) ) {
30
+ return;
31
+ }
32
+
33
+ require WPO_WCPDF()->plugin_path() . '/vendor/autoload.php';
34
+
35
+ // set options
36
+ $options = new Options( apply_filters( 'wpo_wcpdf_dompdf_options', array(
37
+ 'tempDir' => WPO_WCPDF()->main->get_tmp_path('dompdf'),
38
+ 'fontDir' => WPO_WCPDF()->main->get_tmp_path('fonts'),
39
+ 'fontCache' => WPO_WCPDF()->main->get_tmp_path('fonts'),
40
+ 'chroot' => array( WP_CONTENT_DIR ),
41
+ 'logOutputFile' => WPO_WCPDF()->main->get_tmp_path('dompdf') . "/log.htm",
42
+ 'defaultFont' => 'dejavu sans',
43
+ 'isRemoteEnabled' => true,
44
+ // HTML5 parser requires iconv
45
+ 'isHtml5ParserEnabled' => ( isset(WPO_WCPDF()->settings->debug_settings['use_html5_parser']) && extension_loaded('iconv') ) ? true : false,
46
+ 'isFontSubsettingEnabled' => $this->settings['font_subsetting'],
47
+ ) ) );
48
+
49
+ // instantiate and use the dompdf class
50
+ $dompdf = new Dompdf( $options );
51
+ $dompdf->loadHtml( $this->html );
52
+ $dompdf->setPaper( $this->settings['paper_size'], $this->settings['paper_orientation'] );
53
+ $dompdf = apply_filters( 'wpo_wcpdf_before_dompdf_render', $dompdf, $this->html );
54
+ $dompdf->render();
55
+ $dompdf = apply_filters( 'wpo_wcpdf_after_dompdf_render', $dompdf, $this->html );
56
+
57
+ return $dompdf->output();
58
+ }
59
+ }
60
+
61
+ endif; // class_exists
includes/class-wcpdf-setup-wizard.php CHANGED
@@ -37,6 +37,11 @@ class Setup_Wizard {
37
  if ( empty( $_GET['page'] ) || 'wpo-wcpdf-setup' !== $_GET['page'] ) {
38
  return;
39
  }
 
 
 
 
 
40
  $this->steps = array(
41
  'shop-name' => array(
42
  'name' => __( 'Shop Name', 'woocommerce-pdf-invoices-packing-slips' ),
37
  if ( empty( $_GET['page'] ) || 'wpo-wcpdf-setup' !== $_GET['page'] ) {
38
  return;
39
  }
40
+
41
+ if ( is_null ( get_current_screen() ) ) {
42
+ set_current_screen();
43
+ }
44
+
45
  $this->steps = array(
46
  'shop-name' => array(
47
  'name' => __( 'Shop Name', 'woocommerce-pdf-invoices-packing-slips' ),
includes/compatibility/abstract-wc-data-compatibility.php CHANGED
@@ -1,204 +1,204 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Compatibility;
3
-
4
- /**
5
- * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
- */
7
-
8
- defined( 'ABSPATH' ) or exit;
9
-
10
- if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\Data' ) ) :
11
-
12
- /**
13
- * WooCommerce data compatibility class.
14
- *
15
- * @since 4.6.0-dev
16
- */
17
- abstract class Data {
18
-
19
- /**
20
- * Creates aliases for add_meta_data, update_meta_data and delete_meta_data without the _data suffix
21
- *
22
- * @param string $name static function name
23
- * @param array $arguments function arguments
24
- */
25
- public static function __callStatic( $name, $arguments ) {
26
- if ( substr( $name, -strlen('_meta') ) == '_meta' && method_exists( __CLASS__, $name.'_data' ) ) {
27
- call_user_func_array( array( __CLASS__, $name.'_data' ), $arguments );
28
- }
29
- }
30
-
31
-
32
- /**
33
- * Gets an object property.
34
- *
35
- * @since 4.6.0-dev
36
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
37
- * @param string $prop the property name
38
- * @param string $context if 'view' then the value will be filtered
39
- * @param array $compat_props Compatibility properties.
40
- * @return mixed
41
- */
42
- public static function get_prop( $object, $prop, $context = 'edit', $compat_props = array() ) {
43
-
44
- $value = '';
45
-
46
- if ( WC_Core::is_wc_version_gte_3_0() ) {
47
-
48
- if ( is_callable( array( $object, "get_{$prop}" ) ) ) {
49
- $value = $object->{"get_{$prop}"}( $context );
50
- }
51
-
52
- } else {
53
-
54
- // backport the property name
55
- if ( isset( $compat_props[ $prop ] ) ) {
56
- $prop = $compat_props[ $prop ];
57
- }
58
-
59
- // if this is the 'view' context and there is an accessor method, use it
60
- if ( is_callable( array( $object, "get_{$prop}" ) ) && 'view' === $context ) {
61
- $value = $object->{"get_{$prop}"}();
62
- } else {
63
- $value = $object->$prop;
64
- }
65
- }
66
-
67
- return $value;
68
- }
69
-
70
-
71
- /**
72
- * Sets an object's properties.
73
- *
74
- * Note that this does not save any data to the database.
75
- *
76
- * @since 4.6.0-dev
77
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
78
- * @param array $props the new properties as $key => $value
79
- * @param array $compat_props Compatibility properties.
80
- * @return \WC_Data
81
- */
82
- public static function set_props( $object, $props, $compat_props = array() ) {
83
-
84
- if ( WC_Core::is_wc_version_gte_3_0() ) {
85
-
86
- $object->set_props( $props );
87
-
88
- } else {
89
-
90
- foreach ( $props as $prop => $value ) {
91
-
92
- if ( isset( $compat_props[ $prop ] ) ) {
93
- $prop = $compat_props[ $prop ];
94
- }
95
-
96
- $object->$prop = $value;
97
- }
98
- }
99
-
100
- return $object;
101
- }
102
-
103
-
104
- /**
105
- * Gets an object's stored meta value.
106
- *
107
- * @since 4.6.0-dev
108
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
109
- * @param string $key the meta key
110
- * @param bool $single whether to get the meta as a single item. Defaults to `true`
111
- * @param string $context if 'view' then the value will be filtered
112
- * @return mixed
113
- */
114
- public static function get_meta( $object, $key = '', $single = true, $context = 'edit' ) {
115
-
116
- if ( WC_Core::is_wc_version_gte_3_0() ) {
117
- $value = $object->get_meta( $key, $single, $context );
118
- } else {
119
- $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
120
- $value = get_post_meta( $object_id, $key, $single );
121
- }
122
-
123
- return $value;
124
- }
125
-
126
-
127
- /**
128
- * Stores an object meta value.
129
- *
130
- * @since 4.6.0-dev
131
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
132
- * @param string $key the meta key
133
- * @param string $value the meta value
134
- * @param string $meta_id Optional. The specific meta ID to update
135
- * @param bool $unique Optional. Whether the meta should be unique.
136
- */
137
- public static function add_meta_data( $object, $key, $value, $unique = false ) {
138
-
139
- if ( WC_Core::is_wc_version_gte_3_0() ) {
140
-
141
- $object->add_meta_data( $key, $value, $unique );
142
-
143
- $object->save_meta_data();
144
-
145
- } else {
146
-
147
- $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
148
- add_post_meta( $object_id, $key, $value, $unique );
149
- }
150
- }
151
-
152
-
153
- /**
154
- * Updates an object's stored meta value.
155
- *
156
- * @since 4.6.0-dev
157
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
158
- * @param string $key the meta key
159
- * @param string $value the meta value
160
- * @param int|strint $meta_id Optional. The specific meta ID to update
161
- */
162
- public static function update_meta_data( $object, $key, $value, $meta_id = '' ) {
163
-
164
- if ( WC_Core::is_wc_version_gte_3_0() ) {
165
-
166
- $object->update_meta_data( $key, $value, $meta_id );
167
-
168
- $object->save_meta_data();
169
-
170
- } else {
171
-
172
- $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
173
- update_post_meta( $object_id, $key, $value );
174
- }
175
- }
176
-
177
-
178
- /**
179
- * Deletes an object's stored meta value.
180
- *
181
- * @since 4.6.0-dev
182
- * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
183
- * @param string $key the meta key
184
- */
185
- public static function delete_meta_data( $object, $key ) {
186
-
187
- if ( WC_Core::is_wc_version_gte_3_0() ) {
188
-
189
- $object->delete_meta_data( $key );
190
-
191
- $object->save_meta_data();
192
-
193
- } else {
194
-
195
- $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
196
- delete_post_meta( $object_id, $key );
197
- }
198
- }
199
-
200
-
201
- }
202
-
203
-
204
- endif; // Class exists check
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Compatibility;
3
+
4
+ /**
5
+ * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
+ */
7
+
8
+ defined( 'ABSPATH' ) or exit;
9
+
10
+ if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\Data' ) ) :
11
+
12
+ /**
13
+ * WooCommerce data compatibility class.
14
+ *
15
+ * @since 4.6.0-dev
16
+ */
17
+ abstract class Data {
18
+
19
+ /**
20
+ * Creates aliases for add_meta_data, update_meta_data and delete_meta_data without the _data suffix
21
+ *
22
+ * @param string $name static function name
23
+ * @param array $arguments function arguments
24
+ */
25
+ public static function __callStatic( $name, $arguments ) {
26
+ if ( substr( $name, -strlen('_meta') ) == '_meta' && method_exists( __CLASS__, $name.'_data' ) ) {
27
+ call_user_func_array( array( __CLASS__, $name.'_data' ), $arguments );
28
+ }
29
+ }
30
+
31
+
32
+ /**
33
+ * Gets an object property.
34
+ *
35
+ * @since 4.6.0-dev
36
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
37
+ * @param string $prop the property name
38
+ * @param string $context if 'view' then the value will be filtered
39
+ * @param array $compat_props Compatibility properties.
40
+ * @return mixed
41
+ */
42
+ public static function get_prop( $object, $prop, $context = 'edit', $compat_props = array() ) {
43
+
44
+ $value = '';
45
+
46
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
47
+
48
+ if ( is_callable( array( $object, "get_{$prop}" ) ) ) {
49
+ $value = $object->{"get_{$prop}"}( $context );
50
+ }
51
+
52
+ } else {
53
+
54
+ // backport the property name
55
+ if ( isset( $compat_props[ $prop ] ) ) {
56
+ $prop = $compat_props[ $prop ];
57
+ }
58
+
59
+ // if this is the 'view' context and there is an accessor method, use it
60
+ if ( is_callable( array( $object, "get_{$prop}" ) ) && 'view' === $context ) {
61
+ $value = $object->{"get_{$prop}"}();
62
+ } else {
63
+ $value = $object->$prop;
64
+ }
65
+ }
66
+
67
+ return $value;
68
+ }
69
+
70
+
71
+ /**
72
+ * Sets an object's properties.
73
+ *
74
+ * Note that this does not save any data to the database.
75
+ *
76
+ * @since 4.6.0-dev
77
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
78
+ * @param array $props the new properties as $key => $value
79
+ * @param array $compat_props Compatibility properties.
80
+ * @return \WC_Data
81
+ */
82
+ public static function set_props( $object, $props, $compat_props = array() ) {
83
+
84
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
85
+
86
+ $object->set_props( $props );
87
+
88
+ } else {
89
+
90
+ foreach ( $props as $prop => $value ) {
91
+
92
+ if ( isset( $compat_props[ $prop ] ) ) {
93
+ $prop = $compat_props[ $prop ];
94
+ }
95
+
96
+ $object->$prop = $value;
97
+ }
98
+ }
99
+
100
+ return $object;
101
+ }
102
+
103
+
104
+ /**
105
+ * Gets an object's stored meta value.
106
+ *
107
+ * @since 4.6.0-dev
108
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
109
+ * @param string $key the meta key
110
+ * @param bool $single whether to get the meta as a single item. Defaults to `true`
111
+ * @param string $context if 'view' then the value will be filtered
112
+ * @return mixed
113
+ */
114
+ public static function get_meta( $object, $key = '', $single = true, $context = 'edit' ) {
115
+
116
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
117
+ $value = $object->get_meta( $key, $single, $context );
118
+ } else {
119
+ $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
120
+ $value = get_post_meta( $object_id, $key, $single );
121
+ }
122
+
123
+ return $value;
124
+ }
125
+
126
+
127
+ /**
128
+ * Stores an object meta value.
129
+ *
130
+ * @since 4.6.0-dev
131
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
132
+ * @param string $key the meta key
133
+ * @param string $value the meta value
134
+ * @param string $meta_id Optional. The specific meta ID to update
135
+ * @param bool $unique Optional. Whether the meta should be unique.
136
+ */
137
+ public static function add_meta_data( $object, $key, $value, $unique = false ) {
138
+
139
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
140
+
141
+ $object->add_meta_data( $key, $value, $unique );
142
+
143
+ $object->save_meta_data();
144
+
145
+ } else {
146
+
147
+ $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
148
+ add_post_meta( $object_id, $key, $value, $unique );
149
+ }
150
+ }
151
+
152
+
153
+ /**
154
+ * Updates an object's stored meta value.
155
+ *
156
+ * @since 4.6.0-dev
157
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
158
+ * @param string $key the meta key
159
+ * @param string $value the meta value
160
+ * @param int|strint $meta_id Optional. The specific meta ID to update
161
+ */
162
+ public static function update_meta_data( $object, $key, $value, $meta_id = '' ) {
163
+
164
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
165
+
166
+ $object->update_meta_data( $key, $value, $meta_id );
167
+
168
+ $object->save_meta_data();
169
+
170
+ } else {
171
+
172
+ $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
173
+ update_post_meta( $object_id, $key, $value );
174
+ }
175
+ }
176
+
177
+
178
+ /**
179
+ * Deletes an object's stored meta value.
180
+ *
181
+ * @since 4.6.0-dev
182
+ * @param \WC_Data $object the data object, likely \WC_Order or \WC_Product
183
+ * @param string $key the meta key
184
+ */
185
+ public static function delete_meta_data( $object, $key ) {
186
+
187
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
188
+
189
+ $object->delete_meta_data( $key );
190
+
191
+ $object->save_meta_data();
192
+
193
+ } else {
194
+
195
+ $object_id = is_callable( array( $object, 'get_id' ) ) ? $object->get_id() : $object->id;
196
+ delete_post_meta( $object_id, $key );
197
+ }
198
+ }
199
+
200
+
201
+ }
202
+
203
+
204
+ endif; // Class exists check
includes/compatibility/class-wc-core-compatibility.php CHANGED
@@ -1,231 +1,231 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Compatibility;
3
-
4
- /**
5
- * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
- */
7
-
8
- defined( 'ABSPATH' ) or exit;
9
-
10
- if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\WC_Core' ) ) :
11
-
12
- /**
13
- * WooCommerce Compatibility Utility Class
14
- *
15
- * The unfortunate purpose of this class is to provide a single point of
16
- * compatibility functions for dealing with supporting multiple versions
17
- * of WooCommerce and various extensions.
18
- *
19
- * The expected procedure is to remove methods from this class, using the
20
- * latest ones directly in code, as support for older versions of WooCommerce
21
- * are dropped.
22
- *
23
- * Current Compatibility
24
- * + Core 2.5.5 - 3.0.x
25
- *
26
- *
27
- * @since 2.0.0
28
- */
29
- class WC_Core {
30
-
31
- /**
32
- * Backports wc_get_order() to pre-2.2.0
33
- *
34
- * @since 4.3.0
35
- * @return \WC_Order $order order object
36
- */
37
- public static function get_order( $order_id ) {
38
-
39
- if ( function_exists( 'wc_get_order' ) ) {
40
-
41
- return wc_get_order( $order_id );
42
-
43
- } else {
44
-
45
- return new \WC_Order( $order_id );
46
- }
47
- }
48
-
49
-
50
- /**
51
- * Backports wc_checkout_is_https() to 2.4.x
52
- *
53
- * @since 4.3.0
54
- * @return bool
55
- */
56
- public static function wc_checkout_is_https() {
57
-
58
- if ( self::is_wc_version_gte_2_5() ) {
59
-
60
- return wc_checkout_is_https();
61
-
62
- } else {
63
-
64
- return wc_site_is_https() || 'yes' === get_option( 'woocommerce_force_ssl_checkout' ) || class_exists( 'WordPressHTTPS' ) || strstr( wc_get_page_permalink( 'checkout' ), 'https:' );
65
- }
66
- }
67
-
68
-
69
- /**
70
- * Backports wc_help_tip() to WC 2.4.x
71
- *
72
- * @link https://github.com/woothemes/woocommerce/pull/9417
73
- *
74
- * @since 4.2.0
75
- * @param string $tip help tip content, HTML allowed if $has_html is true
76
- * @param bool $has_html false by default, true to indicate tip content has HTML
77
- * @return string help tip HTML, a <span> in WC 2.5, <img> in WC 2.4
78
- */
79
- public static function wc_help_tip( $tip, $has_html = false ) {
80
-
81
- if ( self::is_wc_version_gte_2_5() ) {
82
-
83
- return wc_help_tip( $tip, $has_html );
84
-
85
- } else {
86
-
87
- $tip = $has_html ? wc_sanitize_tooltip( $tip ) : esc_attr( $tip );
88
-
89
- return sprintf( '<img class="help_tip" data-tip="%1$s" src="%2$s" height="16" width="16" />', $tip, esc_url( WC()->plugin_url() ) . '/assets/images/help.png' );
90
- }
91
- }
92
-
93
-
94
- /**
95
- * Helper method to get the version of the currently installed WooCommerce
96
- *
97
- * @since 3.0.0
98
- * @return string woocommerce version number or null
99
- */
100
- protected static function get_wc_version() {
101
-
102
- return defined( 'WC_VERSION' ) && WC_VERSION ? WC_VERSION : null;
103
- }
104
-
105
-
106
- /**
107
- * Determines if the installed version of WooCommerce is 2.2.0 or greater.
108
- *
109
- * @since 4.2.0
110
- * @return bool
111
- */
112
- public static function is_wc_version_gte_2_2() {
113
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.2', '>=' );
114
- }
115
-
116
-
117
- /**
118
- * Determines if the installed version of WooCommerce is less than 2.2.0
119
- *
120
- * @since 4.2.0
121
- * @return bool
122
- */
123
- public static function is_wc_version_lt_2_2() {
124
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.2', '<' );
125
- }
126
-
127
-
128
- /**
129
- * Determines if the installed version of WooCommerce is 2.5.0 or greater.
130
- *
131
- * @since 4.2.0
132
- * @return bool
133
- */
134
- public static function is_wc_version_gte_2_5() {
135
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.5', '>=' );
136
- }
137
-
138
-
139
- /**
140
- * Determines if the installed version of WooCommerce is less than 2.5.0
141
- *
142
- * @since 4.2.0
143
- * @return bool
144
- */
145
- public static function is_wc_version_lt_2_5() {
146
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.5', '<' );
147
- }
148
-
149
-
150
- /**
151
- * Determines if the installed version of WooCommerce is 2.6.0 or greater.
152
- *
153
- * @since 4.4.0
154
- * @return bool
155
- */
156
- public static function is_wc_version_gte_2_6() {
157
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.6', '>=' );
158
- }
159
-
160
-
161
- /**
162
- * Determines if the installed version of WooCommerce is less than 2.6.0
163
- *
164
- * @since 4.4.0
165
- * @return bool
166
- */
167
- public static function is_wc_version_lt_2_6() {
168
- return self::get_wc_version() && version_compare( self::get_wc_version(), '2.6', '<' );
169
- }
170
-
171
-
172
- /**
173
- * Determines if the installed version of WooCommerce is 3.0.0 or greater.
174
- *
175
- * @since 4.6.0-dev
176
- * @return bool
177
- */
178
- public static function is_wc_version_gte_3_0() {
179
- return self::get_wc_version() && version_compare( self::get_wc_version(), '3.0', '>=' );
180
- }
181
-
182
-
183
- /**
184
- * Determines if the installed version of WooCommerce is less than 3.0.0
185
- *
186
- * @since 4.6.0-dev
187
- * @return bool
188
- */
189
- public static function is_wc_version_lt_3_0() {
190
- return self::get_wc_version() && version_compare( self::get_wc_version(), '3.0', '<' );
191
- }
192
-
193
- /**
194
- * Returns true if the installed version of WooCommerce is greater than $version
195
- *
196
- * @since 2.0.0
197
- * @param string $version the version to compare
198
- * @return boolean true if the installed version of WooCommerce is > $version
199
- */
200
- public static function is_wc_version_gt( $version ) {
201
- return self::get_wc_version() && version_compare( self::get_wc_version(), $version, '>' );
202
- }
203
-
204
-
205
- /** WordPress core ******************************************************/
206
-
207
-
208
- /**
209
- * Normalizes a WooCommerce page screen ID.
210
- *
211
- * Needed because WordPress uses a menu title (which is translatable), not slug, to generate screen ID.
212
- * See details in: https://core.trac.wordpress.org/ticket/21454
213
- * TODO: Add WP version check when https://core.trac.wordpress.org/ticket/18857 is addressed {BR 2016-12-12}
214
- *
215
- * @since 4.6.0-dev
216
- * @param string $slug The slug for the screen ID to normalize (minus `woocommerce_page_`).
217
- * @return string Normalized screen ID.
218
- */
219
- public static function normalize_wc_screen_id( $slug = 'wc-settings' ) {
220
-
221
- // The textdomain usage is intentional here, we need to match the menu title.
222
- $prefix = sanitize_title( __( 'WooCommerce', 'woocommerce' ) );
223
-
224
- return $prefix . '_page_' . $slug;
225
- }
226
-
227
-
228
- }
229
-
230
-
231
- endif; // Class exists check
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Compatibility;
3
+
4
+ /**
5
+ * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
+ */
7
+
8
+ defined( 'ABSPATH' ) or exit;
9
+
10
+ if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\WC_Core' ) ) :
11
+
12
+ /**
13
+ * WooCommerce Compatibility Utility Class
14
+ *
15
+ * The unfortunate purpose of this class is to provide a single point of
16
+ * compatibility functions for dealing with supporting multiple versions
17
+ * of WooCommerce and various extensions.
18
+ *
19
+ * The expected procedure is to remove methods from this class, using the
20
+ * latest ones directly in code, as support for older versions of WooCommerce
21
+ * are dropped.
22
+ *
23
+ * Current Compatibility
24
+ * + Core 2.5.5 - 3.0.x
25
+ *
26
+ *
27
+ * @since 2.0.0
28
+ */
29
+ class WC_Core {
30
+
31
+ /**
32
+ * Backports wc_get_order() to pre-2.2.0
33
+ *
34
+ * @since 4.3.0
35
+ * @return \WC_Order $order order object
36
+ */
37
+ public static function get_order( $order_id ) {
38
+
39
+ if ( function_exists( 'wc_get_order' ) ) {
40
+
41
+ return wc_get_order( $order_id );
42
+
43
+ } else {
44
+
45
+ return new \WC_Order( $order_id );
46
+ }
47
+ }
48
+
49
+
50
+ /**
51
+ * Backports wc_checkout_is_https() to 2.4.x
52
+ *
53
+ * @since 4.3.0
54
+ * @return bool
55
+ */
56
+ public static function wc_checkout_is_https() {
57
+
58
+ if ( self::is_wc_version_gte_2_5() ) {
59
+
60
+ return wc_checkout_is_https();
61
+
62
+ } else {
63
+
64
+ return wc_site_is_https() || 'yes' === get_option( 'woocommerce_force_ssl_checkout' ) || class_exists( 'WordPressHTTPS' ) || strstr( wc_get_page_permalink( 'checkout' ), 'https:' );
65
+ }
66
+ }
67
+
68
+
69
+ /**
70
+ * Backports wc_help_tip() to WC 2.4.x
71
+ *
72
+ * @link https://github.com/woothemes/woocommerce/pull/9417
73
+ *
74
+ * @since 4.2.0
75
+ * @param string $tip help tip content, HTML allowed if $has_html is true
76
+ * @param bool $has_html false by default, true to indicate tip content has HTML
77
+ * @return string help tip HTML, a <span> in WC 2.5, <img> in WC 2.4
78
+ */
79
+ public static function wc_help_tip( $tip, $has_html = false ) {
80
+
81
+ if ( self::is_wc_version_gte_2_5() ) {
82
+
83
+ return wc_help_tip( $tip, $has_html );
84
+
85
+ } else {
86
+
87
+ $tip = $has_html ? wc_sanitize_tooltip( $tip ) : esc_attr( $tip );
88
+
89
+ return sprintf( '<img class="help_tip" data-tip="%1$s" src="%2$s" height="16" width="16" />', $tip, esc_url( WC()->plugin_url() ) . '/assets/images/help.png' );
90
+ }
91
+ }
92
+
93
+
94
+ /**
95
+ * Helper method to get the version of the currently installed WooCommerce
96
+ *
97
+ * @since 3.0.0
98
+ * @return string woocommerce version number or null
99
+ */
100
+ protected static function get_wc_version() {
101
+
102
+ return defined( 'WC_VERSION' ) && WC_VERSION ? WC_VERSION : null;
103
+ }
104
+
105
+
106
+ /**
107
+ * Determines if the installed version of WooCommerce is 2.2.0 or greater.
108
+ *
109
+ * @since 4.2.0
110
+ * @return bool
111
+ */
112
+ public static function is_wc_version_gte_2_2() {
113
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.2', '>=' );
114
+ }
115
+
116
+
117
+ /**
118
+ * Determines if the installed version of WooCommerce is less than 2.2.0
119
+ *
120
+ * @since 4.2.0
121
+ * @return bool
122
+ */
123
+ public static function is_wc_version_lt_2_2() {
124
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.2', '<' );
125
+ }
126
+
127
+
128
+ /**
129
+ * Determines if the installed version of WooCommerce is 2.5.0 or greater.
130
+ *
131
+ * @since 4.2.0
132
+ * @return bool
133
+ */
134
+ public static function is_wc_version_gte_2_5() {
135
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.5', '>=' );
136
+ }
137
+
138
+
139
+ /**
140
+ * Determines if the installed version of WooCommerce is less than 2.5.0
141
+ *
142
+ * @since 4.2.0
143
+ * @return bool
144
+ */
145
+ public static function is_wc_version_lt_2_5() {
146
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.5', '<' );
147
+ }
148
+
149
+
150
+ /**
151
+ * Determines if the installed version of WooCommerce is 2.6.0 or greater.
152
+ *
153
+ * @since 4.4.0
154
+ * @return bool
155
+ */
156
+ public static function is_wc_version_gte_2_6() {
157
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.6', '>=' );
158
+ }
159
+
160
+
161
+ /**
162
+ * Determines if the installed version of WooCommerce is less than 2.6.0
163
+ *
164
+ * @since 4.4.0
165
+ * @return bool
166
+ */
167
+ public static function is_wc_version_lt_2_6() {
168
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '2.6', '<' );
169
+ }
170
+
171
+
172
+ /**
173
+ * Determines if the installed version of WooCommerce is 3.0.0 or greater.
174
+ *
175
+ * @since 4.6.0-dev
176
+ * @return bool
177
+ */
178
+ public static function is_wc_version_gte_3_0() {
179
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '3.0', '>=' );
180
+ }
181
+
182
+
183
+ /**
184
+ * Determines if the installed version of WooCommerce is less than 3.0.0
185
+ *
186
+ * @since 4.6.0-dev
187
+ * @return bool
188
+ */
189
+ public static function is_wc_version_lt_3_0() {
190
+ return self::get_wc_version() && version_compare( self::get_wc_version(), '3.0', '<' );
191
+ }
192
+
193
+ /**
194
+ * Returns true if the installed version of WooCommerce is greater than $version
195
+ *
196
+ * @since 2.0.0
197
+ * @param string $version the version to compare
198
+ * @return boolean true if the installed version of WooCommerce is > $version
199
+ */
200
+ public static function is_wc_version_gt( $version ) {
201
+ return self::get_wc_version() && version_compare( self::get_wc_version(), $version, '>' );
202
+ }
203
+
204
+
205
+ /** WordPress core ******************************************************/
206
+
207
+
208
+ /**
209
+ * Normalizes a WooCommerce page screen ID.
210
+ *
211
+ * Needed because WordPress uses a menu title (which is translatable), not slug, to generate screen ID.
212
+ * See details in: https://core.trac.wordpress.org/ticket/21454
213
+ * TODO: Add WP version check when https://core.trac.wordpress.org/ticket/18857 is addressed {BR 2016-12-12}
214
+ *
215
+ * @since 4.6.0-dev
216
+ * @param string $slug The slug for the screen ID to normalize (minus `woocommerce_page_`).
217
+ * @return string Normalized screen ID.
218
+ */
219
+ public static function normalize_wc_screen_id( $slug = 'wc-settings' ) {
220
+
221
+ // The textdomain usage is intentional here, we need to match the menu title.
222
+ $prefix = sanitize_title( __( 'WooCommerce', 'woocommerce' ) );
223
+
224
+ return $prefix . '_page_' . $slug;
225
+ }
226
+
227
+
228
+ }
229
+
230
+
231
+ endif; // Class exists check
includes/compatibility/class-wc-date-compatibility.php CHANGED
@@ -1,103 +1,103 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Compatibility;
3
-
4
- /**
5
- * Copy of WC3.0 WC_DateTime class
6
- */
7
-
8
- defined( 'ABSPATH' ) or exit;
9
-
10
- if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\WC_DateTime' ) ) :
11
-
12
-
13
- /**
14
- * WC Wrapper for PHP DateTime.
15
- *
16
- * @class WC_DateTime
17
- * @since 3.0.0
18
- * @package WooCommerce/Classes
19
- * @category Class
20
- * @author WooThemes
21
- */
22
- class WC_DateTime extends \DateTime {
23
-
24
- /**
25
- * UTC Offset if needed.
26
- * @var integer
27
- */
28
- protected $utc_offset = 0;
29
- /**
30
- * Output an ISO 8601 date string in local timezone.
31
- *
32
- * @since 3.0.0
33
- * @return string
34
- */
35
- public function __toString() {
36
- return $this->format( DATE_ATOM );
37
- }
38
- /**
39
- * Set UTC offset.
40
- */
41
- public function set_utc_offset( $offset ) {
42
- $this->utc_offset = intval( $offset );
43
- }
44
- /**
45
- * getOffset.
46
- */
47
- public function getOffset() {
48
- if ( $this->utc_offset ) {
49
- return $this->utc_offset;
50
- } else {
51
- return parent::getOffset();
52
- }
53
- }
54
- /**
55
- * Set timezone.
56
- * @param DateTimeZone $timezone
57
- */
58
- public function setTimezone( $timezone ) {
59
- $this->utc_offset = 0;
60
- return parent::setTimezone( $timezone );
61
- }
62
- /**
63
- * Missing in PHP 5.2.
64
- *
65
- * @since 3.0.0
66
- * @return int
67
- */
68
- public function getTimestamp() {
69
- return method_exists( 'DateTime', 'getTimestamp' ) ? parent::getTimestamp() : $this->format( 'U' );
70
- }
71
- /**
72
- * Get the timestamp with the WordPress timezone offset added or subtracted.
73
- *
74
- * @since 3.0.0
75
- * @return int
76
- */
77
- public function getOffsetTimestamp() {
78
- return $this->getTimestamp() + $this->getOffset();
79
- }
80
- /**
81
- * Format a date based on the offset timestamp.
82
- *
83
- * @since 3.0.0
84
- * @param string $format
85
- * @return string
86
- */
87
- public function date( $format ) {
88
- return gmdate( $format, $this->getOffsetTimestamp() );
89
- }
90
- /**
91
- * Return a localised date based on offset timestamp. Wrapper for date_i18n function.
92
- *
93
- * @since 3.0.0
94
- * @param string $format
95
- * @return string
96
- */
97
- public function date_i18n( $format = 'Y-m-d' ) {
98
- return date_i18n( $format, $this->getOffsetTimestamp() );
99
- }
100
- }
101
-
102
- endif; // Class exists check
103
-
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Compatibility;
3
+
4
+ /**
5
+ * Copy of WC3.0 WC_DateTime class
6
+ */
7
+
8
+ defined( 'ABSPATH' ) or exit;
9
+
10
+ if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\WC_DateTime' ) ) :
11
+
12
+
13
+ /**
14
+ * WC Wrapper for PHP DateTime.
15
+ *
16
+ * @class WC_DateTime
17
+ * @since 3.0.0
18
+ * @package WooCommerce/Classes
19
+ * @category Class
20
+ * @author WooThemes
21
+ */
22
+ class WC_DateTime extends \DateTime {
23
+
24
+ /**
25
+ * UTC Offset if needed.
26
+ * @var integer
27
+ */
28
+ protected $utc_offset = 0;
29
+ /**
30
+ * Output an ISO 8601 date string in local timezone.
31
+ *
32
+ * @since 3.0.0
33
+ * @return string
34
+ */
35
+ public function __toString() {
36
+ return $this->format( DATE_ATOM );
37
+ }
38
+ /**
39
+ * Set UTC offset.
40
+ */
41
+ public function set_utc_offset( $offset ) {
42
+ $this->utc_offset = intval( $offset );
43
+ }
44
+ /**
45
+ * getOffset.
46
+ */
47
+ public function getOffset() {
48
+ if ( $this->utc_offset ) {
49
+ return $this->utc_offset;
50
+ } else {
51
+ return parent::getOffset();
52
+ }
53
+ }
54
+ /**
55
+ * Set timezone.
56
+ * @param DateTimeZone $timezone
57
+ */
58
+ public function setTimezone( $timezone ) {
59
+ $this->utc_offset = 0;
60
+ return parent::setTimezone( $timezone );
61
+ }
62
+ /**
63
+ * Missing in PHP 5.2.
64
+ *
65
+ * @since 3.0.0
66
+ * @return int
67
+ */
68
+ public function getTimestamp() {
69
+ return method_exists( 'DateTime', 'getTimestamp' ) ? parent::getTimestamp() : $this->format( 'U' );
70
+ }
71
+ /**
72
+ * Get the timestamp with the WordPress timezone offset added or subtracted.
73
+ *
74
+ * @since 3.0.0
75
+ * @return int
76
+ */
77
+ public function getOffsetTimestamp() {
78
+ return $this->getTimestamp() + $this->getOffset();
79
+ }
80
+ /**
81
+ * Format a date based on the offset timestamp.
82
+ *
83
+ * @since 3.0.0
84
+ * @param string $format
85
+ * @return string
86
+ */
87
+ public function date( $format ) {
88
+ return gmdate( $format, $this->getOffsetTimestamp() );
89
+ }
90
+ /**
91
+ * Return a localised date based on offset timestamp. Wrapper for date_i18n function.
92
+ *
93
+ * @since 3.0.0
94
+ * @param string $format
95
+ * @return string
96
+ */
97
+ public function date_i18n( $format = 'Y-m-d' ) {
98
+ return date_i18n( $format, $this->getOffsetTimestamp() );
99
+ }
100
+ }
101
+
102
+ endif; // Class exists check
103
+
includes/compatibility/class-wc-product-compatibility.php CHANGED
@@ -1,288 +1,288 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Compatibility;
3
-
4
- /**
5
- * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
- */
7
-
8
- defined( 'ABSPATH' ) or exit;
9
-
10
- if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\Product' ) ) :
11
-
12
- /**
13
- * WooCommerce product compatibility class.
14
- *
15
- * @since 4.6.0-dev
16
- */
17
- class Product extends Data {
18
-
19
-
20
- /** @var array mapped compatibility properties, as `$new_prop => $old_prop` */
21
- protected static $compat_props = array(
22
- 'catalog_visibility' => 'visibility',
23
- 'date_on_sale_from' => 'sale_price_dates_from',
24
- 'date_on_sale_to' => 'sale_price_dates_to',
25
- 'gallery_image_ids' => 'product_image_gallery',
26
- 'cross_sell_ids' => 'crosssell_ids',
27
- );
28
-
29
-
30
- /**
31
- * Backports WC_Product::get_id() method to 2.4.x
32
- *
33
- * @link https://github.com/woothemes/woocommerce/pull/9765
34
- *
35
- * @since 4.2.0
36
- * @param \WC_Product $product product object
37
- * @return string|int product ID
38
- */
39
- public static function get_id( \WC_Product $product ) {
40
-
41
- if ( method_exists( $product, 'get_id' ) ) {
42
-
43
- return $product->get_id();
44
-
45
- } else {
46
-
47
- return $product->is_type( 'variation' ) ? $product->variation_id : $product->id;
48
- }
49
- }
50
-
51
-
52
- /**
53
- * Gets a product property.
54
- *
55
- * @since 4.6.0-dev
56
- * @param \WC_Product $object the product object
57
- * @param string $prop the property name
58
- * @param string $context if 'view' then the value will be filtered
59
- * @return mixed
60
- */
61
- public static function get_prop( $object, $prop, $context = 'edit', $compat_props = array() ) {
62
-
63
- // backport 'WC_Product::get_parent_id()' to pre-3.0
64
- if ( WC_Core::is_wc_version_lt_3_0() && 'parent_id' === $prop ) {
65
- $prop = 'id';
66
- $context = $object->is_type( 'variation' ) ? 'raw' : $context;
67
- }
68
-
69
- return parent::get_prop( $object, $prop, $context, self::$compat_props );
70
- }
71
-
72
-
73
- /**
74
- * Sets an products's properties.
75
- *
76
- * Note that this does not save any data to the database.
77
- *
78
- * @since 4.6.0-dev
79
- * @param \WC_Product $object the product object
80
- * @param array $props the new properties as $key => $value
81
- * @return \WC_Product
82
- */
83
- public static function set_props( $object, $props, $compat_props = array() ) {
84
-
85
- return parent::set_props( $object, $props, self::$compat_props );
86
- }
87
-
88
-
89
- /**
90
- * Makes WC_Product::get_parent() available for WC 3.0+
91
- *
92
- * @since 4.6.0-dev
93
- * @param \WC_Product $product the product object
94
- * @return \WC_Product
95
- */
96
- public static function get_parent( \WC_Product $product ) {
97
-
98
- if ( WC_Core::is_wc_version_gte_3_0() ) {
99
- $parent = wc_get_product( $product->get_parent_id() );
100
- } else {
101
- $parent = $product->get_parent();
102
- }
103
-
104
- return $parent;
105
- }
106
-
107
-
108
-
109
- /**
110
- * Makes WC_Product::get_dimensions() available for WC 3.0+
111
- *
112
- * @since 4.6.0-dev
113
- * @param \WC_Product $product the product object
114
- * @param string $rating Optional. The product rating
115
- * @return string
116
- */
117
- public static function get_dimensions( \WC_Product $product ) {
118
-
119
- if ( WC_Core::is_wc_version_gte_3_0() ) {
120
- $dimensions = array(
121
- 'length' => $product->get_length(),
122
- 'width' => $product->get_width(),
123
- 'height' => $product->get_height(),
124
- );
125
- return apply_filters( 'woocommerce_product_dimensions', wc_format_dimensions( $dimensions ), $product );
126
- } else {
127
- return $product->get_dimensions();
128
- }
129
- }
130
-
131
-
132
- /**
133
- * Backports wc_update_product_stock() to pre-3.0.0
134
- *
135
- * @since 4.6.0-dev
136
- * @param \WC_Product $product the product object
137
- * @param int $amount Optional. The new stock quantity
138
- * @param string $mode Optional. Can be set, add, or subtract
139
- * @return int
140
- */
141
- public static function wc_update_product_stock( \WC_Product $product, $amount = null, $mode = 'set' ) {
142
-
143
- if ( WC_Core::is_wc_version_gte_3_0() ) {
144
- return wc_update_product_stock( $product, $amount, $mode );
145
- } else {
146
- return $product->set_stock( $amount, $mode );
147
- }
148
- }
149
-
150
-
151
- /**
152
- * Backports wc_get_price_html_from_text() to pre-3.0.0
153
- *
154
- * @since 4.6.0-dev
155
- * @param \WC_Product $product the product object
156
- * @return string
157
- */
158
- public static function wc_get_price_html_from_text( \WC_Product $product ) {
159
-
160
- if ( WC_Core::is_wc_version_gte_3_0() ) {
161
- return wc_get_price_html_from_text();
162
- } else {
163
- return $product->get_price_html_from_text();
164
- }
165
- }
166
-
167
-
168
- /**
169
- * Backports wc_get_price_including_tax() to pre-3.0.0
170
- *
171
- * @since 4.6.0-dev
172
- * @param \WC_Product $product the product object
173
- * @param int $qty Optional. The quantity
174
- * @param string $price Optional. The product price
175
- * @return string
176
- */
177
- public static function wc_get_price_including_tax( \WC_Product $product, $qty = 1, $price = '' ) {
178
-
179
- if ( WC_Core::is_wc_version_gte_3_0() ) {
180
-
181
- return wc_get_price_including_tax( $product, array(
182
- 'qty' => $qty,
183
- 'price' => $price,
184
- ) );
185
-
186
- } else {
187
-
188
- return $product->get_price_including_tax( $qty, $price );
189
- }
190
- }
191
-
192
-
193
- /**
194
- * Backports wc_get_price_excluding_tax() to pre-3.0.0
195
- *
196
- * @since 4.6.0-dev
197
- * @param \WC_Product $product the product object
198
- * @param int $qty Optional. The quantity
199
- * @param string $price Optional. The product price
200
- * @return string
201
- */
202
- public static function wc_get_price_excluding_tax( \WC_Product $product, $qty = 1, $price = '' ) {
203
-
204
- if ( WC_Core::is_wc_version_gte_3_0() ) {
205
-
206
- return wc_get_price_excluding_tax( $product, array(
207
- 'qty' => $qty,
208
- 'price' => $price,
209
- ) );
210
-
211
- } else {
212
-
213
- return $product->get_price_excluding_tax( $qty, $price );
214
- }
215
- }
216
-
217
-
218
- /**
219
- * Backports wc_get_price_to_display() to pre-3.0.0
220
- *
221
- * @since 4.6.0-dev
222
- * @param \WC_Product $product the product object
223
- * @param string $price Optional. The product price
224
- * @param int $qty Optional. The quantity
225
- * @return string
226
- */
227
- public static function wc_get_price_to_display( \WC_Product $product, $price = '', $qty = 1 ) {
228
-
229
- if ( WC_Core::is_wc_version_gte_3_0() ) {
230
-
231
- return wc_get_price_to_display( $product, array(
232
- 'qty' => $qty,
233
- 'price' => $price,
234
- ) );
235
-
236
- } else {
237
-
238
- return $product->get_display_price( $price, $qty );
239
- }
240
- }
241
-
242
-
243
- /**
244
- * Backports wc_get_product_category_list() to pre-3.0.0
245
- *
246
- * @since 4.6.0-dev
247
- * @param \WC_Product $product the product object
248
- * @param string $sep Optional. The list separator
249
- * @param string $before Optional. To display before the list
250
- * @param string $after Optional. To display after the list
251
- * @return string
252
- */
253
- public static function wc_get_product_category_list( \WC_Product $product, $sep = ', ', $before = '', $after = '' ) {
254
-
255
- if ( WC_Core::is_wc_version_gte_3_0() ) {
256
-
257
- $id = $product->is_type( 'variation' ) ? $product->get_parent_id() : $product->get_id();
258
-
259
- return wc_get_product_category_list( $id, $sep, $before, $after );
260
-
261
- } else {
262
-
263
- return $product->get_categories( $sep, $before, $after );
264
- }
265
- }
266
-
267
-
268
- /**
269
- * Backports wc_get_rating_html() to pre-3.0.0
270
- *
271
- * @since 4.6.0-dev
272
- * @param \WC_Product $product the product object
273
- * @param string $rating Optional. The product rating
274
- * @return string
275
- */
276
- public static function wc_get_rating_html( \WC_Product $product, $rating = null ) {
277
-
278
- if ( WC_Core::is_wc_version_gte_3_0() ) {
279
- return wc_get_rating_html( $rating );
280
- } else {
281
- return $product->get_rating_html( $rating );
282
- }
283
- }
284
-
285
- }
286
-
287
-
288
- endif; // Class exists check
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Compatibility;
3
+
4
+ /**
5
+ * Derived from SkyVerge WooCommerce Plugin Framework https://github.com/skyverge/wc-plugin-framework/
6
+ */
7
+
8
+ defined( 'ABSPATH' ) or exit;
9
+
10
+ if ( ! class_exists( '\\WPO\\WC\\PDF_Invoices\\Compatibility\\Product' ) ) :
11
+
12
+ /**
13
+ * WooCommerce product compatibility class.
14
+ *
15
+ * @since 4.6.0-dev
16
+ */
17
+ class Product extends Data {
18
+
19
+
20
+ /** @var array mapped compatibility properties, as `$new_prop => $old_prop` */
21
+ protected static $compat_props = array(
22
+ 'catalog_visibility' => 'visibility',
23
+ 'date_on_sale_from' => 'sale_price_dates_from',
24
+ 'date_on_sale_to' => 'sale_price_dates_to',
25
+ 'gallery_image_ids' => 'product_image_gallery',
26
+ 'cross_sell_ids' => 'crosssell_ids',
27
+ );
28
+
29
+
30
+ /**
31
+ * Backports WC_Product::get_id() method to 2.4.x
32
+ *
33
+ * @link https://github.com/woothemes/woocommerce/pull/9765
34
+ *
35
+ * @since 4.2.0
36
+ * @param \WC_Product $product product object
37
+ * @return string|int product ID
38
+ */
39
+ public static function get_id( \WC_Product $product ) {
40
+
41
+ if ( method_exists( $product, 'get_id' ) ) {
42
+
43
+ return $product->get_id();
44
+
45
+ } else {
46
+
47
+ return $product->is_type( 'variation' ) ? $product->variation_id : $product->id;
48
+ }
49
+ }
50
+
51
+
52
+ /**
53
+ * Gets a product property.
54
+ *
55
+ * @since 4.6.0-dev
56
+ * @param \WC_Product $object the product object
57
+ * @param string $prop the property name
58
+ * @param string $context if 'view' then the value will be filtered
59
+ * @return mixed
60
+ */
61
+ public static function get_prop( $object, $prop, $context = 'edit', $compat_props = array() ) {
62
+
63
+ // backport 'WC_Product::get_parent_id()' to pre-3.0
64
+ if ( WC_Core::is_wc_version_lt_3_0() && 'parent_id' === $prop ) {
65
+ $prop = 'id';
66
+ $context = $object->is_type( 'variation' ) ? 'raw' : $context;
67
+ }
68
+
69
+ return parent::get_prop( $object, $prop, $context, self::$compat_props );
70
+ }
71
+
72
+
73
+ /**
74
+ * Sets an products's properties.
75
+ *
76
+ * Note that this does not save any data to the database.
77
+ *
78
+ * @since 4.6.0-dev
79
+ * @param \WC_Product $object the product object
80
+ * @param array $props the new properties as $key => $value
81
+ * @return \WC_Product
82
+ */
83
+ public static function set_props( $object, $props, $compat_props = array() ) {
84
+
85
+ return parent::set_props( $object, $props, self::$compat_props );
86
+ }
87
+
88
+
89
+ /**
90
+ * Makes WC_Product::get_parent() available for WC 3.0+
91
+ *
92
+ * @since 4.6.0-dev
93
+ * @param \WC_Product $product the product object
94
+ * @return \WC_Product
95
+ */
96
+ public static function get_parent( \WC_Product $product ) {
97
+
98
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
99
+ $parent = wc_get_product( $product->get_parent_id() );
100
+ } else {
101
+ $parent = $product->get_parent();
102
+ }
103
+
104
+ return $parent;
105
+ }
106
+
107
+
108
+
109
+ /**
110
+ * Makes WC_Product::get_dimensions() available for WC 3.0+
111
+ *
112
+ * @since 4.6.0-dev
113
+ * @param \WC_Product $product the product object
114
+ * @param string $rating Optional. The product rating
115
+ * @return string
116
+ */
117
+ public static function get_dimensions( \WC_Product $product ) {
118
+
119
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
120
+ $dimensions = array(
121
+ 'length' => $product->get_length(),
122
+ 'width' => $product->get_width(),
123
+ 'height' => $product->get_height(),
124
+ );
125
+ return apply_filters( 'woocommerce_product_dimensions', wc_format_dimensions( $dimensions ), $product );
126
+ } else {
127
+ return $product->get_dimensions();
128
+ }
129
+ }
130
+
131
+
132
+ /**
133
+ * Backports wc_update_product_stock() to pre-3.0.0
134
+ *
135
+ * @since 4.6.0-dev
136
+ * @param \WC_Product $product the product object
137
+ * @param int $amount Optional. The new stock quantity
138
+ * @param string $mode Optional. Can be set, add, or subtract
139
+ * @return int
140
+ */
141
+ public static function wc_update_product_stock( \WC_Product $product, $amount = null, $mode = 'set' ) {
142
+
143
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
144
+ return wc_update_product_stock( $product, $amount, $mode );
145
+ } else {
146
+ return $product->set_stock( $amount, $mode );
147
+ }
148
+ }
149
+
150
+
151
+ /**
152
+ * Backports wc_get_price_html_from_text() to pre-3.0.0
153
+ *
154
+ * @since 4.6.0-dev
155
+ * @param \WC_Product $product the product object
156
+ * @return string
157
+ */
158
+ public static function wc_get_price_html_from_text( \WC_Product $product ) {
159
+
160
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
161
+ return wc_get_price_html_from_text();
162
+ } else {
163
+ return $product->get_price_html_from_text();
164
+ }
165
+ }
166
+
167
+
168
+ /**
169
+ * Backports wc_get_price_including_tax() to pre-3.0.0
170
+ *
171
+ * @since 4.6.0-dev
172
+ * @param \WC_Product $product the product object
173
+ * @param int $qty Optional. The quantity
174
+ * @param string $price Optional. The product price
175
+ * @return string
176
+ */
177
+ public static function wc_get_price_including_tax( \WC_Product $product, $qty = 1, $price = '' ) {
178
+
179
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
180
+
181
+ return wc_get_price_including_tax( $product, array(
182
+ 'qty' => $qty,
183
+ 'price' => $price,
184
+ ) );
185
+
186
+ } else {
187
+
188
+ return $product->get_price_including_tax( $qty, $price );
189
+ }
190
+ }
191
+
192
+
193
+ /**
194
+ * Backports wc_get_price_excluding_tax() to pre-3.0.0
195
+ *
196
+ * @since 4.6.0-dev
197
+ * @param \WC_Product $product the product object
198
+ * @param int $qty Optional. The quantity
199
+ * @param string $price Optional. The product price
200
+ * @return string
201
+ */
202
+ public static function wc_get_price_excluding_tax( \WC_Product $product, $qty = 1, $price = '' ) {
203
+
204
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
205
+
206
+ return wc_get_price_excluding_tax( $product, array(
207
+ 'qty' => $qty,
208
+ 'price' => $price,
209
+ ) );
210
+
211
+ } else {
212
+
213
+ return $product->get_price_excluding_tax( $qty, $price );
214
+ }
215
+ }
216
+
217
+
218
+ /**
219
+ * Backports wc_get_price_to_display() to pre-3.0.0
220
+ *
221
+ * @since 4.6.0-dev
222
+ * @param \WC_Product $product the product object
223
+ * @param string $price Optional. The product price
224
+ * @param int $qty Optional. The quantity
225
+ * @return string
226
+ */
227
+ public static function wc_get_price_to_display( \WC_Product $product, $price = '', $qty = 1 ) {
228
+
229
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
230
+
231
+ return wc_get_price_to_display( $product, array(
232
+ 'qty' => $qty,
233
+ 'price' => $price,
234
+ ) );
235
+
236
+ } else {
237
+
238
+ return $product->get_display_price( $price, $qty );
239
+ }
240
+ }
241
+
242
+
243
+ /**
244
+ * Backports wc_get_product_category_list() to pre-3.0.0
245
+ *
246
+ * @since 4.6.0-dev
247
+ * @param \WC_Product $product the product object
248
+ * @param string $sep Optional. The list separator
249
+ * @param string $before Optional. To display before the list
250
+ * @param string $after Optional. To display after the list
251
+ * @return string
252
+ */
253
+ public static function wc_get_product_category_list( \WC_Product $product, $sep = ', ', $before = '', $after = '' ) {
254
+
255
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
256
+
257
+ $id = $product->is_type( 'variation' ) ? $product->get_parent_id() : $product->get_id();
258
+
259
+ return wc_get_product_category_list( $id, $sep, $before, $after );
260
+
261
+ } else {
262
+
263
+ return $product->get_categories( $sep, $before, $after );
264
+ }
265
+ }
266
+
267
+
268
+ /**
269
+ * Backports wc_get_rating_html() to pre-3.0.0
270
+ *
271
+ * @since 4.6.0-dev
272
+ * @param \WC_Product $product the product object
273
+ * @param string $rating Optional. The product rating
274
+ * @return string
275
+ */
276
+ public static function wc_get_rating_html( \WC_Product $product, $rating = null ) {
277
+
278
+ if ( WC_Core::is_wc_version_gte_3_0() ) {
279
+ return wc_get_rating_html( $rating );
280
+ } else {
281
+ return $product->get_rating_html( $rating );
282
+ }
283
+ }
284
+
285
+ }
286
+
287
+
288
+ endif; // Class exists check
includes/compatibility/mb-string-compatibility.php CHANGED
@@ -1,129 +1,129 @@
1
- <?php
2
- defined( 'ABSPATH' ) or exit;
3
-
4
- /**
5
- * mb_string compatibility - something's better than nothing!
6
- * Taken from dompdf 0.6
7
- */
8
- if (!extension_loaded('mbstring')) {
9
- if ( ! defined( 'MB_OVERLOAD_MAIL' ) ) define('MB_OVERLOAD_MAIL', 1);
10
- if ( ! defined( 'MB_OVERLOAD_STRING' ) ) define('MB_OVERLOAD_STRING', 2);
11
- if ( ! defined( 'MB_OVERLOAD_REGEX' ) ) define('MB_OVERLOAD_REGEX', 4);
12
- if ( ! defined( 'MB_CASE_UPPER' ) ) define('MB_CASE_UPPER', 0);
13
- if ( ! defined( 'MB_CASE_LOWER' ) ) define('MB_CASE_LOWER', 1);
14
- if ( ! defined( 'MB_CASE_TITLE' ) ) define('MB_CASE_TITLE', 2);
15
-
16
- if (!function_exists('mb_convert_encoding')) {
17
- function mb_convert_encoding($data, $to_encoding, $from_encoding = 'UTF-8') {
18
- if (str_replace('-', '', strtolower($to_encoding)) === 'utf8') {
19
- return utf8_encode($data);
20
- }
21
-
22
- return utf8_decode($data);
23
- }
24
- }
25
-
26
- if (!function_exists('mb_detect_encoding')) {
27
- function mb_detect_encoding($data, $encoding_list = array('iso-8859-1'), $strict = false) {
28
- return 'iso-8859-1';
29
- }
30
- }
31
-
32
- if (!function_exists('mb_detect_order')) {
33
- function mb_detect_order($encoding_list = array('iso-8859-1')) {
34
- return 'iso-8859-1';
35
- }
36
- }
37
-
38
- if (!function_exists('mb_internal_encoding')) {
39
- function mb_internal_encoding($encoding = null) {
40
- if (isset($encoding)) {
41
- return true;
42
- }
43
-
44
- return 'iso-8859-1';
45
- }
46
- }
47
- if (!function_exists('mb_strlen')) {
48
- function mb_strlen($str, $encoding = 'iso-8859-1') {
49
- switch (str_replace('-', '', strtolower($encoding))) {
50
- case "utf8": return strlen(utf8_encode($str));
51
- case "8bit": return strlen($str);
52
- default: return strlen(utf8_decode($str));
53
- }
54
- }
55
- }
56
-
57
- if (!function_exists('mb_strpos')) {
58
- function mb_strpos($haystack, $needle, $offset = 0) {
59
- return strpos($haystack, $needle, $offset);
60
- }
61
- }
62
-
63
- if (!function_exists('mb_stripos')) {
64
- function mb_stripos($haystack, $needle, $offset = 0) {
65
- return stripos($haystack, $needle, $offset);
66
- }
67
- }
68
-
69
- if (!function_exists('mb_strrpos')) {
70
- function mb_strrpos($haystack, $needle, $offset = 0) {
71
- return strrpos($haystack, $needle, $offset);
72
- }
73
- }
74
-
75
- if (!function_exists('mb_strtolower')) {
76
- function mb_strtolower( $str ) {
77
- return strtolower($str);
78
- }
79
- }
80
-
81
- if (!function_exists('mb_strtoupper')) {
82
- function mb_strtoupper( $str ) {
83
- return strtoupper($str);
84
- }
85
- }
86
-
87
- if (!function_exists('mb_substr')) {
88
- function mb_substr($string, $start, $length = null, $encoding = 'iso-8859-1') {
89
- if ( is_null($length) ) {
90
- return substr($string, $start);
91
- }
92
-
93
- return substr($string, $start, $length);
94
- }
95
- }
96
-
97
- if (!function_exists('mb_substr_count')) {
98
- function mb_substr_count($haystack, $needle, $encoding = 'iso-8859-1') {
99
- return substr_count($haystack, $needle);
100
- }
101
- }
102
-
103
- if (!function_exists('mb_encode_numericentity')) {
104
- function mb_encode_numericentity($str, $convmap, $encoding) {
105
- return htmlspecialchars($str);
106
- }
107
- }
108
-
109
- if (!function_exists('mb_convert_case')) {
110
- function mb_convert_case($str, $mode = MB_CASE_UPPER, $encoding = array()) {
111
- switch($mode) {
112
- case MB_CASE_UPPER: return mb_strtoupper($str);
113
- case MB_CASE_LOWER: return mb_strtolower($str);
114
- case MB_CASE_TITLE: return ucwords(mb_strtolower($str));
115
- default: return $str;
116
- }
117
- }
118
- }
119
-
120
- if (!function_exists('mb_list_encodings')) {
121
- function mb_list_encodings() {
122
- return array(
123
- "ISO-8859-1",
124
- "UTF-8",
125
- "8bit",
126
- );
127
- }
128
- }
129
- }
1
+ <?php
2
+ defined( 'ABSPATH' ) or exit;
3
+
4
+ /**
5
+ * mb_string compatibility - something's better than nothing!
6
+ * Taken from dompdf 0.6
7
+ */
8
+ if (!extension_loaded('mbstring')) {
9
+ if ( ! defined( 'MB_OVERLOAD_MAIL' ) ) define('MB_OVERLOAD_MAIL', 1);
10
+ if ( ! defined( 'MB_OVERLOAD_STRING' ) ) define('MB_OVERLOAD_STRING', 2);
11
+ if ( ! defined( 'MB_OVERLOAD_REGEX' ) ) define('MB_OVERLOAD_REGEX', 4);
12
+ if ( ! defined( 'MB_CASE_UPPER' ) ) define('MB_CASE_UPPER', 0);
13
+ if ( ! defined( 'MB_CASE_LOWER' ) ) define('MB_CASE_LOWER', 1);
14
+ if ( ! defined( 'MB_CASE_TITLE' ) ) define('MB_CASE_TITLE', 2);
15
+
16
+ if (!function_exists('mb_convert_encoding')) {
17
+ function mb_convert_encoding($data, $to_encoding, $from_encoding = 'UTF-8') {
18
+ if (str_replace('-', '', strtolower($to_encoding)) === 'utf8') {
19
+ return utf8_encode($data);
20
+ }
21
+
22
+ return utf8_decode($data);
23
+ }
24
+ }
25
+
26
+ if (!function_exists('mb_detect_encoding')) {
27
+ function mb_detect_encoding($data, $encoding_list = array('iso-8859-1'), $strict = false) {
28
+ return 'iso-8859-1';
29
+ }
30
+ }
31
+
32
+ if (!function_exists('mb_detect_order')) {
33
+ function mb_detect_order($encoding_list = array('iso-8859-1')) {
34
+ return 'iso-8859-1';
35
+ }
36
+ }
37
+
38
+ if (!function_exists('mb_internal_encoding')) {
39
+ function mb_internal_encoding($encoding = null) {
40
+ if (isset($encoding)) {
41
+ return true;
42
+ }
43
+
44
+ return 'iso-8859-1';
45
+ }
46
+ }
47
+ if (!function_exists('mb_strlen')) {
48
+ function mb_strlen($str, $encoding = 'iso-8859-1') {
49
+ switch (str_replace('-', '', strtolower($encoding))) {
50
+ case "utf8": return strlen(utf8_encode($str));
51
+ case "8bit": return strlen($str);
52
+ default: return strlen(utf8_decode($str));
53
+ }
54
+ }
55
+ }
56
+
57
+ if (!function_exists('mb_strpos')) {
58
+ function mb_strpos($haystack, $needle, $offset = 0) {
59
+ return strpos($haystack, $needle, $offset);
60
+ }
61
+ }
62
+
63
+ if (!function_exists('mb_stripos')) {
64
+ function mb_stripos($haystack, $needle, $offset = 0) {
65
+ return stripos($haystack, $needle, $offset);
66
+ }
67
+ }
68
+
69
+ if (!function_exists('mb_strrpos')) {
70
+ function mb_strrpos($haystack, $needle, $offset = 0) {
71
+ return strrpos($haystack, $needle, $offset);
72
+ }
73
+ }
74
+
75
+ if (!function_exists('mb_strtolower')) {
76
+ function mb_strtolower( $str ) {
77
+ return strtolower($str);
78
+ }
79
+ }
80
+
81
+ if (!function_exists('mb_strtoupper')) {
82
+ function mb_strtoupper( $str ) {
83
+ return strtoupper($str);
84
+ }
85
+ }
86
+
87
+ if (!function_exists('mb_substr')) {
88
+ function mb_substr($string, $start, $length = null, $encoding = 'iso-8859-1') {
89
+ if ( is_null($length) ) {
90
+ return substr($string, $start);
91
+ }
92
+
93
+ return substr($string, $start, $length);
94
+ }
95
+ }
96
+
97
+ if (!function_exists('mb_substr_count')) {
98
+ function mb_substr_count($haystack, $needle, $encoding = 'iso-8859-1') {
99
+ return substr_count($haystack, $needle);
100
+ }
101
+ }
102
+
103
+ if (!function_exists('mb_encode_numericentity')) {
104
+ function mb_encode_numericentity($str, $convmap, $encoding) {
105
+ return htmlspecialchars($str);
106
+ }
107
+ }
108
+
109
+ if (!function_exists('mb_convert_case')) {
110
+ function mb_convert_case($str, $mode = MB_CASE_UPPER, $encoding = array()) {
111
+ switch($mode) {
112
+ case MB_CASE_UPPER: return mb_strtoupper($str);
113
+ case MB_CASE_LOWER: return mb_strtolower($str);
114
+ case MB_CASE_TITLE: return ucwords(mb_strtolower($str));
115
+ default: return $str;
116
+ }
117
+ }
118
+ }
119
+
120
+ if (!function_exists('mb_list_encodings')) {
121
+ function mb_list_encodings() {
122
+ return array(
123
+ "ISO-8859-1",
124
+ "UTF-8",
125
+ "8bit",
126
+ );
127
+ }
128
+ }
129
+ }
includes/compatibility/wc-datetime-functions-compatibility.php CHANGED
@@ -1,48 +1,48 @@
1
- <?php
2
- use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
3
-
4
- defined( 'ABSPATH' ) or exit;
5
-
6
- // load date/time functions for older WC versions
7
- if ( WCX::is_wc_version_lt_3_0() ) {
8
- if ( !function_exists( 'wc_timezone_offset' ) ) {
9
- /**
10
- * Get timezone offset in seconds.
11
- *
12
- * @since 3.0.0
13
- * @return float
14
- */
15
- function wc_timezone_offset() {
16
- if ( $timezone = get_option( 'timezone_string' ) ) {
17
- $timezone_object = new DateTimeZone( $timezone );
18
- return $timezone_object->getOffset( new DateTime( 'now' ) );
19
- } else {
20
- return floatval( get_option( 'gmt_offset', 0 ) ) * HOUR_IN_SECONDS;
21
- }
22
- }
23
- }
24
-
25
- if ( !function_exists( 'wc_string_to_timestamp' ) ) {
26
- /**
27
- * Convert mysql datetime to PHP timestamp, forcing UTC. Wrapper for strtotime.
28
- *
29
- * Based on wcs_strtotime_dark_knight() from WC Subscriptions by Prospress.
30
- *
31
- * @since 3.0.0
32
- * @return int
33
- */
34
- function wc_string_to_timestamp( $time_string, $from_timestamp = null ) {
35
- $original_timezone = date_default_timezone_get();
36
- // @codingStandardsIgnoreStart
37
- date_default_timezone_set( 'UTC' );
38
- if ( null === $from_timestamp ) {
39
- $next_timestamp = strtotime( $time_string );
40
- } else {
41
- $next_timestamp = strtotime( $time_string, $from_timestamp );
42
- }
43
- date_default_timezone_set( $original_timezone );
44
- // @codingStandardsIgnoreEnd
45
- return $next_timestamp;
46
- }
47
- }
48
- }
1
+ <?php
2
+ use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
3
+
4
+ defined( 'ABSPATH' ) or exit;
5
+
6
+ // load date/time functions for older WC versions
7
+ if ( WCX::is_wc_version_lt_3_0() ) {
8
+ if ( !function_exists( 'wc_timezone_offset' ) ) {
9
+ /**
10
+ * Get timezone offset in seconds.
11
+ *
12
+ * @since 3.0.0
13
+ * @return float
14
+ */
15
+ function wc_timezone_offset() {
16
+ if ( $timezone = get_option( 'timezone_string' ) ) {
17
+ $timezone_object = new DateTimeZone( $timezone );
18
+ return $timezone_object->getOffset( new DateTime( 'now' ) );
19
+ } else {
20
+ return floatval( get_option( 'gmt_offset', 0 ) ) * HOUR_IN_SECONDS;
21
+ }
22
+ }
23
+ }
24
+
25
+ if ( !function_exists( 'wc_string_to_timestamp' ) ) {
26
+ /**
27
+ * Convert mysql datetime to PHP timestamp, forcing UTC. Wrapper for strtotime.
28
+ *
29
+ * Based on wcs_strtotime_dark_knight() from WC Subscriptions by Prospress.
30
+ *
31
+ * @since 3.0.0
32
+ * @return int
33
+ */
34
+ function wc_string_to_timestamp( $time_string, $from_timestamp = null ) {
35
+ $original_timezone = date_default_timezone_get();
36
+ // @codingStandardsIgnoreStart
37
+ date_default_timezone_set( 'UTC' );
38
+ if ( null === $from_timestamp ) {
39
+ $next_timestamp = strtotime( $time_string );
40
+ } else {
41
+ $next_timestamp = strtotime( $time_string, $from_timestamp );
42
+ }
43
+ date_default_timezone_set( $original_timezone );
44
+ // @codingStandardsIgnoreEnd
45
+ return $next_timestamp;
46
+ }
47
+ }
48
+ }
includes/documents/abstract-wcpdf-order-document-methods.php CHANGED
@@ -411,7 +411,7 @@ abstract class Order_Document_Methods extends Order_Document {
411
  * Return/Show the current date
412
  */
413
  public function get_current_date() {
414
- return apply_filters( 'wpo_wcpdf_date', date_i18n( wc_date_format() ) );
415
  }
416
  public function current_date() {
417
  echo $this->get_current_date();
@@ -482,7 +482,7 @@ abstract class Order_Document_Methods extends Order_Document {
482
  $order_date = WCX_Order::get_prop( $this->order, 'date_created' );
483
  }
484
 
485
- $date = $order_date->date_i18n( wc_date_format() );
486
  $mysql_date = $order_date->date( "Y-m-d H:i:s" );
487
  return apply_filters( 'wpo_wcpdf_order_date', $date, $mysql_date, $this );
488
  }
@@ -1203,7 +1203,7 @@ abstract class Order_Document_Methods extends Order_Document {
1203
 
1204
  public function get_invoice_date() {
1205
  if ( $invoice_date = $this->get_date('invoice') ) {
1206
- return $invoice_date->date_i18n( apply_filters( 'wpo_wcpdf_date_format', wc_date_format(), $this ) );
1207
  } else {
1208
  return '';
1209
  }
411
  * Return/Show the current date
412
  */
413
  public function get_current_date() {
414
+ return apply_filters( 'wpo_wcpdf_date', date_i18n( wcpdf_date_format( $this, 'current_date' ) ) );
415
  }
416
  public function current_date() {
417
  echo $this->get_current_date();
482
  $order_date = WCX_Order::get_prop( $this->order, 'date_created' );
483
  }
484
 
485
+ $date = $order_date->date_i18n( wcpdf_date_format( $this, 'order_date' ) );
486
  $mysql_date = $order_date->date( "Y-m-d H:i:s" );
487
  return apply_filters( 'wpo_wcpdf_order_date', $date, $mysql_date, $this );
488
  }
1203
 
1204
  public function get_invoice_date() {
1205
  if ( $invoice_date = $this->get_date('invoice') ) {
1206
+ return $invoice_date->date_i18n( wcpdf_date_format( $this, 'invoice_date' ) );
1207
  } else {
1208
  return '';
1209
  }
includes/legacy/class-wcpdf-legacy-deprecated-hooks.php CHANGED
@@ -1,42 +1,42 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Legacy;
3
-
4
- use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
- use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
- use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
-
8
- if ( ! defined( 'ABSPATH' ) ) {
9
- exit; // Exit if accessed directly
10
- }
11
-
12
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Deprecated_Hooks' ) ) :
13
-
14
- class Deprecated_Hooks {
15
-
16
- /**
17
- * Constructor.
18
- */
19
- public function __construct() {
20
- if ( has_filter( 'wpo_wcpdf_invoice_number' ) ) {
21
- add_filter( 'wpo_wcpdf_formatted_document_number', array( $this, 'wpo_wcpdf_invoice_number' ), 10, 4 );
22
- }
23
- }
24
-
25
- public function wpo_wcpdf_invoice_number( $formatted_number, $number, $document_type, $order_id ) {
26
- if ( $document_type == 'invoice' ) {
27
- // prepare filter arguments
28
- $invoice_number = $number->get_plain();
29
- $order = WCX::get_order( $order_id );
30
- $order_number = $order->get_order_number();
31
- $order_date = WCX_Order::get_prop( $order, 'date_created' );
32
- $mysql_order_date = $order_date->date( "Y-m-d H:i:s" );
33
- // apply filter
34
- $formatted_number = apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $order_number, $order_id, $mysql_order_date );
35
- }
36
- return $formatted_number;
37
- }
38
- }
39
-
40
- endif; // class_exists
41
-
42
  return new Deprecated_Hooks();
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Legacy;
3
+
4
+ use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
+ use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
+ use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit; // Exit if accessed directly
10
+ }
11
+
12
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Deprecated_Hooks' ) ) :
13
+
14
+ class Deprecated_Hooks {
15
+
16
+ /**
17
+ * Constructor.
18
+ */
19
+ public function __construct() {
20
+ if ( has_filter( 'wpo_wcpdf_invoice_number' ) ) {
21
+ add_filter( 'wpo_wcpdf_formatted_document_number', array( $this, 'wpo_wcpdf_invoice_number' ), 10, 4 );
22
+ }
23
+ }
24
+
25
+ public function wpo_wcpdf_invoice_number( $formatted_number, $number, $document_type, $order_id ) {
26
+ if ( $document_type == 'invoice' ) {
27
+ // prepare filter arguments
28
+ $invoice_number = $number->get_plain();
29
+ $order = WCX::get_order( $order_id );
30
+ $order_number = $order->get_order_number();
31
+ $order_date = WCX_Order::get_prop( $order, 'date_created' );
32
+ $mysql_order_date = $order_date->date( "Y-m-d H:i:s" );
33
+ // apply filter
34
+ $formatted_number = apply_filters( 'wpo_wcpdf_invoice_number', $invoice_number, $order_number, $order_id, $mysql_order_date );
35
+ }
36
+ return $formatted_number;
37
+ }
38
+ }
39
+
40
+ endif; // class_exists
41
+
42
  return new Deprecated_Hooks();
includes/legacy/class-wcpdf-legacy-export.php CHANGED
@@ -1,95 +1,95 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Legacy;
3
-
4
- use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
- use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
- use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
-
8
- if ( ! defined( 'ABSPATH' ) ) {
9
- exit; // Exit if accessed directly
10
- }
11
-
12
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Export' ) ) :
13
-
14
- class Legacy_Export {
15
-
16
- public $template_path;
17
- public $template_default_base_path;
18
-
19
- public $order;
20
- public $template_type;
21
- public $order_id;
22
- public $output_body;
23
- public $document;
24
-
25
- public function __construct() {
26
- $this->template_path = WPO_WCPDF()->settings->get_template_path();
27
- $this->template_default_base_path = WPO_WCPDF()->plugin_path() . '/templates/';
28
- $this->order = false;
29
- }
30
-
31
- /**
32
- * Redirect document function calls directly to document object
33
- */
34
- public function __call( $name, $arguments ) {
35
- $human_readable_call = '$wpo_wcpdf->export->'.$name.'()';
36
- WPO_WCPDF_Legacy()->auto_enable_check( $human_readable_call );
37
-
38
- $callback_map = array(
39
- 'wc_price' => 'format_price',
40
- );
41
-
42
- if ( $name == 'get_pdf' && empty( $this->document ) ) {
43
- $this->document = wcpdf_get_document( $arguments[0], $arguments[1], true );
44
- }
45
-
46
- if ( array_key_exists( $name, $callback_map ) && is_object( $this->document ) && is_callable( array( $this->document, $callback_map[$name] ) ) ) {
47
- wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$callback_map[$name].'()' );
48
- return call_user_func_array( array( $this->document, $callback_map[$name] ), $arguments );
49
- } elseif ( is_object( $this->document ) && is_callable( array( $this->document, $name ) ) ) {
50
- wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$name.'()' );
51
- return call_user_func_array( array( $this->document, $name ), $arguments );
52
- } else {
53
- throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
54
- }
55
- }
56
-
57
- public function tmp_path( $type = '' ) {
58
- return WPO_WCPDF()->main->get_tmp_path( $type );
59
- }
60
-
61
- public function build_filename( $template_type, $order_ids, $context ) {
62
- if ( empty( $this->document ) ) {
63
- $this->document = wcpdf_get_document( $template_type, $order_ids, true );
64
- }
65
-
66
- return $this->document->get_filename();
67
- }
68
-
69
- public function get_display_number( $order_id ) {
70
- wcpdf_deprecated_function( '$wpo_wcpdf->export->get_display_number()', '2.0' );
71
- if ( empty( $this->document ) ) {
72
- // we don't know what document type we're handling, so we return the order number
73
- $order = WCX::get_order ( $order_id );$order->get_order_number;
74
- $order_number = method_exists( $order, 'get_order_number' ) ? $order->get_order_number() : '';
75
- return $order_number;
76
- }
77
-
78
- if ( isset( $this->document->settings['display_number'] ) ) {
79
- $order_number = (string) $this->document->get_number();
80
- } else {
81
- if ( empty( $this->order ) ) {
82
- $order = WCX::get_order ( $order_ids[0] );
83
- $order_number = method_exists( $order, 'get_order_number' ) ? $order->get_order_number() : '';
84
- } else {
85
- $order_number = method_exists( $this->order, 'get_order_number' ) ? $this->order->get_order_number() : '';
86
- }
87
- }
88
-
89
- return $order_number;
90
- }
91
- }
92
-
93
- endif; // class_exists
94
-
95
- return new Legacy_Export();
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Legacy;
3
+
4
+ use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
+ use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
+ use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit; // Exit if accessed directly
10
+ }
11
+
12
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Export' ) ) :
13
+
14
+ class Legacy_Export {
15
+
16
+ public $template_path;
17
+ public $template_default_base_path;
18
+
19
+ public $order;
20
+ public $template_type;
21
+ public $order_id;
22
+ public $output_body;
23
+ public $document;
24
+
25
+ public function __construct() {
26
+ $this->template_path = WPO_WCPDF()->settings->get_template_path();
27
+ $this->template_default_base_path = WPO_WCPDF()->plugin_path() . '/templates/';
28
+ $this->order = false;
29
+ }
30
+
31
+ /**
32
+ * Redirect document function calls directly to document object
33
+ */
34
+ public function __call( $name, $arguments ) {
35
+ $human_readable_call = '$wpo_wcpdf->export->'.$name.'()';
36
+ WPO_WCPDF_Legacy()->auto_enable_check( $human_readable_call );
37
+
38
+ $callback_map = array(
39
+ 'wc_price' => 'format_price',
40
+ );
41
+
42
+ if ( $name == 'get_pdf' && empty( $this->document ) ) {
43
+ $this->document = wcpdf_get_document( $arguments[0], $arguments[1], true );
44
+ }
45
+
46
+ if ( array_key_exists( $name, $callback_map ) && is_object( $this->document ) && is_callable( array( $this->document, $callback_map[$name] ) ) ) {
47
+ wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$callback_map[$name].'()' );
48
+ return call_user_func_array( array( $this->document, $callback_map[$name] ), $arguments );
49
+ } elseif ( is_object( $this->document ) && is_callable( array( $this->document, $name ) ) ) {
50
+ wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$name.'()' );
51
+ return call_user_func_array( array( $this->document, $name ), $arguments );
52
+ } else {
53
+ throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
54
+ }
55
+ }
56
+
57
+ public function tmp_path( $type = '' ) {
58
+ return WPO_WCPDF()->main->get_tmp_path( $type );
59
+ }
60
+
61
+ public function build_filename( $template_type, $order_ids, $context ) {
62
+ if ( empty( $this->document ) ) {
63
+ $this->document = wcpdf_get_document( $template_type, $order_ids, true );
64
+ }
65
+
66
+ return $this->document->get_filename();
67
+ }
68
+
69
+ public function get_display_number( $order_id ) {
70
+ wcpdf_deprecated_function( '$wpo_wcpdf->export->get_display_number()', '2.0' );
71
+ if ( empty( $this->document ) ) {
72
+ // we don't know what document type we're handling, so we return the order number
73
+ $order = WCX::get_order ( $order_id );$order->get_order_number;
74
+ $order_number = method_exists( $order, 'get_order_number' ) ? $order->get_order_number() : '';
75
+ return $order_number;
76
+ }
77
+
78
+ if ( isset( $this->document->settings['display_number'] ) ) {
79
+ $order_number = (string) $this->document->get_number();
80
+ } else {
81
+ if ( empty( $this->order ) ) {
82
+ $order = WCX::get_order ( $order_ids[0] );
83
+ $order_number = method_exists( $order, 'get_order_number' ) ? $order->get_order_number() : '';
84
+ } else {
85
+ $order_number = method_exists( $this->order, 'get_order_number' ) ? $this->order->get_order_number() : '';
86
+ }
87
+ }
88
+
89
+ return $order_number;
90
+ }
91
+ }
92
+
93
+ endif; // class_exists
94
+
95
+ return new Legacy_Export();
includes/legacy/class-wcpdf-legacy-functions.php CHANGED
@@ -1,54 +1,54 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Legacy;
3
-
4
- use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
- use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
- use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
-
8
- if ( ! defined( 'ABSPATH' ) ) {
9
- exit; // Exit if accessed directly
10
- }
11
-
12
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Functions' ) ) :
13
-
14
- class Legacy_Functions {
15
-
16
- /**
17
- * Get template name from slug
18
- */
19
- public function get_template_name ( $template_type ) {
20
- switch ( $template_type ) {
21
- case 'invoice':
22
- $template_name = apply_filters( 'wpo_wcpdf_invoice_title', __( 'Invoice', 'woocommerce-pdf-invoices-packing-slips' ) );
23
- break;
24
- case 'packing-slip':
25
- $template_name = apply_filters( 'wpo_wcpdf_packing_slip_title', __( 'Packing Slip', 'woocommerce-pdf-invoices-packing-slips' ) );
26
- break;
27
- default:
28
- // try to 'unslug' the name
29
- $template_name = ucwords( str_replace( array( '_', '-' ), ' ', $template_type ) );
30
- break;
31
- }
32
-
33
- return apply_filters( 'wpo_wcpdf_template_name', $template_name, $template_type );
34
- }
35
-
36
- /**
37
- * Redirect document function calls directly to document object
38
- */
39
- public function __call( $name, $arguments ) {
40
- $human_readable_call = '$wpo_wcpdf->functions->'.$name.'()';
41
- WPO_WCPDF_Legacy()->auto_enable_check( $human_readable_call );
42
-
43
- if ( is_object( WPO_WCPDF_Legacy()->export->document ) && is_callable( array( WPO_WCPDF_Legacy()->export->document, $name ) ) ) {
44
- return call_user_func_array( array( WPO_WCPDF_Legacy()->export->document, $name ), $arguments );
45
- } else {
46
- throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
47
- }
48
- }
49
-
50
- }
51
-
52
- endif; // class_exists
53
-
54
  return new Legacy_Functions();
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Legacy;
3
+
4
+ use WPO\WC\PDF_Invoices\Compatibility\WC_Core as WCX;
5
+ use WPO\WC\PDF_Invoices\Compatibility\Order as WCX_Order;
6
+ use WPO\WC\PDF_Invoices\Compatibility\Product as WCX_Product;
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit; // Exit if accessed directly
10
+ }
11
+
12
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Functions' ) ) :
13
+
14
+ class Legacy_Functions {
15
+
16
+ /**
17
+ * Get template name from slug
18
+ */
19
+ public function get_template_name ( $template_type ) {
20
+ switch ( $template_type ) {
21
+ case 'invoice':
22
+ $template_name = apply_filters( 'wpo_wcpdf_invoice_title', __( 'Invoice', 'woocommerce-pdf-invoices-packing-slips' ) );
23
+ break;
24
+ case 'packing-slip':
25
+ $template_name = apply_filters( 'wpo_wcpdf_packing_slip_title', __( 'Packing Slip', 'woocommerce-pdf-invoices-packing-slips' ) );
26
+ break;
27
+ default:
28
+ // try to 'unslug' the name
29
+ $template_name = ucwords( str_replace( array( '_', '-' ), ' ', $template_type ) );
30
+ break;
31
+ }
32
+
33
+ return apply_filters( 'wpo_wcpdf_template_name', $template_name, $template_type );
34
+ }
35
+
36
+ /**
37
+ * Redirect document function calls directly to document object
38
+ */
39
+ public function __call( $name, $arguments ) {
40
+ $human_readable_call = '$wpo_wcpdf->functions->'.$name.'()';
41
+ WPO_WCPDF_Legacy()->auto_enable_check( $human_readable_call );
42
+
43
+ if ( is_object( WPO_WCPDF_Legacy()->export->document ) && is_callable( array( WPO_WCPDF_Legacy()->export->document, $name ) ) ) {
44
+ return call_user_func_array( array( WPO_WCPDF_Legacy()->export->document, $name ), $arguments );
45
+ } else {
46
+ throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
47
+ }
48
+ }
49
+
50
+ }
51
+
52
+ endif; // class_exists
53
+
54
  return new Legacy_Functions();
includes/legacy/class-wcpdf-legacy-settings.php CHANGED
@@ -1,155 +1,155 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Legacy;
3
-
4
- if ( ! defined( 'ABSPATH' ) ) {
5
- exit; // Exit if accessed directly
6
- }
7
-
8
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Settings' ) ) :
9
-
10
- class Legacy_Settings {
11
-
12
- public $general_settings;
13
- public $template_settings;
14
- public $debug_settings;
15
-
16
- public $options_page_hook = 'woocommerce_page_wpo_wcpdf_options_page';
17
-
18
- public function __construct() {
19
- $this->load_legacy_settings();
20
- }
21
-
22
- public function load_legacy_settings() {
23
- // map new settings to old
24
- $settings_map = array(
25
- 'wpo_wcpdf_settings_general' => array(
26
- 'download_display' => array( 'wpo_wcpdf_general_settings' => 'download_display' ),
27
- 'template_path' => array( 'wpo_wcpdf_template_settings' => 'template_path' ),
28
- 'currency_font' => array( 'wpo_wcpdf_template_settings' => 'currency_font' ),
29
- 'paper_size' => array( 'wpo_wcpdf_template_settings' => 'paper_size' ),
30
- 'header_logo' => array( 'wpo_wcpdf_template_settings' => 'header_logo' ),
31
- 'shop_name' => array( 'wpo_wcpdf_template_settings' => 'shop_name' ),
32
- 'shop_address' => array( 'wpo_wcpdf_template_settings' => 'shop_address' ),
33
- 'footer' => array( 'wpo_wcpdf_template_settings' => 'footer' ),
34
- 'extra_1' => array( 'wpo_wcpdf_template_settings' => 'extra_1' ),
35
- 'extra_2' => array( 'wpo_wcpdf_template_settings' => 'extra_2' ),
36
- 'extra_3' => array( 'wpo_wcpdf_template_settings' => 'extra_3' ),
37
- ),
38
- 'wpo_wcpdf_documents_settings_invoice' => array(
39
- 'attach_to_email_ids' => array( 'wpo_wcpdf_general_settings' => 'email_pdf' ),
40
- 'display_shipping_address' => array( 'wpo_wcpdf_template_settings' => 'invoice_shipping_address' ),
41
- 'display_email' => array( 'wpo_wcpdf_template_settings' => 'invoice_email' ),
42
- 'display_phone' => array( 'wpo_wcpdf_template_settings' => 'invoice_phone' ),
43
- 'display_date' => array( 'wpo_wcpdf_template_settings' => 'display_date' ),
44
- 'display_number' => array( 'wpo_wcpdf_template_settings' => 'display_number' ),
45
- 'number_format' => array( 'wpo_wcpdf_template_settings' => 'invoice_number_formatting' ),
46
- 'reset_number_yearly' => array( 'wpo_wcpdf_template_settings' => 'yearly_reset_invoice_number' ),
47
- 'my_account_buttons' => array( 'wpo_wcpdf_general_settings' => 'my_account_buttons' ),
48
- 'invoice_number_column' => array( 'wpo_wcpdf_general_settings' => 'invoice_number_column' ),
49
- 'disable_free' => array( 'wpo_wcpdf_general_settings' => 'disable_free' ),
50
- ),
51
- 'wpo_wcpdf_documents_settings_packing-slip' => array(
52
- 'display_billing_address' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_billing_address' ),
53
- 'display_email' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_email' ),
54
- 'display_phone' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_phone' ),
55
- ),
56
- 'wpo_wcpdf_settings_debug' => array(
57
- 'enable_debug' => array( 'wpo_wcpdf_debug_settings' => 'enable_debug' ),
58
- 'html_output' => array( 'wpo_wcpdf_debug_settings' => 'html_output' ),
59
- ),
60
- );
61
-
62
- // walk through map and load into legacy properties
63
- foreach ($settings_map as $new_option => $new_settings_keys) {
64
- ${$new_option} = get_option($new_option);
65
- foreach ($new_settings_keys as $new_key => $old_setting ) {
66
- $old_key = reset($old_setting);
67
- $old_option = key($old_setting);
68
- if (isset(${$new_option}[$new_key])) {
69
- $property_name = str_replace( 'wpo_wcpdf_', '', $old_option );
70
- $this->{$property_name}[$old_key] = ${$new_option}[$new_key];
71
- }
72
- }
73
- }
74
- }
75
-
76
- /**
77
- * Redirect settings API callbacks
78
- */
79
- public function __call( $name, $arguments ) {
80
- WPO_WCPDF_Legacy()->auto_enable_check( '$wpo_wcpdf->settings->'.$name.'()', false );
81
- $callback_map = array(
82
- 'text_element_callback' => 'text_input',
83
- 'singular_text_element_callback' => 'singular_text_element',
84
- 'textarea_element_callback' => 'textarea',
85
- 'checkbox_element_callback' => 'checkbox',
86
- 'multiple_checkbox_element_callback' => 'multiple_checkboxes',
87
- // 'checkbox_table_callback' => 'textarea',
88
- 'select_element_callback' => 'select',
89
- 'radio_element_callback' => 'radio_button',
90
- 'media_upload_callback' => 'media_upload',
91
- // 'invoice_number_formatting_callback' => 'textarea',
92
- // 'template_select_element_callback' => 'textarea',
93
- 'section_options_callback' => 'section',
94
- 'debug_section' => 'debug_section',
95
- 'custom_fields_section' => 'custom_fields_section',
96
- 'validate_options' => 'validate',
97
- );
98
-
99
- if ( array_key_exists( $name, $callback_map ) && is_object( WPO_WCPDF()->settings->callbacks ) && is_callable( array( WPO_WCPDF()->settings->callbacks, $callback_map[$name] ) ) ) {
100
- if (isset($arguments[0]['menu'])) {
101
- $arguments[0]['option_name'] = $arguments[0]['menu'];
102
- }
103
- return call_user_func_array( array( WPO_WCPDF()->settings->callbacks, $callback_map[$name] ), $arguments );
104
- } else {
105
- throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
106
- }
107
- }
108
-
109
- /**
110
- * Invoice number formatting callback.
111
- *
112
- * @param array $args Field arguments.
113
- *
114
- * @return string Media upload button & preview.
115
- */
116
- public function invoice_number_formatting_callback( $args ) {
117
- $menu = $args['menu'];
118
- $fields = $args['fields'];
119
- $options = get_option( $menu );
120
-
121
- echo '<table>';
122
- foreach ($fields as $key => $field) {
123
- $id = $args['id'] . '_' . $key;
124
-
125
- if ( isset( $options[$id] ) ) {
126
- $current = $options[$id];
127
- } else {
128
- $current = '';
129
- }
130
-
131
- $title = $field['title'];
132
- $size = $field['size'];
133
- $description = isset( $field['description'] ) ? '<span style="font-style:italic;">'.$field['description'].'</span>' : '';
134
-
135
- echo '<tr>';
136
- printf( '<td style="padding:0 1em 0 0; ">%1$s:</td><td style="padding:0;"><input type="text" id="%2$s" name="%3$s[%2$s]" value="%4$s" size="%5$s"/></td><td style="padding:0 0 0 1em;">%6$s</td>', $title, $id, $menu, $current, $size, $description );
137
- echo '</tr>';
138
- }
139
- echo '</table>';
140
-
141
-
142
- // Displays option description.
143
- if ( isset( $args['description'] ) ) {
144
- printf( '<p class="description">%s</p>', $args['description'] );
145
- }
146
-
147
- // echo $html;
148
- }
149
-
150
-
151
- }
152
-
153
- endif; // class_exists
154
-
155
  return new Legacy_Settings();
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Legacy;
3
+
4
+ if ( ! defined( 'ABSPATH' ) ) {
5
+ exit; // Exit if accessed directly
6
+ }
7
+
8
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\Legacy_Settings' ) ) :
9
+
10
+ class Legacy_Settings {
11
+
12
+ public $general_settings;
13
+ public $template_settings;
14
+ public $debug_settings;
15
+
16
+ public $options_page_hook = 'woocommerce_page_wpo_wcpdf_options_page';
17
+
18
+ public function __construct() {
19
+ $this->load_legacy_settings();
20
+ }
21
+
22
+ public function load_legacy_settings() {
23
+ // map new settings to old
24
+ $settings_map = array(
25
+ 'wpo_wcpdf_settings_general' => array(
26
+ 'download_display' => array( 'wpo_wcpdf_general_settings' => 'download_display' ),
27
+ 'template_path' => array( 'wpo_wcpdf_template_settings' => 'template_path' ),
28
+ 'currency_font' => array( 'wpo_wcpdf_template_settings' => 'currency_font' ),
29
+ 'paper_size' => array( 'wpo_wcpdf_template_settings' => 'paper_size' ),
30
+ 'header_logo' => array( 'wpo_wcpdf_template_settings' => 'header_logo' ),
31
+ 'shop_name' => array( 'wpo_wcpdf_template_settings' => 'shop_name' ),
32
+ 'shop_address' => array( 'wpo_wcpdf_template_settings' => 'shop_address' ),
33
+ 'footer' => array( 'wpo_wcpdf_template_settings' => 'footer' ),
34
+ 'extra_1' => array( 'wpo_wcpdf_template_settings' => 'extra_1' ),
35
+ 'extra_2' => array( 'wpo_wcpdf_template_settings' => 'extra_2' ),
36
+ 'extra_3' => array( 'wpo_wcpdf_template_settings' => 'extra_3' ),
37
+ ),
38
+ 'wpo_wcpdf_documents_settings_invoice' => array(
39
+ 'attach_to_email_ids' => array( 'wpo_wcpdf_general_settings' => 'email_pdf' ),
40
+ 'display_shipping_address' => array( 'wpo_wcpdf_template_settings' => 'invoice_shipping_address' ),
41
+ 'display_email' => array( 'wpo_wcpdf_template_settings' => 'invoice_email' ),
42
+ 'display_phone' => array( 'wpo_wcpdf_template_settings' => 'invoice_phone' ),
43
+ 'display_date' => array( 'wpo_wcpdf_template_settings' => 'display_date' ),
44
+ 'display_number' => array( 'wpo_wcpdf_template_settings' => 'display_number' ),
45
+ 'number_format' => array( 'wpo_wcpdf_template_settings' => 'invoice_number_formatting' ),
46
+ 'reset_number_yearly' => array( 'wpo_wcpdf_template_settings' => 'yearly_reset_invoice_number' ),
47
+ 'my_account_buttons' => array( 'wpo_wcpdf_general_settings' => 'my_account_buttons' ),
48
+ 'invoice_number_column' => array( 'wpo_wcpdf_general_settings' => 'invoice_number_column' ),
49
+ 'disable_free' => array( 'wpo_wcpdf_general_settings' => 'disable_free' ),
50
+ ),
51
+ 'wpo_wcpdf_documents_settings_packing-slip' => array(
52
+ 'display_billing_address' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_billing_address' ),
53
+ 'display_email' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_email' ),
54
+ 'display_phone' => array( 'wpo_wcpdf_template_settings' => 'packing_slip_phone' ),
55
+ ),
56
+ 'wpo_wcpdf_settings_debug' => array(
57
+ 'enable_debug' => array( 'wpo_wcpdf_debug_settings' => 'enable_debug' ),
58
+ 'html_output' => array( 'wpo_wcpdf_debug_settings' => 'html_output' ),
59
+ ),
60
+ );
61
+
62
+ // walk through map and load into legacy properties
63
+ foreach ($settings_map as $new_option => $new_settings_keys) {
64
+ ${$new_option} = get_option($new_option);
65
+ foreach ($new_settings_keys as $new_key => $old_setting ) {
66
+ $old_key = reset($old_setting);
67
+ $old_option = key($old_setting);
68
+ if (isset(${$new_option}[$new_key])) {
69
+ $property_name = str_replace( 'wpo_wcpdf_', '', $old_option );
70
+ $this->{$property_name}[$old_key] = ${$new_option}[$new_key];
71
+ }
72
+ }
73
+ }
74
+ }
75
+
76
+ /**
77
+ * Redirect settings API callbacks
78
+ */
79
+ public function __call( $name, $arguments ) {
80
+ WPO_WCPDF_Legacy()->auto_enable_check( '$wpo_wcpdf->settings->'.$name.'()', false );
81
+ $callback_map = array(
82
+ 'text_element_callback' => 'text_input',
83
+ 'singular_text_element_callback' => 'singular_text_element',
84
+ 'textarea_element_callback' => 'textarea',
85
+ 'checkbox_element_callback' => 'checkbox',
86
+ 'multiple_checkbox_element_callback' => 'multiple_checkboxes',
87
+ // 'checkbox_table_callback' => 'textarea',
88
+ 'select_element_callback' => 'select',
89
+ 'radio_element_callback' => 'radio_button',
90
+ 'media_upload_callback' => 'media_upload',
91
+ // 'invoice_number_formatting_callback' => 'textarea',
92
+ // 'template_select_element_callback' => 'textarea',
93
+ 'section_options_callback' => 'section',
94
+ 'debug_section' => 'debug_section',
95
+ 'custom_fields_section' => 'custom_fields_section',
96
+ 'validate_options' => 'validate',
97
+ );
98
+
99
+ if ( array_key_exists( $name, $callback_map ) && is_object( WPO_WCPDF()->settings->callbacks ) && is_callable( array( WPO_WCPDF()->settings->callbacks, $callback_map[$name] ) ) ) {
100
+ if (isset($arguments[0]['menu'])) {
101
+ $arguments[0]['option_name'] = $arguments[0]['menu'];
102
+ }
103
+ return call_user_func_array( array( WPO_WCPDF()->settings->callbacks, $callback_map[$name] ), $arguments );
104
+ } else {
105
+ throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
106
+ }
107
+ }
108
+
109
+ /**
110
+ * Invoice number formatting callback.
111
+ *
112
+ * @param array $args Field arguments.
113
+ *
114
+ * @return string Media upload button & preview.
115
+ */
116
+ public function invoice_number_formatting_callback( $args ) {
117
+ $menu = $args['menu'];
118
+ $fields = $args['fields'];
119
+ $options = get_option( $menu );
120
+
121
+ echo '<table>';
122
+ foreach ($fields as $key => $field) {
123
+ $id = $args['id'] . '_' . $key;
124
+
125
+ if ( isset( $options[$id] ) ) {
126
+ $current = $options[$id];
127
+ } else {
128
+ $current = '';
129
+ }
130
+
131
+ $title = $field['title'];
132
+ $size = $field['size'];
133
+ $description = isset( $field['description'] ) ? '<span style="font-style:italic;">'.$field['description'].'</span>' : '';
134
+
135
+ echo '<tr>';
136
+ printf( '<td style="padding:0 1em 0 0; ">%1$s:</td><td style="padding:0;"><input type="text" id="%2$s" name="%3$s[%2$s]" value="%4$s" size="%5$s"/></td><td style="padding:0 0 0 1em;">%6$s</td>', $title, $id, $menu, $current, $size, $description );
137
+ echo '</tr>';
138
+ }
139
+ echo '</table>';
140
+
141
+
142
+ // Displays option description.
143
+ if ( isset( $args['description'] ) ) {
144
+ printf( '<p class="description">%s</p>', $args['description'] );
145
+ }
146
+
147
+ // echo $html;
148
+ }
149
+
150
+
151
+ }
152
+
153
+ endif; // class_exists
154
+
155
  return new Legacy_Settings();
includes/legacy/class-wcpdf-legacy.php CHANGED
@@ -1,90 +1,90 @@
1
- <?php
2
- namespace WPO\WC\PDF_Invoices\Legacy;
3
-
4
- defined( 'ABSPATH' ) or exit;
5
-
6
- if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\WPO_WCPDF_Legacy' ) ) :
7
-
8
- class WPO_WCPDF_Legacy {
9
- public static $version;
10
- public $enabled;
11
- public $settings;
12
- public $export;
13
- public $functions;
14
-
15
- protected static $_instance = null;
16
-
17
- /**
18
- * Main Plugin Instance
19
- *
20
- * Ensures only one instance of plugin is loaded or can be loaded.
21
- */
22
- public static function instance() {
23
- if ( is_null( self::$_instance ) ) {
24
- self::$_instance = new self();
25
- }
26
- return self::$_instance;
27
- }
28
-
29
- /**
30
- * Constructor
31
- */
32
- public function __construct() {
33
- self::$version = WPO_WCPDF()->version;
34
- $this->enabled = WPO_WCPDF()->legacy_mode_enabled();
35
- $this->settings = include_once( 'class-wcpdf-legacy-settings.php' );
36
- $this->export = include_once( 'class-wcpdf-legacy-export.php' );
37
- $this->functions = include_once( 'class-wcpdf-legacy-functions.php' );
38
- }
39
-
40
- /**
41
- * Redirect function calls directly to legacy functions class
42
- */
43
- public function __call( $name, $arguments ) {
44
- $human_readable_call = '$wpo_wcpdf->'.$name.'()';
45
- $this->auto_enable_check( $human_readable_call );
46
-
47
- if ( is_callable( array( WPO_WCPDF(), $name ) ) ) {
48
- wcpdf_deprecated_function( $human_readable_call, '2.0', 'WPO_WCPDF()->'.$name.'()' );
49
- return call_user_func_array( array( WPO_WCPDF(), $name ), $arguments );
50
- } elseif ( is_callable( array( $this->functions, $name ) ) ) {
51
- wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$name.'()' );
52
- return call_user_func_array( array( $this->functions, $name ), $arguments );
53
- } else {
54
- throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
55
- }
56
- }
57
-
58
- /**
59
- * Fired when a call is made to the legacy class (also used by sub classes).
60
- * If legacy mode was not enabled, it is automatically enabled and an error message is shown to the user
61
- * Reloading the page should then work in legacy mode
62
- */
63
- public function auto_enable_check( $call = '', $die = true ) {
64
- if ( $this->enabled === false ) {
65
- $debug_settings = get_option( 'wpo_wcpdf_settings_debug', array() );
66
- $debug_settings['legacy_mode'] = 1;
67
- update_option( 'wpo_wcpdf_settings_debug', $debug_settings );
68
- $this->enabled = true;
69
- add_action( 'wp_die_ajax_handler', function() {
70
- return '_default_wp_die_handler';
71
- } );
72
- $title = __( 'Error', 'woocommerce-pdf-invoices-packing-slips' );
73
- $message = __( 'An outdated template or action hook was used to generate the PDF. Legacy mode has been activated, please try again by reloading this page.', 'woocommerce-pdf-invoices-packing-slips' );
74
-
75
- if (!empty($call)) {
76
- $message = sprintf('%s</p><p>%s: <b>%s</b>', $message, __( 'The following function was called', 'woocommerce-pdf-invoices-packing-slips' ), $call );
77
- }
78
- wp_die( "<h1>{$title}</h1><p>{$message}</p>", $title );
79
- }
80
- }
81
- }
82
-
83
- endif; // Class exists check
84
-
85
- function WPO_WCPDF_Legacy() {
86
- return WPO_WCPDF_Legacy::instance();
87
- }
88
-
89
- // Global for backwards compatibility.
90
  $GLOBALS['wpo_wcpdf'] = WPO_WCPDF_Legacy();
1
+ <?php
2
+ namespace WPO\WC\PDF_Invoices\Legacy;
3
+
4
+ defined( 'ABSPATH' ) or exit;
5
+
6
+ if ( !class_exists( '\\WPO\\WC\\PDF_Invoices\\Legacy\\WPO_WCPDF_Legacy' ) ) :
7
+
8
+ class WPO_WCPDF_Legacy {
9
+ public static $version;
10
+ public $enabled;
11
+ public $settings;
12
+ public $export;
13
+ public $functions;
14
+
15
+ protected static $_instance = null;
16
+
17
+ /**
18
+ * Main Plugin Instance
19
+ *
20
+ * Ensures only one instance of plugin is loaded or can be loaded.
21
+ */
22
+ public static function instance() {
23
+ if ( is_null( self::$_instance ) ) {
24
+ self::$_instance = new self();
25
+ }
26
+ return self::$_instance;
27
+ }
28
+
29
+ /**
30
+ * Constructor
31
+ */
32
+ public function __construct() {
33
+ self::$version = WPO_WCPDF()->version;
34
+ $this->enabled = WPO_WCPDF()->legacy_mode_enabled();
35
+ $this->settings = include_once( 'class-wcpdf-legacy-settings.php' );
36
+ $this->export = include_once( 'class-wcpdf-legacy-export.php' );
37
+ $this->functions = include_once( 'class-wcpdf-legacy-functions.php' );
38
+ }
39
+
40
+ /**
41
+ * Redirect function calls directly to legacy functions class
42
+ */
43
+ public function __call( $name, $arguments ) {
44
+ $human_readable_call = '$wpo_wcpdf->'.$name.'()';
45
+ $this->auto_enable_check( $human_readable_call );
46
+
47
+ if ( is_callable( array( WPO_WCPDF(), $name ) ) ) {
48
+ wcpdf_deprecated_function( $human_readable_call, '2.0', 'WPO_WCPDF()->'.$name.'()' );
49
+ return call_user_func_array( array( WPO_WCPDF(), $name ), $arguments );
50
+ } elseif ( is_callable( array( $this->functions, $name ) ) ) {
51
+ wcpdf_deprecated_function( $human_readable_call, '2.0', '$this->'.$name.'()' );
52
+ return call_user_func_array( array( $this->functions, $name ), $arguments );
53
+ } else {
54
+ throw new \Exception("Call to undefined method ".__CLASS__."::{$name}()", 1);
55
+ }
56
+ }
57
+
58
+ /**
59
+ * Fired when a call is made to the legacy class (also used by sub classes).
60
+ * If legacy mode was not enabled, it is automatically enabled and an error message is shown to the user
61
+ * Reloading the page should then work in legacy mode
62
+ */
63
+ public function auto_enable_check( $call = '', $die = true ) {
64
+ if ( $this->enabled === false ) {
65
+ $debug_settings = get_option( 'wpo_wcpdf_settings_debug', array() );
66
+ $debug_settings['legacy_mode'] = 1;
67
+ update_option( 'wpo_wcpdf_settings_debug', $debug_settings );
68
+ $this->enabled = true;
69
+ add_action( 'wp_die_ajax_handler', function() {
70
+ return '_default_wp_die_handler';
71
+ } );
72
+ $title = __( 'Error', 'woocommerce-pdf-invoices-packing-slips' );
73
+ $message = __( 'An outdated template or action hook was used to generate the PDF. Legacy mode has been activated, please try again by reloading this page.', 'woocommerce-pdf-invoices-packing-slips' );
74
+
75
+ if (!empty($call)) {
76
+ $message = sprintf('%s</p><p>%s: <b>%s</b>', $message, __( 'The following function was called', 'woocommerce-pdf-invoices-packing-slips' ), $call );
77
+ }
78
+ wp_die( "<h1>{$title}</h1><p>{$message}</p>", $title );
79
+ }
80
+ }
81
+ }
82
+
83
+ endif; // Class exists check
84
+
85
+ function WPO_WCPDF_Legacy() {
86
+ return WPO_WCPDF_Legacy::instance();
87
+ }
88
+
89
+ // Global for backwards compatibility.
90
  $GLOBALS['wpo_wcpdf'] = WPO_WCPDF_Legacy();
includes/views/attachment-settings-hint.php CHANGED
@@ -1,24 +1,24 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <?php
3
- $invoice_settings_url = add_query_arg( array(
4
- 'tab' => 'documents',
5
- 'section' => 'invoice',
6
- ) );
7
- ?>
8
- <style>
9
- .wcpdf-attachment-settings-hint {
10
- display: inline-block;
11
- background: #fff;
12
- border-left: 4px solid #cc99c2 !important;
13
- -webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
14
- box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
15
- padding: 15px;
16
- margin-top: 15px;
17
- font-size: 120%;
18
- }
19
- </style>
20
- <!-- <div id="message" class="updated woocommerce-message"> -->
21
- <div class="wcpdf-attachment-settings-hint">
22
- <?php printf(__( "It looks like you haven't setup any email attachments yet, check the settings under <b>%sDocuments > Invoice%s</b>", 'woocommerce-pdf-invoices-packing-slips' ), '<a href="'.$invoice_settings_url.'">', '</a>'); ?><br>
23
- <?php printf('<a href="%s" style="font">%s</a>', add_query_arg( 'wpo_wcpdf_hide_attachments_hint', 'true' ), __( 'Hide this message', 'woocommerce-pdf-invoices-packing-slips' ) ); ?>
24
- </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <?php
3
+ $invoice_settings_url = add_query_arg( array(
4
+ 'tab' => 'documents',
5
+ 'section' => 'invoice',
6
+ ) );
7
+ ?>
8
+ <style>
9
+ .wcpdf-attachment-settings-hint {
10
+ display: inline-block;
11
+ background: #fff;
12
+ border-left: 4px solid #cc99c2 !important;
13
+ -webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
14
+ box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
15
+ padding: 15px;
16
+ margin-top: 15px;
17
+ font-size: 120%;
18
+ }
19
+ </style>
20
+ <!-- <div id="message" class="updated woocommerce-message"> -->
21
+ <div class="wcpdf-attachment-settings-hint">
22
+ <?php printf(__( "It looks like you haven't setup any email attachments yet, check the settings under <b>%sDocuments > Invoice%s</b>", 'woocommerce-pdf-invoices-packing-slips' ), '<a href="'.$invoice_settings_url.'">', '</a>'); ?><br>
23
+ <?php printf('<a href="%s" style="font">%s</a>', add_query_arg( 'wpo_wcpdf_hide_attachments_hint', 'true' ), __( 'Hide this message', 'woocommerce-pdf-invoices-packing-slips' ) ); ?>
24
+ </div>
includes/views/setup-wizard/good-to-go.php CHANGED
@@ -1,7 +1,7 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description wpo-final">
3
- <h1><?php _e( 'You are good to go!' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h1>
4
- <p><?php _e( 'If you have any questions please have a look at our documentation:', 'woocommerce-pdf-invoices-packing-slips' ); ?><br>
5
- <a href="https://docs.wpovernight.com/category/woocommerce-pdf-invoices-packing-slips/" target="_blank"><?php _e( 'Invoices & Packing Slips' , 'woocommerce-pdf-invoices-packing-slips' ); ?></a></p>
6
- <h2><?php _e( 'Happy selling!' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
7
  </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description wpo-final">
3
+ <h1><?php _e( 'You are good to go!' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h1>
4
+ <p><?php _e( 'If you have any questions please have a look at our documentation:', 'woocommerce-pdf-invoices-packing-slips' ); ?><br>
5
+ <a href="https://docs.wpovernight.com/category/woocommerce-pdf-invoices-packing-slips/" target="_blank"><?php _e( 'Invoices & Packing Slips' , 'woocommerce-pdf-invoices-packing-slips' ); ?></a></p>
6
+ <h2><?php _e( 'Happy selling!' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
7
  </div>
includes/views/setup-wizard/logo.php CHANGED
@@ -1,21 +1,21 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description">
3
- <h2><?php _e( 'Your logo' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
- <p><?php _e( 'Set the header image that will display on your invoice.' , 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
- </div>
6
- <div class="wpo-setup-input">
7
- <?php
8
- $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
- $logo_id = !empty($current_settings['header_logo']) ? $current_settings['header_logo'] : '';
10
-
11
- if ( !empty($logo_id) && $logo = wp_get_attachment_image_src( $logo_id, 'full', false ) ) {
12
- $logo_src = $logo[0];
13
- } else {
14
- // empty image
15
- $logo_src = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=';
16
- }
17
- ?>
18
- <img src="<?php echo $logo_src; ?>" width="100%" height="20px" alt="" id="img-header_logo"/>
19
- <input id="header_logo" name="wcpdf_settings[wpo_wcpdf_settings_general][header_logo]" type="hidden" value="<?php echo $logo_id; ?>" />
20
- <span class="button wpo_upload_image_button header_logo" data-uploader_title="<?php _e( 'Select or upload your invoice header/logo', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-uploader_button_text="<?php _e( 'Set image', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-remove_button_text="<?php _e( 'Remove image', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-input_id="header_logo"><?php _e( 'Set image', 'woocommerce-pdf-invoices-packing-slips' ); ?></span>
21
  </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description">
3
+ <h2><?php _e( 'Your logo' , 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
+ <p><?php _e( 'Set the header image that will display on your invoice.' , 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
+ </div>
6
+ <div class="wpo-setup-input">
7
+ <?php
8
+ $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
+ $logo_id = !empty($current_settings['header_logo']) ? $current_settings['header_logo'] : '';
10
+
11
+ if ( !empty($logo_id) && $logo = wp_get_attachment_image_src( $logo_id, 'full', false ) ) {
12
+ $logo_src = $logo[0];
13
+ } else {
14
+ // empty image
15
+ $logo_src = 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=';
16
+ }
17
+ ?>
18
+ <img src="<?php echo $logo_src; ?>" width="100%" height="20px" alt="" id="img-header_logo"/>
19
+ <input id="header_logo" name="wcpdf_settings[wpo_wcpdf_settings_general][header_logo]" type="hidden" value="<?php echo $logo_id; ?>" />
20
+ <span class="button wpo_upload_image_button header_logo" data-uploader_title="<?php _e( 'Select or upload your invoice header/logo', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-uploader_button_text="<?php _e( 'Set image', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-remove_button_text="<?php _e( 'Remove image', 'woocommerce-pdf-invoices-packing-slips' ); ?>" data-input_id="header_logo"><?php _e( 'Set image', 'woocommerce-pdf-invoices-packing-slips' ); ?></span>
21
  </div>
includes/views/setup-wizard/paper-format.php CHANGED
@@ -1,15 +1,15 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description">
3
- <h2><?php _e( 'Paper format', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
- <p><?php _e( 'Select the paper format for your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
- </div>
6
- <div class="wpo-setup-input">
7
- <?php
8
- $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
- ?>
10
-
11
- <select name="wcpdf_settings[wpo_wcpdf_settings_general][paper_size]">
12
- <option <?php echo $current_settings['paper_size'] == 'a4' ? 'selected' : ''; ?> value="a4"><?php _e( 'A4', 'woocommerce-pdf-invoices-packing-slips' ); ?></option>
13
- <option <?php echo $current_settings['paper_size'] == 'letter' ? 'selected' : ''; ?> value="letter"><?php _e( 'Letter', 'woocommerce-pdf-invoices-packing-slips' ); ?></option>
14
- </select>
15
  </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description">
3
+ <h2><?php _e( 'Paper format', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
+ <p><?php _e( 'Select the paper format for your invoice.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
+ </div>
6
+ <div class="wpo-setup-input">
7
+ <?php
8
+ $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
+ ?>
10
+
11
+ <select name="wcpdf_settings[wpo_wcpdf_settings_general][paper_size]">
12
+ <option <?php echo $current_settings['paper_size'] == 'a4' ? 'selected' : ''; ?> value="a4"><?php _e( 'A4', 'woocommerce-pdf-invoices-packing-slips' ); ?></option>
13
+ <option <?php echo $current_settings['paper_size'] == 'letter' ? 'selected' : ''; ?> value="letter"><?php _e( 'Letter', 'woocommerce-pdf-invoices-packing-slips' ); ?></option>
14
+ </select>
15
  </div>
includes/views/setup-wizard/shop-name.php CHANGED
@@ -1,12 +1,12 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <div class="wpo-step-description">
3
- <h2><?php _e( 'Enter your shop name', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
- <p><?php _e( 'Lets quickly setup your invoice. Please enter the name and address of your shop in the fields on the right.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
- </div>
6
- <div class="wpo-setup-input">
7
- <?php
8
- $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
- ?>
10
- <input type="text" class="shop-name" placeholder="Shop name" name="wcpdf_settings[wpo_wcpdf_settings_general][shop_name][default]" value="<?php echo !empty($current_settings['shop_name']) ? array_pop($current_settings['shop_name']) : get_bloginfo( 'name' ); ?>">
11
- <textarea class="shop-address" placeholder="Shop address" name="wcpdf_settings[wpo_wcpdf_settings_general][shop_address][default]"><?php echo isset($current_settings['shop_address']) ? array_pop($current_settings['shop_address']) : ''; ?></textarea>
12
  </div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <div class="wpo-step-description">
3
+ <h2><?php _e( 'Enter your shop name', 'woocommerce-pdf-invoices-packing-slips' ); ?></h2>
4
+ <p><?php _e( 'Lets quickly setup your invoice. Please enter the name and address of your shop in the fields on the right.', 'woocommerce-pdf-invoices-packing-slips' ); ?></p>
5
+ </div>
6
+ <div class="wpo-setup-input">
7
+ <?php
8
+ $current_settings = get_option( 'wpo_wcpdf_settings_general', array() );
9
+ ?>
10
+ <input type="text" class="shop-name" placeholder="Shop name" name="wcpdf_settings[wpo_wcpdf_settings_general][shop_name][default]" value="<?php echo !empty($current_settings['shop_name']) ? array_pop($current_settings['shop_name']) : get_bloginfo( 'name' ); ?>">
11
+ <textarea class="shop-address" placeholder="Shop address" name="wcpdf_settings[wpo_wcpdf_settings_general][shop_address][default]"><?php echo isset($current_settings['shop_address']) ? array_pop($current_settings['shop_address']) : ''; ?></textarea>
12
  </div>
includes/views/work-at-wpovernight.php CHANGED
@@ -1,71 +1,71 @@
1
- <?php defined( 'ABSPATH' ) or exit; ?>
2
- <style type="text/css">
3
- .wpo-wcpdf-work-at-wpovernight {
4
- background-color: #f6f6f6;
5
- float: left;
6
- border: 1px solid #ccc;
7
- margin: 15px 0;
8
- padding: 5px;
9
- }
10
- .wpo-wcpdf-work-at-wpovernight code {
11
- display: block;
12
- float:left;
13
- font-family: "Courier New", Courier, monospace;
14
- font-size: 8pt;
15
- line-height: 11pt;
16
- background-color: #272822;
17
- color: white;
18
- margin: 0;
19
- padding: 10px;
20
- }
21
- .wpo-wcpdf-work-at-wpovernight code ol {
22
- margin: 0;
23
- margin-left: 2em;
24
- }
25
-
26
- .wpo-wcpdf-work-at-wpovernight code li {
27
- margin: 0;
28
- padding: 0;
29
- }
30
- .wpo-wcpdf-work-at-wpovernight code .blue {
31
- color: #66D9EF;
32
- }
33
- .wpo-wcpdf-work-at-wpovernight code .yellow {
34
- color: #FFE792;
35
- }
36
- .wpo-wcpdf-work-at-wpovernight code .red {
37
- color: #F92672;
38
- }
39
- .wpo-wcpdf-work-at-wpovernight code .grey {
40
- color: #999;
41
- }
42
- .wpo-wcpdf-work-at-wpovernight code a{
43
- color: white;
44
- text-decoration: none;
45
- }
46
-
47
- .wpo-wcpdf-work-at-wpovernight .subtext {
48
- font-family: monospace;
49
- text-align: right;
50
- font-size: 10pt;
51
- line-height: 16pt;
52
- padding: 5px 0;
53
- font-weight: bold;
54
- }
55
- </style>
56
- <div class="wpo-wcpdf-work-at-wpovernight">
57
- <code>
58
- <ol>
59
- <li>&lt;?php<br></li>
60
- <li><span class="red">if</span> ( <span class="blue">is_a</span>( $you, <span class="yellow">'PHP_Developer'</span> ) <span class="red">&&</span> $you-><span class="blue">love_coding()</span> <span class="red">&&</span> $you-><span class="blue">speak_wordpress()</span> ) {</li>
61
- <li>&nbsp;&nbsp;&nbsp;&nbsp;$you-><a href="mailto:work@wpovernight.com"><span class="blue">send_email</span>(<span class="yellow">'work@wpovernight.com'</span>)</a>; <span class="grey">// we're hiring!!!</span></li>
62
- <li>}</li>
63
- <li>?&gt;</li>
64
- </ol>
65
- </code>
66
- <div style="clear:both;"></div>
67
- <div class="subtext">
68
- We're hiring! Got PHP? Send your resume to <a href="mailto:work@wpovernight.com">work@wpovernight.com</a>!
69
- </div>
70
- </div>
71
- <div style="clear:both;"></div>
1
+ <?php defined( 'ABSPATH' ) or exit; ?>
2
+ <style type="text/css">
3
+ .wpo-wcpdf-work-at-wpovernight {
4
+ background-color: #f6f6f6;
5
+ float: left;
6
+ border: 1px solid #ccc;
7
+ margin: 15px 0;
8
+ padding: 5px;
9
+ }
10
+ .wpo-wcpdf-work-at-wpovernight code {
11
+ display: block;
12
+ float:left;
13
+ font-family: "Courier New", Courier, monospace;
14
+ font-size: 8pt;
15
+ line-height: 11pt;
16
+ background-color: #272822;
17
+ color: white;
18
+ margin: 0;
19
+ padding: 10px;
20
+ }
21
+ .wpo-wcpdf-work-at-wpovernight code ol {
22
+ margin: 0;
23
+ margin-left: 2em;
24
+ }
25
+
26
+ .wpo-wcpdf-work-at-wpovernight code li {
27
+ margin: 0;
28
+ padding: 0;
29
+ }
30
+ .wpo-wcpdf-work-at-wpovernight code .blue {
31
+ color: #66D9EF;
32
+ }
33
+ .wpo-wcpdf-work-at-wpovernight code .yellow {
34
+ color: #FFE792;
35
+ }
36
+ .wpo-wcpdf-work-at-wpovernight code .red {
37
+ color: #F92672;
38
+ }
39
+ .wpo-wcpdf-work-at-wpovernight code .grey {
40
+ color: #999;
41
+ }
42
+ .wpo-wcpdf-work-at-wpovernight code a{
43
+ color: white;
44
+ text-decoration: none;
45
+ }
46
+
47
+ .wpo-wcpdf-work-at-wpovernight .subtext {
48
+ font-family: monospace;
49
+ text-align: right;
50
+ font-size: 10pt;
51
+ line-height: 16pt;
52
+ padding: 5px 0;
53
+ font-weight: bold;
54
+ }
55
+ </style>
56
+ <div class="wpo-wcpdf-work-at-wpovernight">
57
+ <code>
58
+ <ol>
59
+ <li>&lt;?php<br></li>
60
+ <li><span class="red">if</span> ( <span class="blue">is_a</span>( $you, <span class="yellow">'PHP_Developer'</span> ) <span class="red">&&</span> $you-><span class="blue">love_coding()</span> <span class="red">&&</span> $you-><span class="blue">speak_wordpress()</span> ) {</li>
61
+ <li>&nbsp;&nbsp;&nbsp;&nbsp;$you-><a href="mailto:work@wpovernight.com"><span class="blue">send_email</span>(<span class="yellow">'work@wpovernight.com'</span>)</a>; <span class="grey">// we're hiring!!!</span></li>
62
+ <li>}</li>
63
+ <li>?&gt;</li>
64
+ </ol>
65
+ </code>
66
+ <div style="clear:both;"></div>
67
+ <div class="subtext">
68
+ We're hiring! Got PHP? Send your resume to <a href="mailto:work@wpovernight.com">work@wpovernight.com</a>!
69
+ </div>
70
+ </div>
71
+ <div style="clear:both;"></div>
includes/wcpdf-functions.php CHANGED
@@ -216,4 +216,14 @@ function wcpdf_output_error( $message, $level = 'error', $e = null ) {
216
  <?php endif ?>
217
  </div>
218
  <?php
 
 
 
 
 
 
 
 
 
 
219
  }
216
  <?php endif ?>
217
  </div>
218
  <?php
219
+ }
220
+
221
+ /**
222
+ * Date formatting function
223
+ *
224
+ * @param object $document
225
+ * @param string $date_type Optional. A date type to be filtered eg. 'invoice_date', 'order_date_created', 'order_date_modified', 'order_date', 'order_date_paid', 'order_date_completed', 'current_date', 'document_date', 'packing_slip_date'.
226
+ */
227
+ function wcpdf_date_format( $document = null, $date_type = null ) {
228
+ return apply_filters( 'wpo_wcpdf_date_format', wc_date_format(), $document, $date_type );
229
  }
languages/woocommerce-pdf-invoices-packing-slips-cs_CZ.po CHANGED
@@ -1,1293 +1,1293 @@
1
- # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Czech
2
- # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
- "Stable (latest release)\n"
7
- "POT-Creation-Date: 2019-12-27 14:28+0100\n"
8
- "PO-Revision-Date: 2019-12-27 14:54+0100\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: cs_CZ\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
- "X-Generator: Poedit 2.2.4\n"
17
-
18
- #: includes/class-wcpdf-admin.php:82
19
- #, php-format
20
- msgid "Wow, you have created more than %d invoices with our plugin!"
21
- msgstr "Teda, vytvořili jste s pluginem více než %d faktur!"
22
-
23
- #: includes/class-wcpdf-admin.php:83
24
- msgid ""
25
- "It would mean a lot to us if you would quickly give our plugin a 5-star "
26
- "rating. Help us spread the word and boost our motivation!"
27
- msgstr ""
28
- "To by pro nás znamenalo hodně, kdybyste nám rychle přidali 5-ti hvězdičkový "
29
- "plugin. Pomozte nám jej šířit a zvýšit naši motivaci!"
30
-
31
- #: includes/class-wcpdf-admin.php:85
32
- msgid "Yes you deserve it!"
33
- msgstr "Ano, zasloužíte si to!"
34
-
35
- #: includes/class-wcpdf-admin.php:86
36
- #: includes/views/attachment-settings-hint.php:23
37
- #: includes/views/wcpdf-extensions.php:129
38
- msgid "Hide this message"
39
- msgstr "Skrýt tuto zprávu"
40
-
41
- #: includes/class-wcpdf-admin.php:86
42
- msgid "Already did!"
43
- msgstr "Už je provedeno!"
44
-
45
- #: includes/class-wcpdf-admin.php:87
46
- msgid "Actually, I have a complaint..."
47
- msgstr "Vlastně mám stížnost ..."
48
-
49
- #: includes/class-wcpdf-admin.php:122
50
- msgid "New to WooCommerce PDF Invoices & Packing Slips?"
51
- msgstr "Novinka na WooCommerce PDF faktury a balíčky?"
52
-
53
- #: includes/class-wcpdf-admin.php:122
54
- msgid "Jumpstart the plugin by following our wizard!"
55
- msgstr "Spusťte plugin podle našeho průvodce!"
56
-
57
- #: includes/class-wcpdf-admin.php:123
58
- msgid "Run the Setup Wizard"
59
- msgstr "Spusťte Průvodce instalací"
60
-
61
- #: includes/class-wcpdf-admin.php:123
62
- msgid "I am the wizard"
63
- msgstr "Já jsem \"kouzelník\""
64
-
65
- #: includes/class-wcpdf-admin.php:211 includes/class-wcpdf-admin.php:377
66
- #: includes/class-wcpdf-main.php:684
67
- #: includes/documents/class-wcpdf-invoice.php:271
68
- msgid "Invoice Number"
69
- msgstr "Číslo faktury"
70
-
71
- #: includes/class-wcpdf-admin.php:248
72
- msgid "Send order email"
73
- msgstr "Odeslat email s objednávkou"
74
-
75
- #: includes/class-wcpdf-admin.php:259
76
- msgid "Create PDF"
77
- msgstr "Vytvořit PDF"
78
-
79
- #: includes/class-wcpdf-admin.php:269
80
- msgid "PDF Invoice data"
81
- msgstr "PDF fakturační údaje"
82
-
83
- #: includes/class-wcpdf-admin.php:309
84
- msgid "Send email"
85
- msgstr "Odeslat email"
86
-
87
- #: includes/class-wcpdf-admin.php:386 includes/class-wcpdf-admin.php:407
88
- #: templates/Simple/invoice.php:61
89
- msgid "Invoice Date:"
90
- msgstr "Datum fakturace:"
91
-
92
- #: includes/class-wcpdf-admin.php:392
93
- msgid "Set invoice number & date"
94
- msgstr "Nastavte číslo faktury a datum"
95
-
96
- #: includes/class-wcpdf-admin.php:399
97
- msgid "Invoice Number (unformatted!)"
98
- msgstr "Číslo faktury (neformátováno)"
99
-
100
- #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
101
- msgid "h"
102
- msgstr "h"
103
-
104
- #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
105
- msgid "m"
106
- msgstr "m"
107
-
108
- #: includes/class-wcpdf-admin.php:529
109
- #, php-format
110
- msgid "%s email notification manually sent."
111
- msgstr "%s email s upozorněním odeslán manuálně."
112
-
113
- #: includes/class-wcpdf-admin.php:653
114
- msgid "DEBUG output enabled"
115
- msgstr "DEBUG výstup povolen"
116
-
117
- #: includes/class-wcpdf-assets.php:79
118
- msgid "Are you sure you want to delete this document? This cannot be undone."
119
- msgstr ""
120
- "Jste si jistí, že chcete smazat tento dokument? Nebude to možné vzít zpět."
121
-
122
- #: includes/class-wcpdf-frontend.php:57
123
- #, php-format
124
- msgid "Download %s (PDF)"
125
- msgstr "Stáhnout %s (PDF)"
126
-
127
- #: includes/class-wcpdf-frontend.php:59
128
- msgid "Download invoice (PDF)"
129
- msgstr "Stáhnout fakturu (PDF)"
130
-
131
- #: includes/class-wcpdf-main.php:238 includes/class-wcpdf-main.php:243
132
- #: includes/class-wcpdf-main.php:313
133
- msgid "You do not have sufficient permissions to access this page."
134
- msgstr "Nemáte dostatečné oprávnění pro přístup."
135
-
136
- #: includes/class-wcpdf-main.php:252
137
- msgid "You haven't selected any orders"
138
- msgstr "Nevybrali jste žádné objednávky"
139
-
140
- #: includes/class-wcpdf-main.php:256
141
- msgid "Some of the export parameters are missing."
142
- msgstr "Chybí některé z exportních parametrů."
143
-
144
- #: includes/class-wcpdf-main.php:341
145
- #, php-format
146
- msgid "Document of type '%s' for the selected order(s) could not be generated"
147
- msgstr "Dokument typu \"%s\" pro vybrané objednávky nebyl vygenerován"
148
-
149
- #: includes/class-wcpdf-main.php:685
150
- #: includes/documents/class-wcpdf-invoice.php:255
151
- msgid "Invoice Date"
152
- msgstr "Datum faktury"
153
-
154
- #: includes/class-wcpdf-settings-callbacks.php:27
155
- msgid ""
156
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
157
- "Do not use them on a live website!"
158
- msgstr ""
159
- "<b>Upozornění!</b> Níže uvedená nastavení slouží pouze pro ladění/vývoj. Na "
160
- "ostrém webu je nepoužívejte!"
161
-
162
- #: includes/class-wcpdf-settings-callbacks.php:36
163
- msgid ""
164
- "These are used for the (optional) footer columns in the <em>Modern "
165
- "(Premium)</em> template, but can also be used for other elements in your "
166
- "custom template"
167
- msgstr ""
168
- "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
169
- "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
170
-
171
- #: includes/class-wcpdf-settings-callbacks.php:367
172
- msgid "Image resolution"
173
- msgstr "Rozměry obrázku"
174
-
175
- #: includes/class-wcpdf-settings-callbacks.php:392
176
- msgid "Save"
177
- msgstr "Uložit"
178
-
179
- #: includes/class-wcpdf-settings-debug.php:42
180
- msgid "Reinstall fonts"
181
- msgstr "Přeinstalujte písma"
182
-
183
- #: includes/class-wcpdf-settings-debug.php:63
184
- msgid "Fonts reinstalled!"
185
- msgstr "Fonty přeinstalovány!"
186
-
187
- #: includes/class-wcpdf-settings-debug.php:70
188
- msgid "Remove temporary files"
189
- msgstr "Odebrat dočasné soubory"
190
-
191
- #: includes/class-wcpdf-settings-debug.php:81
192
- msgid "Unable to read temporary folder contents!"
193
- msgstr "Nelze číst obsah dočasných složek!"
194
-
195
- #: includes/class-wcpdf-settings-debug.php:98
196
- #, php-format
197
- msgid "Unable to delete %d files! (deleted %d)"
198
- msgstr "Nelze odstranit %d soubory! (smazáno %d)"
199
-
200
- #: includes/class-wcpdf-settings-debug.php:101
201
- #, php-format
202
- msgid "Successfully deleted %d files!"
203
- msgstr "Úspěšně odstraněno %d souborů!"
204
-
205
- #: includes/class-wcpdf-settings-debug.php:105
206
- msgid "Nothing to delete!"
207
- msgstr "Nic ke smazání!"
208
-
209
- #: includes/class-wcpdf-settings-debug.php:114
210
- msgid "Delete legacy (1.X) settings"
211
- msgstr "Odstranit starší (1.X) nastavení"
212
-
213
- #: includes/class-wcpdf-settings-debug.php:130
214
- msgid "Legacy settings deleted!"
215
- msgstr "Starší nastavení bylo smazáno!"
216
-
217
- #: includes/class-wcpdf-settings-debug.php:157
218
- msgid "Debug settings"
219
- msgstr "Nastavení pro ladění"
220
-
221
- #: includes/class-wcpdf-settings-debug.php:163
222
- msgid "Legacy mode"
223
- msgstr "Kompatibilní režim"
224
-
225
- #: includes/class-wcpdf-settings-debug.php:169
226
- msgid ""
227
- "Legacy mode ensures compatibility with templates and filters from previous "
228
- "versions."
229
- msgstr ""
230
- "Režim Legacy zajišťuje kompatibilitu s šablonami a filtry z předchozích "
231
- "verzí."
232
-
233
- #: includes/class-wcpdf-settings-debug.php:175
234
- msgid "Allow guest access"
235
- msgstr "Umožnit přístup návštěvníkům"
236
-
237
- #: includes/class-wcpdf-settings-debug.php:181
238
- msgid ""
239
- "Enable this to allow customers that purchase without an account to access "
240
- "their PDF with a unique key"
241
- msgstr ""
242
- "Toto povolte, pokud chcete zákazníkům kteří si objednají bez registrace "
243
- "konta umožnit přístup k PDF dokumentům prostřednictvím unikátního klíče"
244
-
245
- #: includes/class-wcpdf-settings-debug.php:187
246
- msgid "Calculate document numbers (slow)"
247
- msgstr "Vypočítat čísla dokumentů (pomalé)"
248
-
249
- #: includes/class-wcpdf-settings-debug.php:193
250
- msgid ""
251
- "Document numbers (such as invoice numbers) are generated using "
252
- "AUTO_INCREMENT by default. Use this setting if your database auto increments "
253
- "with more than 1."
254
- msgstr ""
255
- "Čísla dokumentů (například čísla faktur) jsou ve výchozím nastavení "
256
- "generována pomocí funkce AUTO_INCREMENT. Použijte toto nastavení, pokud "
257
- "databáze zvýší automaticky o více než 1."
258
-
259
- #: includes/class-wcpdf-settings-debug.php:199
260
- msgid "Enable debug output"
261
- msgstr "Povolit výstup ladění"
262
-
263
- #: includes/class-wcpdf-settings-debug.php:205
264
- msgid ""
265
- "Enable this option to output plugin errors if you're getting a blank page or "
266
- "other PDF generation issues"
267
- msgstr ""
268
- "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
269
- "prázdná stránka nebo máte jiný problém s generováním PDF"
270
-
271
- #: includes/class-wcpdf-settings-debug.php:206
272
- msgid ""
273
- "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
274
- "places on your site too, therefor this is not recommended to leave it "
275
- "enabled on live sites."
276
- msgstr ""
277
- "<b> Upozornění! </b> Toto nastavení může odhalit chyby (z jiných zásuvných "
278
- "modulů) i na jiných místech vašeho webu, proto se nedoporučuje nechat je "
279
- "povoleno na produkčních stránkách."
280
-
281
- #: includes/class-wcpdf-settings-debug.php:212
282
- msgid "Enable automatic cleanup"
283
- msgstr "Povolit automatické pročištění"
284
-
285
- #: includes/class-wcpdf-settings-debug.php:219
286
- #, php-format
287
- msgid "every %s days"
288
- msgstr "každý %s (-tý) den"
289
-
290
- #: includes/class-wcpdf-settings-debug.php:224
291
- msgid ""
292
- "Automatically clean up PDF files stored in the temporary folder (used for "
293
- "email attachments)"
294
- msgstr ""
295
- "Automaticky pročistit PDF soubory uložené ve složkách pro dočasné soubory "
296
- "(použito pro přílohy emailů)"
297
-
298
- #: includes/class-wcpdf-settings-debug.php:225
299
- msgid ""
300
- "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
301
- "automatic cleanup but not enabled on your server."
302
- msgstr ""
303
- "<b> Zakázáno: </b> Funkce PHP global a filemtime jsou vyžadovány pro "
304
- "automatické vyčištění, ale nejsou povoleny na vašem serveru."
305
-
306
- #: includes/class-wcpdf-settings-debug.php:231
307
- msgid "Output to HTML"
308
- msgstr "Výstup do HTML"
309
-
310
- #: includes/class-wcpdf-settings-debug.php:237
311
- msgid ""
312
- "Send the template output as HTML to the browser instead of creating a PDF."
313
- msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
314
-
315
- #: includes/class-wcpdf-settings-debug.php:243
316
- msgid "Use alternative HTML5 parser to parse HTML"
317
- msgstr "Použít alternativní HTML5 parser na analýzu HTML"
318
-
319
- #: includes/class-wcpdf-settings-documents.php:30
320
- #: includes/class-wcpdf-settings.php:96
321
- msgid "Documents"
322
- msgstr "Dokumenty"
323
-
324
- #: includes/class-wcpdf-settings-documents.php:46
325
- msgid ""
326
- "All available documents are listed below. Click on a document to configure "
327
- "it."
328
- msgstr ""
329
- "Všechny dostupné dokumenty jsou uvedeny níže. Klikněte na dokument, který "
330
- "chcete konfigurovat."
331
-
332
- #: includes/class-wcpdf-settings-general.php:38
333
- msgid "General settings"
334
- msgstr "Všeobecná nastavení"
335
-
336
- #: includes/class-wcpdf-settings-general.php:44
337
- msgid "How do you want to view the PDF?"
338
- msgstr "Jak chcete zobrazit PDF?"
339
-
340
- #: includes/class-wcpdf-settings-general.php:51
341
- msgid "Download the PDF"
342
- msgstr "Stáhnout PDF"
343
-
344
- #: includes/class-wcpdf-settings-general.php:52
345
- msgid "Open the PDF in a new browser tab/window"
346
- msgstr "Otevřít PDF v novém okně"
347
-
348
- #: includes/class-wcpdf-settings-general.php:59
349
- msgid "Choose a template"
350
- msgstr "Vyberte šablonu"
351
-
352
- #: includes/class-wcpdf-settings-general.php:66
353
- #, php-format
354
- msgid ""
355
- "Want to use your own template? Copy all the files from <code>%s</code> to "
356
- "your (child) theme in <code>%s</code> to customize them"
357
- msgstr ""
358
- "Chcete použít vlastní šablonu? Zkopírujte všechny soubory z <code>%s</code> "
359
- "do svého (child) tématu v <code>%s</code> a upravte je podle potřeby"
360
-
361
- #: includes/class-wcpdf-settings-general.php:72
362
- msgid "Paper size"
363
- msgstr "Velikost papíru"
364
-
365
- #: includes/class-wcpdf-settings-general.php:79
366
- #: includes/views/setup-wizard/paper-format.php:12
367
- msgid "A4"
368
- msgstr "A4"
369
-
370
- #: includes/class-wcpdf-settings-general.php:80
371
- #: includes/views/setup-wizard/paper-format.php:13
372
- msgid "Letter"
373
- msgstr "Dopis"
374
-
375
- #: includes/class-wcpdf-settings-general.php:87
376
- msgid "Test mode"
377
- msgstr "Testovací režim"
378
-
379
- #: includes/class-wcpdf-settings-general.php:93
380
- msgid ""
381
- "With test mode enabled, any document generated will always use the latest "
382
- "settings, rather than using the settings as configured at the time the "
383
- "document was first created."
384
- msgstr ""
385
- "Při aktivovaném zkušebním režimu bude každý vygenerovaný dokument vždy "
386
- "používat nejnovější nastavení, spíše než používat nastavení nakonfigurovaná "
387
- "v okamžiku, kdy byl dokument vytvořen."
388
-
389
- #: includes/class-wcpdf-settings-general.php:93
390
- msgid ""
391
- "<strong>Note:</strong> invoice numbers and dates are not affected by this "
392
- "setting and will still be generated."
393
- msgstr ""
394
- "<strong>Poznámka:</strong> čísla a datumy faktur nejsou tímto nastavením "
395
- "dotčena a budou stále generována."
396
-
397
- #: includes/class-wcpdf-settings-general.php:99
398
- msgid "Extended currency symbol support"
399
- msgstr "Rozšířená podpora symbolů měny"
400
-
401
- #: includes/class-wcpdf-settings-general.php:105
402
- msgid "Enable this if your currency symbol is not displaying properly"
403
- msgstr "Povolte tuto možnost, pokud se symbol měny nezobrazuje správně"
404
-
405
- #: includes/class-wcpdf-settings-general.php:111
406
- msgid "Enable font subsetting"
407
- msgstr "Povolit podnastavení písma"
408
-
409
- #: includes/class-wcpdf-settings-general.php:117
410
- msgid ""
411
- "Font subsetting can reduce file size by only including the characters that "
412
- "are used in the PDF, but limits the ability to edit PDF files later. "
413
- "Recommended if you're using an Asian font."
414
- msgstr ""
415
- "Font písma může snížit velikost souboru pouze tím, že obsahuje znaky použité "
416
- "v PDF, ale omezuje možnost později upravovat soubory PDF. Doporučeno, pokud "
417
- "používáte asijské písmo."
418
-
419
- #: includes/class-wcpdf-settings-general.php:123
420
- msgid "Shop header/logo"
421
- msgstr "Hlavička/logo"
422
-
423
- #: includes/class-wcpdf-settings-general.php:129
424
- #: includes/views/setup-wizard/logo.php:20
425
- msgid "Select or upload your invoice header/logo"
426
- msgstr "Vyberte nebo nahrajte hlavičku/logo"
427
-
428
- #: includes/class-wcpdf-settings-general.php:130
429
- #: includes/views/setup-wizard/logo.php:20
430
- msgid "Set image"
431
- msgstr "Vybrat obrázek"
432
-
433
- #: includes/class-wcpdf-settings-general.php:131
434
- #: includes/views/setup-wizard/logo.php:20
435
- msgid "Remove image"
436
- msgstr "Odebrat obrázek"
437
-
438
- #: includes/class-wcpdf-settings-general.php:138
439
- #: includes/class-wcpdf-setup-wizard.php:42
440
- msgid "Shop Name"
441
- msgstr "Název obchodu"
442
-
443
- #: includes/class-wcpdf-settings-general.php:151
444
- msgid "Shop Address"
445
- msgstr "Adresa obchodu"
446
-
447
- #: includes/class-wcpdf-settings-general.php:166
448
- msgid "Footer: terms & conditions, policies, etc."
449
- msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
450
-
451
- #: includes/class-wcpdf-settings-general.php:181
452
- msgid "Extra template fields"
453
- msgstr "Extra políčka v šabloně"
454
-
455
- #: includes/class-wcpdf-settings-general.php:187
456
- msgid "Extra field 1"
457
- msgstr "Extra políčko 1"
458
-
459
- #: includes/class-wcpdf-settings-general.php:195
460
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
461
- msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
462
-
463
- #: includes/class-wcpdf-settings-general.php:202
464
- msgid "Extra field 2"
465
- msgstr "Extra políčko 2"
466
-
467
- #: includes/class-wcpdf-settings-general.php:210
468
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
469
- msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
470
-
471
- #: includes/class-wcpdf-settings-general.php:217
472
- msgid "Extra field 3"
473
- msgstr "Extra políčko 3"
474
-
475
- #: includes/class-wcpdf-settings-general.php:225
476
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
477
- msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
478
-
479
- #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
480
- msgid "PDF Invoices"
481
- msgstr "PDF faktury"
482
-
483
- #: includes/class-wcpdf-settings.php:61
484
- msgid "Settings"
485
- msgstr "Nastavení"
486
-
487
- #: includes/class-wcpdf-settings.php:74
488
- msgid "Documentation"
489
- msgstr "Dokumentace"
490
-
491
- #: includes/class-wcpdf-settings.php:75
492
- msgid "Support Forum"
493
- msgstr "Fórum podpory"
494
-
495
- #: includes/class-wcpdf-settings.php:87
496
- #, php-format
497
- msgid ""
498
- "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
499
- "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
500
- "document numbers (slow)' setting in the Status tab to use an alternate "
501
- "method."
502
- msgstr ""
503
- "<strong>Upozornění! </strong> Databáze má velikost kroku AUTO_INCREMENT %s, "
504
- "čísla faktur nemusí být postupná. Aktivujte nastavení \"Vypočítat čísla "
505
- "dokumentů (pomalé)\" na kartě Stav, abyste použili alternativní metodu."
506
-
507
- #: includes/class-wcpdf-settings.php:95
508
- msgid "General"
509
- msgstr "Všeobecné"
510
-
511
- #: includes/class-wcpdf-settings.php:101
512
- msgid "Status"
513
- msgstr "Stav"
514
-
515
- #: includes/class-wcpdf-setup-wizard.php:46
516
- #: includes/views/setup-wizard/logo.php:3
517
- msgid "Your logo"
518
- msgstr "Vaše logo"
519
-
520
- #: includes/class-wcpdf-setup-wizard.php:50
521
- msgid "Attachments"
522
- msgstr "Přílohy"
523
-
524
- #: includes/class-wcpdf-setup-wizard.php:54
525
- #: includes/views/setup-wizard/display-options.php:3
526
- msgid "Display options"
527
- msgstr "Možnosti zobrazení"
528
-
529
- #: includes/class-wcpdf-setup-wizard.php:58
530
- #: includes/views/setup-wizard/paper-format.php:3
531
- msgid "Paper format"
532
- msgstr "Formát papíru"
533
-
534
- #: includes/class-wcpdf-setup-wizard.php:62
535
- #: includes/views/setup-wizard/show-action-buttons.php:3
536
- msgid "Action buttons"
537
- msgstr "Tlačítka akcí"
538
-
539
- #: includes/class-wcpdf-setup-wizard.php:66
540
- msgid "Ready!"
541
- msgstr "Připraveno!"
542
-
543
- #: includes/class-wcpdf-setup-wizard.php:180
544
- msgid "Previous"
545
- msgstr "Předchozí"
546
-
547
- #: includes/class-wcpdf-setup-wizard.php:186
548
- msgid "Skip this step"
549
- msgstr "Přeskočit"
550
-
551
- #: includes/class-wcpdf-setup-wizard.php:188
552
- msgid "Finish"
553
- msgstr "Dokončit"
554
-
555
- #: includes/compatibility/class-wc-core-compatibility.php:222
556
- msgid "WooCommerce"
557
- msgstr "WooCommerce"
558
-
559
- #: includes/documents/abstract-wcpdf-order-document-methods.php:116
560
- #: includes/documents/abstract-wcpdf-order-document-methods.php:183
561
- msgid "N/A"
562
- msgstr "Není k dispozici"
563
-
564
- #: includes/documents/abstract-wcpdf-order-document-methods.php:424
565
- msgid "Payment method"
566
- msgstr "Platební metoda"
567
-
568
- #: includes/documents/abstract-wcpdf-order-document-methods.php:445
569
- msgid "Shipping method"
570
- msgstr "Doručovací metoda"
571
-
572
- #: includes/documents/abstract-wcpdf-order-document-methods.php:862
573
- #, php-format
574
- msgid "(includes %s)"
575
- msgstr "(zahrnuje %s)"
576
-
577
- #: includes/documents/abstract-wcpdf-order-document-methods.php:865
578
- #, php-format
579
- msgid "(Includes %s)"
580
- msgstr "(Zahrnuje %s)"
581
-
582
- #: includes/documents/abstract-wcpdf-order-document-methods.php:895
583
- msgid "Subtotal"
584
- msgstr "Mezisoučet"
585
-
586
- #: includes/documents/abstract-wcpdf-order-document-methods.php:920
587
- msgid "Shipping"
588
- msgstr "Doprava"
589
-
590
- #: includes/documents/abstract-wcpdf-order-document-methods.php:983
591
- msgid "Discount"
592
- msgstr "Sleva"
593
-
594
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1024
595
- msgid "VAT"
596
- msgstr "DPH"
597
-
598
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1025
599
- msgid "Tax rate"
600
- msgstr "Daňová sazba"
601
-
602
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1069
603
- msgid "Total ex. VAT"
604
- msgstr "Celkem bez DPH"
605
-
606
- #: includes/documents/abstract-wcpdf-order-document-methods.php:1072
607
- msgid "Total"
608
- msgstr "Celkem"
609
-
610
- #: includes/documents/abstract-wcpdf-order-document.php:782
611
- msgid "Admin email"
612
- msgstr "Admin email"
613
-
614
- #: includes/documents/abstract-wcpdf-order-document.php:785
615
- msgid "Manual email"
616
- msgstr "Manuální email"
617
-
618
- #: includes/documents/class-wcpdf-invoice.php:32
619
- #: includes/documents/class-wcpdf-invoice.php:56
620
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
621
- msgid "Invoice"
622
- msgstr "Faktura"
623
-
624
- #: includes/documents/class-wcpdf-invoice.php:129
625
- msgid "invoice"
626
- msgid_plural "invoices"
627
- msgstr[0] "faktura"
628
- msgstr[1] "faktury"
629
- msgstr[2] "faktur"
630
-
631
- #: includes/documents/class-wcpdf-invoice.php:174
632
- #: includes/documents/class-wcpdf-packing-slip.php:88
633
- msgid "Enable"
634
- msgstr "Zapnout"
635
-
636
- #: includes/documents/class-wcpdf-invoice.php:185
637
- msgid "Attach to:"
638
- msgstr "Připojit k:"
639
-
640
- #: includes/documents/class-wcpdf-invoice.php:192
641
- #, php-format
642
- msgid ""
643
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
644
- "permissions for this folder! Without having write access to this folder, the "
645
- "plugin will not be able to email invoices."
646
- msgstr ""
647
- "Zdá se, že dočasná složka (<code>%s</code>) není přístupná, zkontrolujte "
648
- "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
649
- "nebude možné odesílat faktury e-mailem."
650
-
651
- #: includes/documents/class-wcpdf-invoice.php:198
652
- msgid "Disable for:"
653
- msgstr "Vypnout pro:"
654
-
655
- #: includes/documents/class-wcpdf-invoice.php:207
656
- msgid "Select one or more statuses"
657
- msgstr "Zvolte jeden nebo více stavů"
658
-
659
- #: includes/documents/class-wcpdf-invoice.php:213
660
- #: includes/views/setup-wizard/display-options.php:11
661
- msgid "Display shipping address"
662
- msgstr "Zobrazit doručovací adresu"
663
-
664
- #: includes/documents/class-wcpdf-invoice.php:219
665
- msgid ""
666
- "Display shipping address (in addition to the default billing address) if "
667
- "different from billing address"
668
- msgstr ""
669
- "Zobrazit doručovací adresu na faktuře (společně s fakturační adresou), pokud "
670
- "se liší"
671
-
672
- #: includes/documents/class-wcpdf-invoice.php:225
673
- #: includes/documents/class-wcpdf-packing-slip.php:111
674
- #: includes/views/setup-wizard/display-options.php:13
675
- msgid "Display email address"
676
- msgstr "Zobrazit emailovou adresu"
677
-
678
- #: includes/documents/class-wcpdf-invoice.php:236
679
- #: includes/documents/class-wcpdf-packing-slip.php:122
680
- #: includes/views/setup-wizard/display-options.php:15
681
- msgid "Display phone number"
682
- msgstr "Zobrazit telefonní číslo"
683
-
684
- #: includes/documents/class-wcpdf-invoice.php:247
685
- #: includes/views/setup-wizard/display-options.php:17
686
- msgid "Display invoice date"
687
- msgstr "Zobrazit datum fakturace"
688
-
689
- #: includes/documents/class-wcpdf-invoice.php:254
690
- #: includes/documents/class-wcpdf-invoice.php:270
691
- msgid "No"
692
- msgstr "Ne"
693
-
694
- #: includes/documents/class-wcpdf-invoice.php:256
695
- msgid "Order Date"
696
- msgstr "Datum objednávky"
697
-
698
- #: includes/documents/class-wcpdf-invoice.php:263
699
- #: includes/views/setup-wizard/display-options.php:19
700
- msgid "Display invoice number"
701
- msgstr "Zobrazte číslo faktury"
702
-
703
- #: includes/documents/class-wcpdf-invoice.php:272
704
- msgid "Order Number"
705
- msgstr "Číslo objednávky"
706
-
707
- #: includes/documents/class-wcpdf-invoice.php:276
708
- msgid "Warning!"
709
- msgstr "Upozornění!"
710
-
711
- #: includes/documents/class-wcpdf-invoice.php:277
712
- msgid ""
713
- "Using the Order Number as invoice number is not recommended as this may lead "
714
- "to gaps in the invoice number sequence (even when order numbers are "
715
- "sequential)."
716
- msgstr ""
717
- "Nedoporučujeme používat číslo objednávky pro číslo faktury, protože to může "
718
- "vést k mezerám v číslování (přestože je číslování objednávek posloupné)."
719
-
720
- #: includes/documents/class-wcpdf-invoice.php:278
721
- msgid "More information"
722
- msgstr "Více informací"
723
-
724
- #: includes/documents/class-wcpdf-invoice.php:285
725
- msgid "Next invoice number (without prefix/suffix etc.)"
726
- msgstr "Další číslo faktury (bez předpony/přípony)"
727
-
728
- #: includes/documents/class-wcpdf-invoice.php:291
729
- msgid ""
730
- "This is the number that will be used for the next document. By default, "
731
- "numbering starts from 1 and increases for every new document. Note that if "
732
- "you override this and set it lower than the current/highest number, this "
733
- "could create duplicate numbers!"
734
- msgstr ""
735
- "Toto je číslo, které bude použito pro další dokument. Ve výchozím nastavení "
736
- "začíná číslování od 1 a zvyšuje se pro každý nový dokument. Všimněte si, že "
737
- "pokud to přepíšete a nastavíte jej nižší než aktuální / nejvyšší číslo, "
738
- "mohlo by to vytvořit duplicitní čísla!"
739
-
740
- #: includes/documents/class-wcpdf-invoice.php:297
741
- msgid "Number format"
742
- msgstr "Formát čísel"
743
-
744
- #: includes/documents/class-wcpdf-invoice.php:305
745
- msgid "Prefix"
746
- msgstr "Předpona"
747
-
748
- #: includes/documents/class-wcpdf-invoice.php:307
749
- msgid ""
750
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
751
- "respectively"
752
- msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
753
-
754
- #: includes/documents/class-wcpdf-invoice.php:310
755
- msgid "Suffix"
756
- msgstr "Přípona"
757
-
758
- #: includes/documents/class-wcpdf-invoice.php:315
759
- msgid "Padding"
760
- msgstr "Výplň"
761
-
762
- #: includes/documents/class-wcpdf-invoice.php:318
763
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
764
- msgstr ""
765
- "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
766
-
767
- #: includes/documents/class-wcpdf-invoice.php:321
768
- msgid ""
769
- "note: if you have already created a custom invoice number format with a "
770
- "filter, the above settings will be ignored"
771
- msgstr ""
772
- "poznámka: pokud jste si už nastavili vlastní číslování faktur pomocí filtru, "
773
- "výše uvedená nastavení budou ignorována"
774
-
775
- #: includes/documents/class-wcpdf-invoice.php:327
776
- msgid "Reset invoice number yearly"
777
- msgstr "Obnovit číslování faktur ročně"
778
-
779
- #: includes/documents/class-wcpdf-invoice.php:338
780
- msgid "Allow My Account invoice download"
781
- msgstr "Umožnit stažení faktury na stránce Můj účet"
782
-
783
- #: includes/documents/class-wcpdf-invoice.php:345
784
- msgid "Only when an invoice is already created/emailed"
785
- msgstr "Pouze když už byla faktura vytvořena/odeslána"
786
-
787
- #: includes/documents/class-wcpdf-invoice.php:346
788
- msgid "Only for specific order statuses (define below)"
789
- msgstr "Pouze pro určité stavy objednávek (definujte níže)"
790
-
791
- #: includes/documents/class-wcpdf-invoice.php:347
792
- msgid "Always"
793
- msgstr "Vždy"
794
-
795
- #: includes/documents/class-wcpdf-invoice.php:348
796
- msgid "Never"
797
- msgstr "Nikdy"
798
-
799
- #: includes/documents/class-wcpdf-invoice.php:363
800
- msgid "Enable invoice number column in the orders list"
801
- msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
802
-
803
- #: includes/documents/class-wcpdf-invoice.php:374
804
- msgid "Disable for free products"
805
- msgstr "Vypnout u produktů zdarma"
806
-
807
- #: includes/documents/class-wcpdf-invoice.php:380
808
- msgid ""
809
- "Disable automatic creation/attachment when only free products are ordered"
810
- msgstr ""
811
- "Vypnout automatické vytváření/přikládání faktur pokud byly objednány pouze "
812
- "produkty zdarma"
813
-
814
- #: includes/documents/class-wcpdf-invoice.php:386
815
- msgid "Always use most current settings"
816
- msgstr "Vždy používat nejaktuálnější nastavení"
817
-
818
- #: includes/documents/class-wcpdf-invoice.php:392
819
- msgid ""
820
- "When enabled, the document will always reflect the most current settings "
821
- "(such as footer text, document name, etc.) rather than using historical "
822
- "settings."
823
- msgstr ""
824
- "Pokud je tato funkce povolena, dokument bude vždy odrážet nejaktuálnější "
825
- "nastavení (například text zápatí, název dokumentu atd.), Nikoli pomocí "
826
- "historických nastavení."
827
-
828
- #: includes/documents/class-wcpdf-invoice.php:394
829
- msgid ""
830
- "<strong>Caution:</strong> enabling this will also mean that if you change "
831
- "your company name or address in the future, previously generated documents "
832
- "will also be affected."
833
- msgstr ""
834
- "<strong> Upozornění: </strong> povolíte také, že pokud změníte název vaší "
835
- "firmy nebo adresu v budoucnu, budou také ovlivněny dříve generované "
836
- "dokumenty."
837
-
838
- #: includes/documents/class-wcpdf-invoice.php:407
839
- msgid "Invoice numbers are created by a third-party extension."
840
- msgstr "Čísla faktur jsou vytvářena rozšířením třetí strany."
841
-
842
- #: includes/documents/class-wcpdf-invoice.php:409
843
- #, php-format
844
- msgid "Configure it <a href=\"%s\">here</a>."
845
- msgstr "Nakonfigurujte jej <a href=\"%s\"> zde </a>."
846
-
847
- #: includes/documents/class-wcpdf-packing-slip.php:32
848
- #: includes/documents/class-wcpdf-packing-slip.php:41
849
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
850
- msgid "Packing Slip"
851
- msgstr "Dodací List"
852
-
853
- #: includes/documents/class-wcpdf-packing-slip.php:47
854
- msgid "packing-slip"
855
- msgid_plural "packing-slips"
856
- msgstr[0] "dodací list"
857
- msgstr[1] "dodací listy"
858
- msgstr[2] "dodacích listů"
859
-
860
- #: includes/documents/class-wcpdf-packing-slip.php:99
861
- msgid "Display billing address"
862
- msgstr "Zobrazit fakturační adresu"
863
-
864
- #: includes/documents/class-wcpdf-packing-slip.php:105
865
- msgid ""
866
- "Display billing address (in addition to the default shipping address) if "
867
- "different from shipping address"
868
- msgstr ""
869
- "Zobrazit fakturační adresu na dodacím listu (společně s doručovací adresou), "
870
- "pokud se liší"
871
-
872
- #: includes/legacy/class-wcpdf-legacy-document.php:32
873
- msgid "Legacy Document"
874
- msgstr "Starší dokument"
875
-
876
- #: includes/legacy/class-wcpdf-legacy.php:72
877
- msgid "Error"
878
- msgstr "Chyba"
879
-
880
- #: includes/legacy/class-wcpdf-legacy.php:73
881
- msgid ""
882
- "An outdated template or action hook was used to generate the PDF. Legacy "
883
- "mode has been activated, please try again by reloading this page."
884
- msgstr ""
885
- "Za účelem vytvoření PDF byla použita zastaralá šablona nebo akční hák. "
886
- "Starší režim byl aktivován, zkuste znovu znovu načtěte tuto stránku."
887
-
888
- #: includes/legacy/class-wcpdf-legacy.php:76
889
- msgid "The following function was called"
890
- msgstr "Byla vyvolána následující funkce"
891
-
892
- #: includes/views/attachment-settings-hint.php:22
893
- #, php-format
894
- msgid ""
895
- "It looks like you haven't setup any email attachments yet, check the "
896
- "settings under <b>%sDocuments > Invoice%s</b>"
897
- msgstr ""
898
- "Zdá se, že jste ještě nenastavili žádné e-mailové přílohy, zkontrolujte "
899
- "nastavení v části <b>%s Dokumenty> Faktura%s</b>"
900
-
901
- #: includes/views/setup-wizard/attach-to.php:3
902
- msgid "Attach too..."
903
- msgstr "Připojte se také ..."
904
-
905
- #: includes/views/setup-wizard/attach-to.php:4
906
- msgid "Select to which emails you would like to attach your invoice."
907
- msgstr "Vyberte, ke kterým emailům byste chtěli připojit fakturu."
908
-
909
- #: includes/views/setup-wizard/display-options.php:4
910
- msgid "Select some additional display options for your invoice."
911
- msgstr "Vyberte další možnosti zobrazení faktury."
912
-
913
- #: includes/views/setup-wizard/good-to-go.php:3
914
- msgid "You are good to go!"
915
- msgstr "Můžeš jít!"
916
-
917
- #: includes/views/setup-wizard/good-to-go.php:4
918
- msgid "If you have any questions please have a look at our documentation:"
919
- msgstr "Pokud máte nějaké dotazy, prosím prohlédněte si dokumentaci:"
920
-
921
- #: includes/views/setup-wizard/good-to-go.php:5
922
- msgid "Invoices & Packing Slips"
923
- msgstr "Faktury a dodací listy"
924
-
925
- #: includes/views/setup-wizard/good-to-go.php:6
926
- msgid "Happy selling!"
927
- msgstr "Šťastný prodej!"
928
-
929
- #: includes/views/setup-wizard/logo.php:4
930
- msgid "Set the header image that will display on your invoice."
931
- msgstr "Nastavte obrázek záhlaví, který se zobrazí na faktuře."
932
-
933
- #: includes/views/setup-wizard/paper-format.php:4
934
- msgid "Select the paper format for your invoice."
935
- msgstr "Vyberte formát papíru pro vaše faktury."
936
-
937
- #: includes/views/setup-wizard/shop-name.php:3
938
- msgid "Enter your shop name"
939
- msgstr "Zadejte jméno obchodu"
940
-
941
- #: includes/views/setup-wizard/shop-name.php:4
942
- msgid ""
943
- "Lets quickly setup your invoice. Please enter the name and address of your "
944
- "shop in the fields on the right."
945
- msgstr ""
946
- "Nastavme rychle fakturaci. Prosím zadejte jméno a adresu vašeho obchodu do "
947
- "položek na pravé straně."
948
-
949
- #: includes/views/setup-wizard/show-action-buttons.php:4
950
- msgid ""
951
- "Would you like to display the action buttons in your WooCommerce order list? "
952
- "The action buttons allow you to manually create a PDF."
953
- msgstr ""
954
- "Přejete si zobrazovat tlačítka akcí ve WooCommerce přehledu objednávek? "
955
- "Tlačítka akcí vám umožní ručně vytvořit PDF."
956
-
957
- #: includes/views/setup-wizard/show-action-buttons.php:5
958
- msgid "(You can always change this setting later via the Screen Options menu)"
959
- msgstr ""
960
- "(Toto nastavení můžete později změnit přes Nastavení zobrazených informací)"
961
-
962
- #: includes/views/setup-wizard/show-action-buttons.php:18
963
- msgid "Show action buttons"
964
- msgstr "Zobrazit tlačítka akcí"
965
-
966
- #: includes/views/wcpdf-extensions.php:16
967
- msgid "Check out these premium extensions!"
968
- msgstr "Vyzkoušejte tato prémiová rozšíření!"
969
-
970
- #: includes/views/wcpdf-extensions.php:17
971
- msgid "click items to read more"
972
- msgstr "pro více informací klikněte na položky"
973
-
974
- #: includes/views/wcpdf-extensions.php:22
975
- msgid ""
976
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
977
- "system"
978
- msgstr ""
979
- "Premium PDF Balíček faktur: Vše, co potřebujete pro dokonalý systém fakturace"
980
-
981
- #: includes/views/wcpdf-extensions.php:24
982
- msgid ""
983
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
984
- "premium extensions:"
985
- msgstr ""
986
- "Supercharge WooCommerce PDF faktury a balíčky s našimi prémiovými "
987
- "rozšířeními:"
988
-
989
- #: includes/views/wcpdf-extensions.php:25
990
- msgid "Professional features:"
991
- msgstr "Profesionální funkce:"
992
-
993
- #: includes/views/wcpdf-extensions.php:27
994
- #: includes/views/wcpdf-extensions.php:57
995
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
996
- msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
997
-
998
- #: includes/views/wcpdf-extensions.php:28
999
- #: includes/views/wcpdf-extensions.php:58
1000
- msgid ""
1001
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1002
- "packing slips, for example to a drop-shipper or a supplier."
1003
- msgstr ""
1004
- "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
1005
- "dodacími listy, např. pro drop-shippera nebo dodavatele."
1006
-
1007
- #: includes/views/wcpdf-extensions.php:29
1008
- #: includes/views/wcpdf-extensions.php:59
1009
- msgid ""
1010
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1011
- "document) to the WooCommerce emails of your choice."
1012
- msgstr ""
1013
- "Přikládejte k vybraným WooCommerce emailům <b>až 3 statické soubory</b> "
1014
- "(např. dokument s obchodními podmínkami)."
1015
-
1016
- #: includes/views/wcpdf-extensions.php:30
1017
- #: includes/views/wcpdf-extensions.php:60
1018
- msgid ""
1019
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1020
- "and credit notes or utilize the main invoice numbering system"
1021
- msgstr ""
1022
- "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
1023
- "dobropisů nebo používejte hlavní číslování"
1024
-
1025
- #: includes/views/wcpdf-extensions.php:31
1026
- #: includes/views/wcpdf-extensions.php:61
1027
- msgid ""
1028
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1029
- "additional custom fields, font sizes etc. without the need to create a "
1030
- "custom template."
1031
- msgstr ""
1032
- "<b>Přizpůsobte si formát dodací a fakturační adresy</b>, aby obsahovaly "
1033
- "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
1034
- "šablonu."
1035
-
1036
- #: includes/views/wcpdf-extensions.php:32
1037
- #: includes/views/wcpdf-extensions.php:62
1038
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
1039
- msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
1040
-
1041
- #: includes/views/wcpdf-extensions.php:34
1042
- #: includes/views/wcpdf-extensions.php:114
1043
- msgid "Advanced, customizable templates"
1044
- msgstr "Pokročilé, přizpůsobitelné šablony"
1045
-
1046
- #: includes/views/wcpdf-extensions.php:36
1047
- #: includes/views/wcpdf-extensions.php:117
1048
- msgid ""
1049
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1050
- "your needs with a drag & drop customizer"
1051
- msgstr ""
1052
- "Přizpůsobte si kompletní obsah faktur (ceny, daně, náhledové obrázky) vašim "
1053
- "potřebám pomocí jednoduchého editoru"
1054
-
1055
- #: includes/views/wcpdf-extensions.php:37
1056
- #: includes/views/wcpdf-extensions.php:118
1057
- msgid "Two extra stylish premade templates (Modern & Business)"
1058
- msgstr "Další dvě stylisticky připravené šablony (Modern a Business)"
1059
-
1060
- #: includes/views/wcpdf-extensions.php:39
1061
- #: includes/views/wcpdf-extensions.php:63
1062
- msgid "Upload automatically to dropbox"
1063
- msgstr "Nahrát automaticky do dropboxu"
1064
-
1065
- #: includes/views/wcpdf-extensions.php:41
1066
- msgid ""
1067
- "This extension conveniently uploads all the invoices (and other pdf "
1068
- "documents from the professional extension) that are emailed to your "
1069
- "customers to Dropbox. The best way to keep your invoice administration up to "
1070
- "date!"
1071
- msgstr ""
1072
- "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
1073
- "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi. "
1074
- "Nejlepší způsob, jak udržet správu fakturu v aktuální podobě!"
1075
-
1076
- #: includes/views/wcpdf-extensions.php:44
1077
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1078
- msgstr "Získejte WooCommerce PDF faktury a balíček doplňků"
1079
-
1080
- #: includes/views/wcpdf-extensions.php:53
1081
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1082
- msgstr "Pro verze: proforma faktury, dobropisy a další!"
1083
-
1084
- #: includes/views/wcpdf-extensions.php:55
1085
- msgid ""
1086
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1087
- "features:"
1088
- msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
1089
-
1090
- #: includes/views/wcpdf-extensions.php:65
1091
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1092
- msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
1093
-
1094
- #: includes/views/wcpdf-extensions.php:73
1095
- msgid "Automatically send payment reminders to your customers"
1096
- msgstr "Automaticky posílejte připomenutí plateb vašim zákazníkům"
1097
-
1098
- #: includes/views/wcpdf-extensions.php:75
1099
- msgid "WooCommerce Smart Reminder emails"
1100
- msgstr "WooCommerce Smart Reminder e-maily"
1101
-
1102
- #: includes/views/wcpdf-extensions.php:77
1103
- msgid "<b>Completely automatic</b> scheduled emails"
1104
- msgstr "<b> Plně automatické </b> plánované e-maily"
1105
-
1106
- #: includes/views/wcpdf-extensions.php:78
1107
- msgid ""
1108
- "<b>Rich text editor</b> for the email text, including placeholders for data "
1109
- "from the order (name, order total, etc)"
1110
- msgstr ""
1111
- "<b> Textový editor s rozšířeným textem </b> pro text e-mailu včetně "
1112
- "zástupných symbolů pro data z objednávky (název, celkový počet objednávek "
1113
- "atd.)"
1114
-
1115
- #: includes/views/wcpdf-extensions.php:79
1116
- msgid ""
1117
- "Configure the exact requirements for sending an email (time after order, "
1118
- "order status, payment method)"
1119
- msgstr ""
1120
- "Konfigurovat přesné požadavky na odeslání e-mailu (čas po objednávce, stav "
1121
- "objednávky, způsob platby)"
1122
-
1123
- #: includes/views/wcpdf-extensions.php:80
1124
- msgid ""
1125
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1126
- "order language."
1127
- msgstr ""
1128
- "Plně <b> Kompatibilní s WPML</b> - emaily budou automaticky odeslány v "
1129
- "jazyce objednávky."
1130
-
1131
- #: includes/views/wcpdf-extensions.php:81
1132
- msgid ""
1133
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1134
- "reminders, repeat purchases)"
1135
- msgstr ""
1136
- "<b> Velmi univerzální! </b> Lze použít pro jakýkoli druh upomínací e-mailové "
1137
- "zprávy (přehledy připomenutí, opakované nákupy)"
1138
-
1139
- #: includes/views/wcpdf-extensions.php:82
1140
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1141
- msgstr "Bezproblémová integrace s pluginem PDF Faktury a balíčky svazků"
1142
-
1143
- #: includes/views/wcpdf-extensions.php:84
1144
- msgid "Get WooCommerce Smart Reminder Emails"
1145
- msgstr "Získejte e-maily Smart Reminder společnosti WooCommerce"
1146
-
1147
- #: includes/views/wcpdf-extensions.php:93
1148
- msgid ""
1149
- "Automatically send new orders or packing slips to your printer, as soon as "
1150
- "the customer orders!"
1151
- msgstr ""
1152
- "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
1153
- "jakmile si zákazník objedná!"
1154
-
1155
- #: includes/views/wcpdf-extensions.php:99
1156
- msgid ""
1157
- "Check out the WooCommerce Automatic Order Printing extension from our "
1158
- "partners at Simba Hosting"
1159
- msgstr ""
1160
- "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
1161
- "partnerů ze Simba Hosting"
1162
-
1163
- #: includes/views/wcpdf-extensions.php:100
1164
- msgid "WooCommerce Automatic Order Printing"
1165
- msgstr "WooCommerce automatizovaný tisk objednávek"
1166
-
1167
- #: includes/views/wcpdf-extensions.php:119
1168
- #, php-format
1169
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1170
- msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
1171
-
1172
- #: includes/views/wcpdf-extensions.php:120
1173
- #, php-format
1174
- msgid "For custom templates, contact us at %s."
1175
- msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
1176
-
1177
- #: includes/views/wcpdf-settings-page.php:9
1178
- msgid "WooCommerce PDF Invoices"
1179
- msgstr "WooCommerce PDF faktury"
1180
-
1181
- #: includes/wcpdf-functions.php:208
1182
- msgid "Error creating PDF, please contact the site owner."
1183
- msgstr "Při vytváření PDF nastala chyba, prosím kontaktujte vlastníka webu."
1184
-
1185
- #: templates/Simple/invoice.php:31 templates/Simple/packing-slip.php:44
1186
- msgid "Billing Address:"
1187
- msgstr "Fakturační adresa:"
1188
-
1189
- #: templates/Simple/invoice.php:44
1190
- msgid "Ship To:"
1191
- msgstr "Odeslat na:"
1192
-
1193
- #: templates/Simple/invoice.php:55
1194
- msgid "Invoice Number:"
1195
- msgstr "Číslo faktury:"
1196
-
1197
- #: templates/Simple/invoice.php:66 templates/Simple/packing-slip.php:54
1198
- msgid "Order Number:"
1199
- msgstr "Číslo objednávky:"
1200
-
1201
- #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1202
- msgid "Order Date:"
1203
- msgstr "Datum objednávky:"
1204
-
1205
- #: templates/Simple/invoice.php:74
1206
- msgid "Payment Method:"
1207
- msgstr "Způsob platby:"
1208
-
1209
- #: templates/Simple/invoice.php:88 templates/Simple/packing-slip.php:76
1210
- msgid "Product"
1211
- msgstr "Zboží"
1212
-
1213
- #: templates/Simple/invoice.php:89 templates/Simple/packing-slip.php:77
1214
- msgid "Quantity"
1215
- msgstr "Množství"
1216
-
1217
- #: templates/Simple/invoice.php:90
1218
- msgid "Price"
1219
- msgstr "Cena"
1220
-
1221
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
1222
- msgid "Description"
1223
- msgstr "Popis"
1224
-
1225
- #: templates/Simple/invoice.php:102 templates/Simple/packing-slip.php:89
1226
- msgid "SKU"
1227
- msgstr "SKU"
1228
-
1229
- #: templates/Simple/invoice.php:103 templates/Simple/packing-slip.php:90
1230
- msgid "SKU:"
1231
- msgstr "SKU:"
1232
-
1233
- #: templates/Simple/invoice.php:104 templates/Simple/packing-slip.php:91
1234
- msgid "Weight:"
1235
- msgstr "Hmotnost:"
1236
-
1237
- #: templates/Simple/invoice.php:119 templates/Simple/packing-slip.php:106
1238
- msgid "Customer Notes"
1239
- msgstr "Poznámka zákazníka"
1240
-
1241
- #: templates/Simple/packing-slip.php:31
1242
- msgid "Shipping Address:"
1243
- msgstr "Doručovací adresa:"
1244
-
1245
- #: templates/Simple/packing-slip.php:62
1246
- msgid "Shipping Method:"
1247
- msgstr "Doručovací metoda:"
1248
-
1249
- #: woocommerce-pdf-invoices-packingslips.php:238
1250
- #, php-format
1251
- msgid ""
1252
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1253
- "installed & activated!"
1254
- msgstr ""
1255
- "WooCommerce PDF Invoices & Packing Slips vyžaduje nainstalovaný a aktivovaný "
1256
- "plugin %sWooCommerce%s!"
1257
-
1258
- #: woocommerce-pdf-invoices-packingslips.php:250
1259
- msgid ""
1260
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
1261
- "higher recommended)."
1262
- msgstr ""
1263
- "WooCommerce PDF Faktury a balicí vyžadují PHP 5.3 nebo vyšší (doporučujeme "
1264
- "5.6 nebo vyšší)."
1265
-
1266
- #: woocommerce-pdf-invoices-packingslips.php:251
1267
- msgid "How to update your PHP version"
1268
- msgstr "Jak aktualizovat verzi PHP"
1269
-
1270
- #~ msgid "Next"
1271
- #~ msgstr "Další"
1272
-
1273
- #~ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
1274
- #~ msgstr "WooCommerce PDF faktury a dodací listy &rsaquo; Průvodce instalací"
1275
-
1276
- #~ msgid "Save order & send email"
1277
- #~ msgstr "Uložit objednávku a odeslat email"
1278
-
1279
- #~ msgid "Ewout Fernhout"
1280
- #~ msgstr "Ewout Fernhout"
1281
-
1282
- #~ msgid ""
1283
- #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
1284
- #~ msgstr ""
1285
- #~ "Vytváří, tiskne a posílá emailem faktury v PDF a dodací listy k "
1286
- #~ "WooCommerce objednávkám."
1287
-
1288
- #~ msgid "http://www.wpovernight.com"
1289
- #~ msgstr "http://www.wpovernight.com"
1290
-
1291
- #~ msgid "WooCommerce PDF Invoices & Packing Slips"
1292
- #~ msgstr "WooCommerce PDF faktury & dodací listy"
1293
-
1
+ # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in Czech
2
+ # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
+ "Stable (latest release)\n"
7
+ "POT-Creation-Date: 2019-12-27 14:28+0100\n"
8
+ "PO-Revision-Date: 2019-12-27 14:54+0100\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: cs_CZ\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+ "X-Generator: Poedit 2.2.4\n"
17
+
18
+ #: includes/class-wcpdf-admin.php:82
19
+ #, php-format
20
+ msgid "Wow, you have created more than %d invoices with our plugin!"
21
+ msgstr "Teda, vytvořili jste s pluginem více než %d faktur!"
22
+
23
+ #: includes/class-wcpdf-admin.php:83
24
+ msgid ""
25
+ "It would mean a lot to us if you would quickly give our plugin a 5-star "
26
+ "rating. Help us spread the word and boost our motivation!"
27
+ msgstr ""
28
+ "To by pro nás znamenalo hodně, kdybyste nám rychle přidali 5-ti hvězdičkový "
29
+ "plugin. Pomozte nám jej šířit a zvýšit naši motivaci!"
30
+
31
+ #: includes/class-wcpdf-admin.php:85
32
+ msgid "Yes you deserve it!"
33
+ msgstr "Ano, zasloužíte si to!"
34
+
35
+ #: includes/class-wcpdf-admin.php:86
36
+ #: includes/views/attachment-settings-hint.php:23
37
+ #: includes/views/wcpdf-extensions.php:129
38
+ msgid "Hide this message"
39
+ msgstr "Skrýt tuto zprávu"
40
+
41
+ #: includes/class-wcpdf-admin.php:86
42
+ msgid "Already did!"
43
+ msgstr "Už je provedeno!"
44
+
45
+ #: includes/class-wcpdf-admin.php:87
46
+ msgid "Actually, I have a complaint..."
47
+ msgstr "Vlastně mám stížnost ..."
48
+
49
+ #: includes/class-wcpdf-admin.php:122
50
+ msgid "New to WooCommerce PDF Invoices & Packing Slips?"
51
+ msgstr "Novinka na WooCommerce PDF faktury a balíčky?"
52
+
53
+ #: includes/class-wcpdf-admin.php:122
54
+ msgid "Jumpstart the plugin by following our wizard!"
55
+ msgstr "Spusťte plugin podle našeho průvodce!"
56
+
57
+ #: includes/class-wcpdf-admin.php:123
58
+ msgid "Run the Setup Wizard"
59
+ msgstr "Spusťte Průvodce instalací"
60
+
61
+ #: includes/class-wcpdf-admin.php:123
62
+ msgid "I am the wizard"
63
+ msgstr "Já jsem \"kouzelník\""
64
+
65
+ #: includes/class-wcpdf-admin.php:211 includes/class-wcpdf-admin.php:377
66
+ #: includes/class-wcpdf-main.php:684
67
+ #: includes/documents/class-wcpdf-invoice.php:271
68
+ msgid "Invoice Number"
69
+ msgstr "Číslo faktury"
70
+
71
+ #: includes/class-wcpdf-admin.php:248
72
+ msgid "Send order email"
73
+ msgstr "Odeslat email s objednávkou"
74
+
75
+ #: includes/class-wcpdf-admin.php:259
76
+ msgid "Create PDF"
77
+ msgstr "Vytvořit PDF"
78
+
79
+ #: includes/class-wcpdf-admin.php:269
80
+ msgid "PDF Invoice data"
81
+ msgstr "PDF fakturační údaje"
82
+
83
+ #: includes/class-wcpdf-admin.php:309
84
+ msgid "Send email"
85
+ msgstr "Odeslat email"
86
+
87
+ #: includes/class-wcpdf-admin.php:386 includes/class-wcpdf-admin.php:407
88
+ #: templates/Simple/invoice.php:61
89
+ msgid "Invoice Date:"
90
+ msgstr "Datum fakturace:"
91
+
92
+ #: includes/class-wcpdf-admin.php:392
93
+ msgid "Set invoice number & date"
94
+ msgstr "Nastavte číslo faktury a datum"
95
+
96
+ #: includes/class-wcpdf-admin.php:399
97
+ msgid "Invoice Number (unformatted!)"
98
+ msgstr "Číslo faktury (neformátováno)"
99
+
100
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
101
+ msgid "h"
102
+ msgstr "h"
103
+
104
+ #: includes/class-wcpdf-admin.php:409 includes/class-wcpdf-admin.php:411
105
+ msgid "m"
106
+ msgstr "m"
107
+
108
+ #: includes/class-wcpdf-admin.php:529
109
+ #, php-format
110
+ msgid "%s email notification manually sent."
111
+ msgstr "%s email s upozorněním odeslán manuálně."
112
+
113
+ #: includes/class-wcpdf-admin.php:653
114
+ msgid "DEBUG output enabled"
115
+ msgstr "DEBUG výstup povolen"
116
+
117
+ #: includes/class-wcpdf-assets.php:79
118
+ msgid "Are you sure you want to delete this document? This cannot be undone."
119
+ msgstr ""
120
+ "Jste si jistí, že chcete smazat tento dokument? Nebude to možné vzít zpět."
121
+
122
+ #: includes/class-wcpdf-frontend.php:57
123
+ #, php-format
124
+ msgid "Download %s (PDF)"
125
+ msgstr "Stáhnout %s (PDF)"
126
+
127
+ #: includes/class-wcpdf-frontend.php:59
128
+ msgid "Download invoice (PDF)"
129
+ msgstr "Stáhnout fakturu (PDF)"
130
+
131
+ #: includes/class-wcpdf-main.php:238 includes/class-wcpdf-main.php:243
132
+ #: includes/class-wcpdf-main.php:313
133
+ msgid "You do not have sufficient permissions to access this page."
134
+ msgstr "Nemáte dostatečné oprávnění pro přístup."
135
+
136
+ #: includes/class-wcpdf-main.php:252
137
+ msgid "You haven't selected any orders"
138
+ msgstr "Nevybrali jste žádné objednávky"
139
+
140
+ #: includes/class-wcpdf-main.php:256
141
+ msgid "Some of the export parameters are missing."
142
+ msgstr "Chybí některé z exportních parametrů."
143
+
144
+ #: includes/class-wcpdf-main.php:341
145
+ #, php-format
146
+ msgid "Document of type '%s' for the selected order(s) could not be generated"
147
+ msgstr "Dokument typu \"%s\" pro vybrané objednávky nebyl vygenerován"
148
+
149
+ #: includes/class-wcpdf-main.php:685
150
+ #: includes/documents/class-wcpdf-invoice.php:255
151
+ msgid "Invoice Date"
152
+ msgstr "Datum faktury"
153
+
154
+ #: includes/class-wcpdf-settings-callbacks.php:27
155
+ msgid ""
156
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
157
+ "Do not use them on a live website!"
158
+ msgstr ""
159
+ "<b>Upozornění!</b> Níže uvedená nastavení slouží pouze pro ladění/vývoj. Na "
160
+ "ostrém webu je nepoužívejte!"
161
+
162
+ #: includes/class-wcpdf-settings-callbacks.php:36
163
+ msgid ""
164
+ "These are used for the (optional) footer columns in the <em>Modern "
165
+ "(Premium)</em> template, but can also be used for other elements in your "
166
+ "custom template"
167
+ msgstr ""
168
+ "Tyto prvky jsou použité jako volitelné části patičky v šabloně <em>Modern "
169
+ "(Premium)</em>, ale mohou být v rámci vaší vlastní šablony využity i jinak"
170
+
171
+ #: includes/class-wcpdf-settings-callbacks.php:367
172
+ msgid "Image resolution"
173
+ msgstr "Rozměry obrázku"
174
+
175
+ #: includes/class-wcpdf-settings-callbacks.php:392
176
+ msgid "Save"
177
+ msgstr "Uložit"
178
+
179
+ #: includes/class-wcpdf-settings-debug.php:42
180
+ msgid "Reinstall fonts"
181
+ msgstr "Přeinstalujte písma"
182
+
183
+ #: includes/class-wcpdf-settings-debug.php:63
184
+ msgid "Fonts reinstalled!"
185
+ msgstr "Fonty přeinstalovány!"
186
+
187
+ #: includes/class-wcpdf-settings-debug.php:70
188
+ msgid "Remove temporary files"
189
+ msgstr "Odebrat dočasné soubory"
190
+
191
+ #: includes/class-wcpdf-settings-debug.php:81
192
+ msgid "Unable to read temporary folder contents!"
193
+ msgstr "Nelze číst obsah dočasných složek!"
194
+
195
+ #: includes/class-wcpdf-settings-debug.php:98
196
+ #, php-format
197
+ msgid "Unable to delete %d files! (deleted %d)"
198
+ msgstr "Nelze odstranit %d soubory! (smazáno %d)"
199
+
200
+ #: includes/class-wcpdf-settings-debug.php:101
201
+ #, php-format
202
+ msgid "Successfully deleted %d files!"
203
+ msgstr "Úspěšně odstraněno %d souborů!"
204
+
205
+ #: includes/class-wcpdf-settings-debug.php:105
206
+ msgid "Nothing to delete!"
207
+ msgstr "Nic ke smazání!"
208
+
209
+ #: includes/class-wcpdf-settings-debug.php:114
210
+ msgid "Delete legacy (1.X) settings"
211
+ msgstr "Odstranit starší (1.X) nastavení"
212
+
213
+ #: includes/class-wcpdf-settings-debug.php:130
214
+ msgid "Legacy settings deleted!"
215
+ msgstr "Starší nastavení bylo smazáno!"
216
+
217
+ #: includes/class-wcpdf-settings-debug.php:157
218
+ msgid "Debug settings"
219
+ msgstr "Nastavení pro ladění"
220
+
221
+ #: includes/class-wcpdf-settings-debug.php:163
222
+ msgid "Legacy mode"
223
+ msgstr "Kompatibilní režim"
224
+
225
+ #: includes/class-wcpdf-settings-debug.php:169
226
+ msgid ""
227
+ "Legacy mode ensures compatibility with templates and filters from previous "
228
+ "versions."
229
+ msgstr ""
230
+ "Režim Legacy zajišťuje kompatibilitu s šablonami a filtry z předchozích "
231
+ "verzí."
232
+
233
+ #: includes/class-wcpdf-settings-debug.php:175
234
+ msgid "Allow guest access"
235
+ msgstr "Umožnit přístup návštěvníkům"
236
+
237
+ #: includes/class-wcpdf-settings-debug.php:181
238
+ msgid ""
239
+ "Enable this to allow customers that purchase without an account to access "
240
+ "their PDF with a unique key"
241
+ msgstr ""
242
+ "Toto povolte, pokud chcete zákazníkům kteří si objednají bez registrace "
243
+ "konta umožnit přístup k PDF dokumentům prostřednictvím unikátního klíče"
244
+
245
+ #: includes/class-wcpdf-settings-debug.php:187
246
+ msgid "Calculate document numbers (slow)"
247
+ msgstr "Vypočítat čísla dokumentů (pomalé)"
248
+
249
+ #: includes/class-wcpdf-settings-debug.php:193
250
+ msgid ""
251
+ "Document numbers (such as invoice numbers) are generated using "
252
+ "AUTO_INCREMENT by default. Use this setting if your database auto increments "
253
+ "with more than 1."
254
+ msgstr ""
255
+ "Čísla dokumentů (například čísla faktur) jsou ve výchozím nastavení "
256
+ "generována pomocí funkce AUTO_INCREMENT. Použijte toto nastavení, pokud "
257
+ "databáze zvýší automaticky o více než 1."
258
+
259
+ #: includes/class-wcpdf-settings-debug.php:199
260
+ msgid "Enable debug output"
261
+ msgstr "Povolit výstup ladění"
262
+
263
+ #: includes/class-wcpdf-settings-debug.php:205
264
+ msgid ""
265
+ "Enable this option to output plugin errors if you're getting a blank page or "
266
+ "other PDF generation issues"
267
+ msgstr ""
268
+ "Povolte toto nastavení pro zobrazení chyb pluginu, pokud se zobrazuje "
269
+ "prázdná stránka nebo máte jiný problém s generováním PDF"
270
+
271
+ #: includes/class-wcpdf-settings-debug.php:206
272
+ msgid ""
273
+ "<b>Caution!</b> This setting may reveal errors (from other plugins) in other "
274
+ "places on your site too, therefor this is not recommended to leave it "
275
+ "enabled on live sites."
276
+ msgstr ""
277
+ "<b> Upozornění! </b> Toto nastavení může odhalit chyby (z jiných zásuvných "
278
+ "modulů) i na jiných místech vašeho webu, proto se nedoporučuje nechat je "
279
+ "povoleno na produkčních stránkách."
280
+
281
+ #: includes/class-wcpdf-settings-debug.php:212
282
+ msgid "Enable automatic cleanup"
283
+ msgstr "Povolit automatické pročištění"
284
+
285
+ #: includes/class-wcpdf-settings-debug.php:219
286
+ #, php-format
287
+ msgid "every %s days"
288
+ msgstr "každý %s (-tý) den"
289
+
290
+ #: includes/class-wcpdf-settings-debug.php:224
291
+ msgid ""
292
+ "Automatically clean up PDF files stored in the temporary folder (used for "
293
+ "email attachments)"
294
+ msgstr ""
295
+ "Automaticky pročistit PDF soubory uložené ve složkách pro dočasné soubory "
296
+ "(použito pro přílohy emailů)"
297
+
298
+ #: includes/class-wcpdf-settings-debug.php:225
299
+ msgid ""
300
+ "<b>Disabled:</b> The PHP functions glob and filemtime are required for "
301
+ "automatic cleanup but not enabled on your server."
302
+ msgstr ""
303
+ "<b> Zakázáno: </b> Funkce PHP global a filemtime jsou vyžadovány pro "
304
+ "automatické vyčištění, ale nejsou povoleny na vašem serveru."
305
+
306
+ #: includes/class-wcpdf-settings-debug.php:231
307
+ msgid "Output to HTML"
308
+ msgstr "Výstup do HTML"
309
+
310
+ #: includes/class-wcpdf-settings-debug.php:237
311
+ msgid ""
312
+ "Send the template output as HTML to the browser instead of creating a PDF."
313
+ msgstr "Pošle výstup šablony v HTML do prohlížeče místo vytvoření PDF."
314
+
315
+ #: includes/class-wcpdf-settings-debug.php:243
316
+ msgid "Use alternative HTML5 parser to parse HTML"
317
+ msgstr "Použít alternativní HTML5 parser na analýzu HTML"
318
+
319
+ #: includes/class-wcpdf-settings-documents.php:30
320
+ #: includes/class-wcpdf-settings.php:96
321
+ msgid "Documents"
322
+ msgstr "Dokumenty"
323
+
324
+ #: includes/class-wcpdf-settings-documents.php:46
325
+ msgid ""
326
+ "All available documents are listed below. Click on a document to configure "
327
+ "it."
328
+ msgstr ""
329
+ "Všechny dostupné dokumenty jsou uvedeny níže. Klikněte na dokument, který "
330
+ "chcete konfigurovat."
331
+
332
+ #: includes/class-wcpdf-settings-general.php:38
333
+ msgid "General settings"
334
+ msgstr "Všeobecná nastavení"
335
+
336
+ #: includes/class-wcpdf-settings-general.php:44
337
+ msgid "How do you want to view the PDF?"
338
+ msgstr "Jak chcete zobrazit PDF?"
339
+
340
+ #: includes/class-wcpdf-settings-general.php:51
341
+ msgid "Download the PDF"
342
+ msgstr "Stáhnout PDF"
343
+
344
+ #: includes/class-wcpdf-settings-general.php:52
345
+ msgid "Open the PDF in a new browser tab/window"
346
+ msgstr "Otevřít PDF v novém okně"
347
+
348
+ #: includes/class-wcpdf-settings-general.php:59
349
+ msgid "Choose a template"
350
+ msgstr "Vyberte šablonu"
351
+
352
+ #: includes/class-wcpdf-settings-general.php:66
353
+ #, php-format
354
+ msgid ""
355
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
356
+ "your (child) theme in <code>%s</code> to customize them"
357
+ msgstr ""
358
+ "Chcete použít vlastní šablonu? Zkopírujte všechny soubory z <code>%s</code> "
359
+ "do svého (child) tématu v <code>%s</code> a upravte je podle potřeby"
360
+
361
+ #: includes/class-wcpdf-settings-general.php:72
362
+ msgid "Paper size"
363
+ msgstr "Velikost papíru"
364
+
365
+ #: includes/class-wcpdf-settings-general.php:79
366
+ #: includes/views/setup-wizard/paper-format.php:12
367
+ msgid "A4"
368
+ msgstr "A4"
369
+
370
+ #: includes/class-wcpdf-settings-general.php:80
371
+ #: includes/views/setup-wizard/paper-format.php:13
372
+ msgid "Letter"
373
+ msgstr "Dopis"
374
+
375
+ #: includes/class-wcpdf-settings-general.php:87
376
+ msgid "Test mode"
377
+ msgstr "Testovací režim"
378
+
379
+ #: includes/class-wcpdf-settings-general.php:93
380
+ msgid ""
381
+ "With test mode enabled, any document generated will always use the latest "
382
+ "settings, rather than using the settings as configured at the time the "
383
+ "document was first created."
384
+ msgstr ""
385
+ "Při aktivovaném zkušebním režimu bude každý vygenerovaný dokument vždy "
386
+ "používat nejnovější nastavení, spíše než používat nastavení nakonfigurovaná "
387
+ "v okamžiku, kdy byl dokument vytvořen."
388
+
389
+ #: includes/class-wcpdf-settings-general.php:93
390
+ msgid ""
391
+ "<strong>Note:</strong> invoice numbers and dates are not affected by this "
392
+ "setting and will still be generated."
393
+ msgstr ""
394
+ "<strong>Poznámka:</strong> čísla a datumy faktur nejsou tímto nastavením "
395
+ "dotčena a budou stále generována."
396
+
397
+ #: includes/class-wcpdf-settings-general.php:99
398
+ msgid "Extended currency symbol support"
399
+ msgstr "Rozšířená podpora symbolů měny"
400
+
401
+ #: includes/class-wcpdf-settings-general.php:105
402
+ msgid "Enable this if your currency symbol is not displaying properly"
403
+ msgstr "Povolte tuto možnost, pokud se symbol měny nezobrazuje správně"
404
+
405
+ #: includes/class-wcpdf-settings-general.php:111
406
+ msgid "Enable font subsetting"
407
+ msgstr "Povolit podnastavení písma"
408
+
409
+ #: includes/class-wcpdf-settings-general.php:117
410
+ msgid ""
411
+ "Font subsetting can reduce file size by only including the characters that "
412
+ "are used in the PDF, but limits the ability to edit PDF files later. "
413
+ "Recommended if you're using an Asian font."
414
+ msgstr ""
415
+ "Font písma může snížit velikost souboru pouze tím, že obsahuje znaky použité "
416
+ "v PDF, ale omezuje možnost později upravovat soubory PDF. Doporučeno, pokud "
417
+ "používáte asijské písmo."
418
+
419
+ #: includes/class-wcpdf-settings-general.php:123
420
+ msgid "Shop header/logo"
421
+ msgstr "Hlavička/logo"
422
+
423
+ #: includes/class-wcpdf-settings-general.php:129
424
+ #: includes/views/setup-wizard/logo.php:20
425
+ msgid "Select or upload your invoice header/logo"
426
+ msgstr "Vyberte nebo nahrajte hlavičku/logo"
427
+
428
+ #: includes/class-wcpdf-settings-general.php:130
429
+ #: includes/views/setup-wizard/logo.php:20
430
+ msgid "Set image"
431
+ msgstr "Vybrat obrázek"
432
+
433
+ #: includes/class-wcpdf-settings-general.php:131
434
+ #: includes/views/setup-wizard/logo.php:20
435
+ msgid "Remove image"
436
+ msgstr "Odebrat obrázek"
437
+
438
+ #: includes/class-wcpdf-settings-general.php:138
439
+ #: includes/class-wcpdf-setup-wizard.php:42
440
+ msgid "Shop Name"
441
+ msgstr "Název obchodu"
442
+
443
+ #: includes/class-wcpdf-settings-general.php:151
444
+ msgid "Shop Address"
445
+ msgstr "Adresa obchodu"
446
+
447
+ #: includes/class-wcpdf-settings-general.php:166
448
+ msgid "Footer: terms & conditions, policies, etc."
449
+ msgstr "Patička: obchodní podmínky, ochrana osobních údajů, atd."
450
+
451
+ #: includes/class-wcpdf-settings-general.php:181
452
+ msgid "Extra template fields"
453
+ msgstr "Extra políčka v šabloně"
454
+
455
+ #: includes/class-wcpdf-settings-general.php:187
456
+ msgid "Extra field 1"
457
+ msgstr "Extra políčko 1"
458
+
459
+ #: includes/class-wcpdf-settings-general.php:195
460
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
461
+ msgstr "Tohle je 1. políčko v patičce šablony <i>Modern (Premium)</i>"
462
+
463
+ #: includes/class-wcpdf-settings-general.php:202
464
+ msgid "Extra field 2"
465
+ msgstr "Extra políčko 2"
466
+
467
+ #: includes/class-wcpdf-settings-general.php:210
468
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
469
+ msgstr "Tohle je 2. políčko v patičce šablony <i>Modern (Premium)</i>"
470
+
471
+ #: includes/class-wcpdf-settings-general.php:217
472
+ msgid "Extra field 3"
473
+ msgstr "Extra políčko 3"
474
+
475
+ #: includes/class-wcpdf-settings-general.php:225
476
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
477
+ msgstr "Tohle je 3. políčko v patičce šablony <i>Modern (Premium)</i>"
478
+
479
+ #: includes/class-wcpdf-settings.php:48 includes/class-wcpdf-settings.php:49
480
+ msgid "PDF Invoices"
481
+ msgstr "PDF faktury"
482
+
483
+ #: includes/class-wcpdf-settings.php:61
484
+ msgid "Settings"
485
+ msgstr "Nastavení"
486
+
487
+ #: includes/class-wcpdf-settings.php:74
488
+ msgid "Documentation"
489
+ msgstr "Dokumentace"
490
+
491
+ #: includes/class-wcpdf-settings.php:75
492
+ msgid "Support Forum"
493
+ msgstr "Fórum podpory"
494
+
495
+ #: includes/class-wcpdf-settings.php:87
496
+ #, php-format
497
+ msgid ""
498
+ "<strong>Warning!</strong> Your database has an AUTO_INCREMENT step size of "
499
+ "%s, your invoice numbers may not be sequential. Enable the 'Calculate "
500
+ "document numbers (slow)' setting in the Status tab to use an alternate "
501
+ "method."
502
+ msgstr ""
503
+ "<strong>Upozornění! </strong> Databáze má velikost kroku AUTO_INCREMENT %s, "
504
+ "čísla faktur nemusí být postupná. Aktivujte nastavení \"Vypočítat čísla "
505
+ "dokumentů (pomalé)\" na kartě Stav, abyste použili alternativní metodu."
506
+
507
+ #: includes/class-wcpdf-settings.php:95
508
+ msgid "General"
509
+ msgstr "Všeobecné"
510
+
511
+ #: includes/class-wcpdf-settings.php:101
512
+ msgid "Status"
513
+ msgstr "Stav"
514
+
515
+ #: includes/class-wcpdf-setup-wizard.php:46
516
+ #: includes/views/setup-wizard/logo.php:3
517
+ msgid "Your logo"
518
+ msgstr "Vaše logo"
519
+
520
+ #: includes/class-wcpdf-setup-wizard.php:50
521
+ msgid "Attachments"
522
+ msgstr "Přílohy"
523
+
524
+ #: includes/class-wcpdf-setup-wizard.php:54
525
+ #: includes/views/setup-wizard/display-options.php:3
526
+ msgid "Display options"
527
+ msgstr "Možnosti zobrazení"
528
+
529
+ #: includes/class-wcpdf-setup-wizard.php:58
530
+ #: includes/views/setup-wizard/paper-format.php:3
531
+ msgid "Paper format"
532
+ msgstr "Formát papíru"
533
+
534
+ #: includes/class-wcpdf-setup-wizard.php:62
535
+ #: includes/views/setup-wizard/show-action-buttons.php:3
536
+ msgid "Action buttons"
537
+ msgstr "Tlačítka akcí"
538
+
539
+ #: includes/class-wcpdf-setup-wizard.php:66
540
+ msgid "Ready!"
541
+ msgstr "Připraveno!"
542
+
543
+ #: includes/class-wcpdf-setup-wizard.php:180
544
+ msgid "Previous"
545
+ msgstr "Předchozí"
546
+
547
+ #: includes/class-wcpdf-setup-wizard.php:186
548
+ msgid "Skip this step"
549
+ msgstr "Přeskočit"
550
+
551
+ #: includes/class-wcpdf-setup-wizard.php:188
552
+ msgid "Finish"
553
+ msgstr "Dokončit"
554
+
555
+ #: includes/compatibility/class-wc-core-compatibility.php:222
556
+ msgid "WooCommerce"
557
+ msgstr "WooCommerce"
558
+
559
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:116
560
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:183
561
+ msgid "N/A"
562
+ msgstr "Není k dispozici"
563
+
564
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:424
565
+ msgid "Payment method"
566
+ msgstr "Platební metoda"
567
+
568
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:445
569
+ msgid "Shipping method"
570
+ msgstr "Doručovací metoda"
571
+
572
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:862
573
+ #, php-format
574
+ msgid "(includes %s)"
575
+ msgstr "(zahrnuje %s)"
576
+
577
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:865
578
+ #, php-format
579
+ msgid "(Includes %s)"
580
+ msgstr "(Zahrnuje %s)"
581
+
582
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:895
583
+ msgid "Subtotal"
584
+ msgstr "Mezisoučet"
585
+
586
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:920
587
+ msgid "Shipping"
588
+ msgstr "Doprava"
589
+
590
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:983
591
+ msgid "Discount"
592
+ msgstr "Sleva"
593
+
594
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1024
595
+ msgid "VAT"
596
+ msgstr "DPH"
597
+
598
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1025
599
+ msgid "Tax rate"
600
+ msgstr "Daňová sazba"
601
+
602
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1069
603
+ msgid "Total ex. VAT"
604
+ msgstr "Celkem bez DPH"
605
+
606
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:1072
607
+ msgid "Total"
608
+ msgstr "Celkem"
609
+
610
+ #: includes/documents/abstract-wcpdf-order-document.php:782
611
+ msgid "Admin email"
612
+ msgstr "Admin email"
613
+
614
+ #: includes/documents/abstract-wcpdf-order-document.php:785
615
+ msgid "Manual email"
616
+ msgstr "Manuální email"
617
+
618
+ #: includes/documents/class-wcpdf-invoice.php:32
619
+ #: includes/documents/class-wcpdf-invoice.php:56
620
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
621
+ msgid "Invoice"
622
+ msgstr "Faktura"
623
+
624
+ #: includes/documents/class-wcpdf-invoice.php:129
625
+ msgid "invoice"
626
+ msgid_plural "invoices"
627
+ msgstr[0] "faktura"
628
+ msgstr[1] "faktury"
629
+ msgstr[2] "faktur"
630
+
631
+ #: includes/documents/class-wcpdf-invoice.php:174
632
+ #: includes/documents/class-wcpdf-packing-slip.php:88
633
+ msgid "Enable"
634
+ msgstr "Zapnout"
635
+
636
+ #: includes/documents/class-wcpdf-invoice.php:185
637
+ msgid "Attach to:"
638
+ msgstr "Připojit k:"
639
+
640
+ #: includes/documents/class-wcpdf-invoice.php:192
641
+ #, php-format
642
+ msgid ""
643
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
644
+ "permissions for this folder! Without having write access to this folder, the "
645
+ "plugin will not be able to email invoices."
646
+ msgstr ""
647
+ "Zdá se, že dočasná složka (<code>%s</code>) není přístupná, zkontrolujte "
648
+ "prosím oprávnění zápisu (chmod)! Bez povolení pro zápis do této složky "
649
+ "nebude možné odesílat faktury e-mailem."
650
+
651
+ #: includes/documents/class-wcpdf-invoice.php:198
652
+ msgid "Disable for:"
653
+ msgstr "Vypnout pro:"
654
+
655
+ #: includes/documents/class-wcpdf-invoice.php:207
656
+ msgid "Select one or more statuses"
657
+ msgstr "Zvolte jeden nebo více stavů"
658
+
659
+ #: includes/documents/class-wcpdf-invoice.php:213
660
+ #: includes/views/setup-wizard/display-options.php:11
661
+ msgid "Display shipping address"
662
+ msgstr "Zobrazit doručovací adresu"
663
+
664
+ #: includes/documents/class-wcpdf-invoice.php:219
665
+ msgid ""
666
+ "Display shipping address (in addition to the default billing address) if "
667
+ "different from billing address"
668
+ msgstr ""
669
+ "Zobrazit doručovací adresu na faktuře (společně s fakturační adresou), pokud "
670
+ "se liší"
671
+
672
+ #: includes/documents/class-wcpdf-invoice.php:225
673
+ #: includes/documents/class-wcpdf-packing-slip.php:111
674
+ #: includes/views/setup-wizard/display-options.php:13
675
+ msgid "Display email address"
676
+ msgstr "Zobrazit emailovou adresu"
677
+
678
+ #: includes/documents/class-wcpdf-invoice.php:236
679
+ #: includes/documents/class-wcpdf-packing-slip.php:122
680
+ #: includes/views/setup-wizard/display-options.php:15
681
+ msgid "Display phone number"
682
+ msgstr "Zobrazit telefonní číslo"
683
+
684
+ #: includes/documents/class-wcpdf-invoice.php:247
685
+ #: includes/views/setup-wizard/display-options.php:17
686
+ msgid "Display invoice date"
687
+ msgstr "Zobrazit datum fakturace"
688
+
689
+ #: includes/documents/class-wcpdf-invoice.php:254
690
+ #: includes/documents/class-wcpdf-invoice.php:270
691
+ msgid "No"
692
+ msgstr "Ne"
693
+
694
+ #: includes/documents/class-wcpdf-invoice.php:256
695
+ msgid "Order Date"
696
+ msgstr "Datum objednávky"
697
+
698
+ #: includes/documents/class-wcpdf-invoice.php:263
699
+ #: includes/views/setup-wizard/display-options.php:19
700
+ msgid "Display invoice number"
701
+ msgstr "Zobrazte číslo faktury"
702
+
703
+ #: includes/documents/class-wcpdf-invoice.php:272
704
+ msgid "Order Number"
705
+ msgstr "Číslo objednávky"
706
+
707
+ #: includes/documents/class-wcpdf-invoice.php:276
708
+ msgid "Warning!"
709
+ msgstr "Upozornění!"
710
+
711
+ #: includes/documents/class-wcpdf-invoice.php:277
712
+ msgid ""
713
+ "Using the Order Number as invoice number is not recommended as this may lead "
714
+ "to gaps in the invoice number sequence (even when order numbers are "
715
+ "sequential)."
716
+ msgstr ""
717
+ "Nedoporučujeme používat číslo objednávky pro číslo faktury, protože to může "
718
+ "vést k mezerám v číslování (přestože je číslování objednávek posloupné)."
719
+
720
+ #: includes/documents/class-wcpdf-invoice.php:278
721
+ msgid "More information"
722
+ msgstr "Více informací"
723
+
724
+ #: includes/documents/class-wcpdf-invoice.php:285
725
+ msgid "Next invoice number (without prefix/suffix etc.)"
726
+ msgstr "Další číslo faktury (bez předpony/přípony)"
727
+
728
+ #: includes/documents/class-wcpdf-invoice.php:291
729
+ msgid ""
730
+ "This is the number that will be used for the next document. By default, "
731
+ "numbering starts from 1 and increases for every new document. Note that if "
732
+ "you override this and set it lower than the current/highest number, this "
733
+ "could create duplicate numbers!"
734
+ msgstr ""
735
+ "Toto je číslo, které bude použito pro další dokument. Ve výchozím nastavení "
736
+ "začíná číslování od 1 a zvyšuje se pro každý nový dokument. Všimněte si, že "
737
+ "pokud to přepíšete a nastavíte jej nižší než aktuální / nejvyšší číslo, "
738
+ "mohlo by to vytvořit duplicitní čísla!"
739
+
740
+ #: includes/documents/class-wcpdf-invoice.php:297
741
+ msgid "Number format"
742
+ msgstr "Formát čísel"
743
+
744
+ #: includes/documents/class-wcpdf-invoice.php:305
745
+ msgid "Prefix"
746
+ msgstr "Předpona"
747
+
748
+ #: includes/documents/class-wcpdf-invoice.php:307
749
+ msgid ""
750
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
751
+ "respectively"
752
+ msgstr "použijte [order_year] pro rok a [order_month] pro měsíc objednání"
753
+
754
+ #: includes/documents/class-wcpdf-invoice.php:310
755
+ msgid "Suffix"
756
+ msgstr "Přípona"
757
+
758
+ #: includes/documents/class-wcpdf-invoice.php:315
759
+ msgid "Padding"
760
+ msgstr "Výplň"
761
+
762
+ #: includes/documents/class-wcpdf-invoice.php:318
763
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
764
+ msgstr ""
765
+ "zde vložte počet číslic - napište \"6\", aby se 42 zobrazilo jako 000042"
766
+
767
+ #: includes/documents/class-wcpdf-invoice.php:321
768
+ msgid ""
769
+ "note: if you have already created a custom invoice number format with a "
770
+ "filter, the above settings will be ignored"
771
+ msgstr ""
772
+ "poznámka: pokud jste si už nastavili vlastní číslování faktur pomocí filtru, "
773
+ "výše uvedená nastavení budou ignorována"
774
+
775
+ #: includes/documents/class-wcpdf-invoice.php:327
776
+ msgid "Reset invoice number yearly"
777
+ msgstr "Obnovit číslování faktur ročně"
778
+
779
+ #: includes/documents/class-wcpdf-invoice.php:338
780
+ msgid "Allow My Account invoice download"
781
+ msgstr "Umožnit stažení faktury na stránce Můj účet"
782
+
783
+ #: includes/documents/class-wcpdf-invoice.php:345
784
+ msgid "Only when an invoice is already created/emailed"
785
+ msgstr "Pouze když už byla faktura vytvořena/odeslána"
786
+
787
+ #: includes/documents/class-wcpdf-invoice.php:346
788
+ msgid "Only for specific order statuses (define below)"
789
+ msgstr "Pouze pro určité stavy objednávek (definujte níže)"
790
+
791
+ #: includes/documents/class-wcpdf-invoice.php:347
792
+ msgid "Always"
793
+ msgstr "Vždy"
794
+
795
+ #: includes/documents/class-wcpdf-invoice.php:348
796
+ msgid "Never"
797
+ msgstr "Nikdy"
798
+
799
+ #: includes/documents/class-wcpdf-invoice.php:363
800
+ msgid "Enable invoice number column in the orders list"
801
+ msgstr "Zobrazit v seznamu objednávek sloupec s čísly faktur"
802
+
803
+ #: includes/documents/class-wcpdf-invoice.php:374
804
+ msgid "Disable for free products"
805
+ msgstr "Vypnout u produktů zdarma"
806
+
807
+ #: includes/documents/class-wcpdf-invoice.php:380
808
+ msgid ""
809
+ "Disable automatic creation/attachment when only free products are ordered"
810
+ msgstr ""
811
+ "Vypnout automatické vytváření/přikládání faktur pokud byly objednány pouze "
812
+ "produkty zdarma"
813
+
814
+ #: includes/documents/class-wcpdf-invoice.php:386
815
+ msgid "Always use most current settings"
816
+ msgstr "Vždy používat nejaktuálnější nastavení"
817
+
818
+ #: includes/documents/class-wcpdf-invoice.php:392
819
+ msgid ""
820
+ "When enabled, the document will always reflect the most current settings "
821
+ "(such as footer text, document name, etc.) rather than using historical "
822
+ "settings."
823
+ msgstr ""
824
+ "Pokud je tato funkce povolena, dokument bude vždy odrážet nejaktuálnější "
825
+ "nastavení (například text zápatí, název dokumentu atd.), Nikoli pomocí "
826
+ "historických nastavení."
827
+
828
+ #: includes/documents/class-wcpdf-invoice.php:394
829
+ msgid ""
830
+ "<strong>Caution:</strong> enabling this will also mean that if you change "
831
+ "your company name or address in the future, previously generated documents "
832
+ "will also be affected."
833
+ msgstr ""
834
+ "<strong> Upozornění: </strong> povolíte také, že pokud změníte název vaší "
835
+ "firmy nebo adresu v budoucnu, budou také ovlivněny dříve generované "
836
+ "dokumenty."
837
+
838
+ #: includes/documents/class-wcpdf-invoice.php:407
839
+ msgid "Invoice numbers are created by a third-party extension."
840
+ msgstr "Čísla faktur jsou vytvářena rozšířením třetí strany."
841
+
842
+ #: includes/documents/class-wcpdf-invoice.php:409
843
+ #, php-format
844
+ msgid "Configure it <a href=\"%s\">here</a>."
845
+ msgstr "Nakonfigurujte jej <a href=\"%s\"> zde </a>."
846
+
847
+ #: includes/documents/class-wcpdf-packing-slip.php:32
848
+ #: includes/documents/class-wcpdf-packing-slip.php:41
849
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
850
+ msgid "Packing Slip"
851
+ msgstr "Dodací List"
852
+
853
+ #: includes/documents/class-wcpdf-packing-slip.php:47
854
+ msgid "packing-slip"
855
+ msgid_plural "packing-slips"
856
+ msgstr[0] "dodací list"
857
+ msgstr[1] "dodací listy"
858
+ msgstr[2] "dodacích listů"
859
+
860
+ #: includes/documents/class-wcpdf-packing-slip.php:99
861
+ msgid "Display billing address"
862
+ msgstr "Zobrazit fakturační adresu"
863
+
864
+ #: includes/documents/class-wcpdf-packing-slip.php:105
865
+ msgid ""
866
+ "Display billing address (in addition to the default shipping address) if "
867
+ "different from shipping address"
868
+ msgstr ""
869
+ "Zobrazit fakturační adresu na dodacím listu (společně s doručovací adresou), "
870
+ "pokud se liší"
871
+
872
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
873
+ msgid "Legacy Document"
874
+ msgstr "Starší dokument"
875
+
876
+ #: includes/legacy/class-wcpdf-legacy.php:72
877
+ msgid "Error"
878
+ msgstr "Chyba"
879
+
880
+ #: includes/legacy/class-wcpdf-legacy.php:73
881
+ msgid ""
882
+ "An outdated template or action hook was used to generate the PDF. Legacy "
883
+ "mode has been activated, please try again by reloading this page."
884
+ msgstr ""
885
+ "Za účelem vytvoření PDF byla použita zastaralá šablona nebo akční hák. "
886
+ "Starší režim byl aktivován, zkuste znovu znovu načtěte tuto stránku."
887
+
888
+ #: includes/legacy/class-wcpdf-legacy.php:76
889
+ msgid "The following function was called"
890
+ msgstr "Byla vyvolána následující funkce"
891
+
892
+ #: includes/views/attachment-settings-hint.php:22
893
+ #, php-format
894
+ msgid ""
895
+ "It looks like you haven't setup any email attachments yet, check the "
896
+ "settings under <b>%sDocuments > Invoice%s</b>"
897
+ msgstr ""
898
+ "Zdá se, že jste ještě nenastavili žádné e-mailové přílohy, zkontrolujte "
899
+ "nastavení v části <b>%s Dokumenty> Faktura%s</b>"
900
+
901
+ #: includes/views/setup-wizard/attach-to.php:3
902
+ msgid "Attach too..."
903
+ msgstr "Připojte se také ..."
904
+
905
+ #: includes/views/setup-wizard/attach-to.php:4
906
+ msgid "Select to which emails you would like to attach your invoice."
907
+ msgstr "Vyberte, ke kterým emailům byste chtěli připojit fakturu."
908
+
909
+ #: includes/views/setup-wizard/display-options.php:4
910
+ msgid "Select some additional display options for your invoice."
911
+ msgstr "Vyberte další možnosti zobrazení faktury."
912
+
913
+ #: includes/views/setup-wizard/good-to-go.php:3
914
+ msgid "You are good to go!"
915
+ msgstr "Můžeš jít!"
916
+
917
+ #: includes/views/setup-wizard/good-to-go.php:4
918
+ msgid "If you have any questions please have a look at our documentation:"
919
+ msgstr "Pokud máte nějaké dotazy, prosím prohlédněte si dokumentaci:"
920
+
921
+ #: includes/views/setup-wizard/good-to-go.php:5
922
+ msgid "Invoices & Packing Slips"
923
+ msgstr "Faktury a dodací listy"
924
+
925
+ #: includes/views/setup-wizard/good-to-go.php:6
926
+ msgid "Happy selling!"
927
+ msgstr "Šťastný prodej!"
928
+
929
+ #: includes/views/setup-wizard/logo.php:4
930
+ msgid "Set the header image that will display on your invoice."
931
+ msgstr "Nastavte obrázek záhlaví, který se zobrazí na faktuře."
932
+
933
+ #: includes/views/setup-wizard/paper-format.php:4
934
+ msgid "Select the paper format for your invoice."
935
+ msgstr "Vyberte formát papíru pro vaše faktury."
936
+
937
+ #: includes/views/setup-wizard/shop-name.php:3
938
+ msgid "Enter your shop name"
939
+ msgstr "Zadejte jméno obchodu"
940
+
941
+ #: includes/views/setup-wizard/shop-name.php:4
942
+ msgid ""
943
+ "Lets quickly setup your invoice. Please enter the name and address of your "
944
+ "shop in the fields on the right."
945
+ msgstr ""
946
+ "Nastavme rychle fakturaci. Prosím zadejte jméno a adresu vašeho obchodu do "
947
+ "položek na pravé straně."
948
+
949
+ #: includes/views/setup-wizard/show-action-buttons.php:4
950
+ msgid ""
951
+ "Would you like to display the action buttons in your WooCommerce order list? "
952
+ "The action buttons allow you to manually create a PDF."
953
+ msgstr ""
954
+ "Přejete si zobrazovat tlačítka akcí ve WooCommerce přehledu objednávek? "
955
+ "Tlačítka akcí vám umožní ručně vytvořit PDF."
956
+
957
+ #: includes/views/setup-wizard/show-action-buttons.php:5
958
+ msgid "(You can always change this setting later via the Screen Options menu)"
959
+ msgstr ""
960
+ "(Toto nastavení můžete později změnit přes Nastavení zobrazených informací)"
961
+
962
+ #: includes/views/setup-wizard/show-action-buttons.php:18
963
+ msgid "Show action buttons"
964
+ msgstr "Zobrazit tlačítka akcí"
965
+
966
+ #: includes/views/wcpdf-extensions.php:16
967
+ msgid "Check out these premium extensions!"
968
+ msgstr "Vyzkoušejte tato prémiová rozšíření!"
969
+
970
+ #: includes/views/wcpdf-extensions.php:17
971
+ msgid "click items to read more"
972
+ msgstr "pro více informací klikněte na položky"
973
+
974
+ #: includes/views/wcpdf-extensions.php:22
975
+ msgid ""
976
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
977
+ "system"
978
+ msgstr ""
979
+ "Premium PDF Balíček faktur: Vše, co potřebujete pro dokonalý systém fakturace"
980
+
981
+ #: includes/views/wcpdf-extensions.php:24
982
+ msgid ""
983
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
984
+ "premium extensions:"
985
+ msgstr ""
986
+ "Supercharge WooCommerce PDF faktury a balíčky s našimi prémiovými "
987
+ "rozšířeními:"
988
+
989
+ #: includes/views/wcpdf-extensions.php:25
990
+ msgid "Professional features:"
991
+ msgstr "Profesionální funkce:"
992
+
993
+ #: includes/views/wcpdf-extensions.php:27
994
+ #: includes/views/wcpdf-extensions.php:57
995
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
996
+ msgstr "Mailujte/tiskněte/stahujte <b>PDF dobropisy a proforma faktury</b>"
997
+
998
+ #: includes/views/wcpdf-extensions.php:28
999
+ #: includes/views/wcpdf-extensions.php:58
1000
+ msgid ""
1001
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
1002
+ "packing slips, for example to a drop-shipper or a supplier."
1003
+ msgstr ""
1004
+ "Posílejte zvláštní <b>notifikační email</b> s (nebo bez) PDF fakturami/"
1005
+ "dodacími listy, např. pro drop-shippera nebo dodavatele."
1006
+
1007
+ #: includes/views/wcpdf-extensions.php:29
1008
+ #: includes/views/wcpdf-extensions.php:59
1009
+ msgid ""
1010
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
1011
+ "document) to the WooCommerce emails of your choice."
1012
+ msgstr ""
1013
+ "Přikládejte k vybraným WooCommerce emailům <b>až 3 statické soubory</b> "
1014
+ "(např. dokument s obchodními podmínkami)."
1015
+
1016
+ #: includes/views/wcpdf-extensions.php:30
1017
+ #: includes/views/wcpdf-extensions.php:60
1018
+ msgid ""
1019
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
1020
+ "and credit notes or utilize the main invoice numbering system"
1021
+ msgstr ""
1022
+ "Používejte <b>samostatné číslování</b> a/nebo formát proforma faktur a "
1023
+ "dobropisů nebo používejte hlavní číslování"
1024
+
1025
+ #: includes/views/wcpdf-extensions.php:31
1026
+ #: includes/views/wcpdf-extensions.php:61
1027
+ msgid ""
1028
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
1029
+ "additional custom fields, font sizes etc. without the need to create a "
1030
+ "custom template."
1031
+ msgstr ""
1032
+ "<b>Přizpůsobte si formát dodací a fakturační adresy</b>, aby obsahovaly "
1033
+ "další vlastní pole, velikosti písma, atd. bez nutnosti vytvářet vlastní "
1034
+ "šablonu."
1035
+
1036
+ #: includes/views/wcpdf-extensions.php:32
1037
+ #: includes/views/wcpdf-extensions.php:62
1038
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
1039
+ msgstr "Používejte plugin v multijazyčném nastavení <b>WPML</b>"
1040
+
1041
+ #: includes/views/wcpdf-extensions.php:34
1042
+ #: includes/views/wcpdf-extensions.php:114
1043
+ msgid "Advanced, customizable templates"
1044
+ msgstr "Pokročilé, přizpůsobitelné šablony"
1045
+
1046
+ #: includes/views/wcpdf-extensions.php:36
1047
+ #: includes/views/wcpdf-extensions.php:117
1048
+ msgid ""
1049
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
1050
+ "your needs with a drag & drop customizer"
1051
+ msgstr ""
1052
+ "Přizpůsobte si kompletní obsah faktur (ceny, daně, náhledové obrázky) vašim "
1053
+ "potřebám pomocí jednoduchého editoru"
1054
+
1055
+ #: includes/views/wcpdf-extensions.php:37
1056
+ #: includes/views/wcpdf-extensions.php:118
1057
+ msgid "Two extra stylish premade templates (Modern & Business)"
1058
+ msgstr "Další dvě stylisticky připravené šablony (Modern a Business)"
1059
+
1060
+ #: includes/views/wcpdf-extensions.php:39
1061
+ #: includes/views/wcpdf-extensions.php:63
1062
+ msgid "Upload automatically to dropbox"
1063
+ msgstr "Nahrát automaticky do dropboxu"
1064
+
1065
+ #: includes/views/wcpdf-extensions.php:41
1066
+ msgid ""
1067
+ "This extension conveniently uploads all the invoices (and other pdf "
1068
+ "documents from the professional extension) that are emailed to your "
1069
+ "customers to Dropbox. The best way to keep your invoice administration up to "
1070
+ "date!"
1071
+ msgstr ""
1072
+ "Toto rozšíření umožňuje pohodlně nahrávat do Dropboxu všechny faktury (a "
1073
+ "další pdf dokumenty z profi rozšíření), které jsou posílány zákazníkovi. "
1074
+ "Nejlepší způsob, jak udržet správu fakturu v aktuální podobě!"
1075
+
1076
+ #: includes/views/wcpdf-extensions.php:44
1077
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
1078
+ msgstr "Získejte WooCommerce PDF faktury a balíček doplňků"
1079
+
1080
+ #: includes/views/wcpdf-extensions.php:53
1081
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
1082
+ msgstr "Pro verze: proforma faktury, dobropisy a další!"
1083
+
1084
+ #: includes/views/wcpdf-extensions.php:55
1085
+ msgid ""
1086
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
1087
+ "features:"
1088
+ msgstr "Nabijte WooCommerce PDF Invoices & Packing Slips těmito funkcemi:"
1089
+
1090
+ #: includes/views/wcpdf-extensions.php:65
1091
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
1092
+ msgstr "Získejte WooCommerce PDF Invoices & Packing Slips Professional!"
1093
+
1094
+ #: includes/views/wcpdf-extensions.php:73
1095
+ msgid "Automatically send payment reminders to your customers"
1096
+ msgstr "Automaticky posílejte připomenutí plateb vašim zákazníkům"
1097
+
1098
+ #: includes/views/wcpdf-extensions.php:75
1099
+ msgid "WooCommerce Smart Reminder emails"
1100
+ msgstr "WooCommerce Smart Reminder e-maily"
1101
+
1102
+ #: includes/views/wcpdf-extensions.php:77
1103
+ msgid "<b>Completely automatic</b> scheduled emails"
1104
+ msgstr "<b> Plně automatické </b> plánované e-maily"
1105
+
1106
+ #: includes/views/wcpdf-extensions.php:78
1107
+ msgid ""
1108
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
1109
+ "from the order (name, order total, etc)"
1110
+ msgstr ""
1111
+ "<b> Textový editor s rozšířeným textem </b> pro text e-mailu včetně "
1112
+ "zástupných symbolů pro data z objednávky (název, celkový počet objednávek "
1113
+ "atd.)"
1114
+
1115
+ #: includes/views/wcpdf-extensions.php:79
1116
+ msgid ""
1117
+ "Configure the exact requirements for sending an email (time after order, "
1118
+ "order status, payment method)"
1119
+ msgstr ""
1120
+ "Konfigurovat přesné požadavky na odeslání e-mailu (čas po objednávce, stav "
1121
+ "objednávky, způsob platby)"
1122
+
1123
+ #: includes/views/wcpdf-extensions.php:80
1124
+ msgid ""
1125
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
1126
+ "order language."
1127
+ msgstr ""
1128
+ "Plně <b> Kompatibilní s WPML</b> - emaily budou automaticky odeslány v "
1129
+ "jazyce objednávky."
1130
+
1131
+ #: includes/views/wcpdf-extensions.php:81
1132
+ msgid ""
1133
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
1134
+ "reminders, repeat purchases)"
1135
+ msgstr ""
1136
+ "<b> Velmi univerzální! </b> Lze použít pro jakýkoli druh upomínací e-mailové "
1137
+ "zprávy (přehledy připomenutí, opakované nákupy)"
1138
+
1139
+ #: includes/views/wcpdf-extensions.php:82
1140
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
1141
+ msgstr "Bezproblémová integrace s pluginem PDF Faktury a balíčky svazků"
1142
+
1143
+ #: includes/views/wcpdf-extensions.php:84
1144
+ msgid "Get WooCommerce Smart Reminder Emails"
1145
+ msgstr "Získejte e-maily Smart Reminder společnosti WooCommerce"
1146
+
1147
+ #: includes/views/wcpdf-extensions.php:93
1148
+ msgid ""
1149
+ "Automatically send new orders or packing slips to your printer, as soon as "
1150
+ "the customer orders!"
1151
+ msgstr ""
1152
+ "Posílejte automaticky nové objednávky nebo dodací listy na svou tiskárnu, "
1153
+ "jakmile si zákazník objedná!"
1154
+
1155
+ #: includes/views/wcpdf-extensions.php:99
1156
+ msgid ""
1157
+ "Check out the WooCommerce Automatic Order Printing extension from our "
1158
+ "partners at Simba Hosting"
1159
+ msgstr ""
1160
+ "Vyzkoušejte rozšíření WooCommerce Automatic Order Printing od našich "
1161
+ "partnerů ze Simba Hosting"
1162
+
1163
+ #: includes/views/wcpdf-extensions.php:100
1164
+ msgid "WooCommerce Automatic Order Printing"
1165
+ msgstr "WooCommerce automatizovaný tisk objednávek"
1166
+
1167
+ #: includes/views/wcpdf-extensions.php:119
1168
+ #, php-format
1169
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
1170
+ msgstr "Vyzkoušejte Premium PDF Invoice & Packing Slips šablony na %s."
1171
+
1172
+ #: includes/views/wcpdf-extensions.php:120
1173
+ #, php-format
1174
+ msgid "For custom templates, contact us at %s."
1175
+ msgstr "Ohledně vlastních šablon nás kontaktujte na %s."
1176
+
1177
+ #: includes/views/wcpdf-settings-page.php:9
1178
+ msgid "WooCommerce PDF Invoices"
1179
+ msgstr "WooCommerce PDF faktury"
1180
+
1181
+ #: includes/wcpdf-functions.php:208
1182
+ msgid "Error creating PDF, please contact the site owner."
1183
+ msgstr "Při vytváření PDF nastala chyba, prosím kontaktujte vlastníka webu."
1184
+
1185
+ #: templates/Simple/invoice.php:31 templates/Simple/packing-slip.php:44
1186
+ msgid "Billing Address:"
1187
+ msgstr "Fakturační adresa:"
1188
+
1189
+ #: templates/Simple/invoice.php:44
1190
+ msgid "Ship To:"
1191
+ msgstr "Odeslat na:"
1192
+
1193
+ #: templates/Simple/invoice.php:55
1194
+ msgid "Invoice Number:"
1195
+ msgstr "Číslo faktury:"
1196
+
1197
+ #: templates/Simple/invoice.php:66 templates/Simple/packing-slip.php:54
1198
+ msgid "Order Number:"
1199
+ msgstr "Číslo objednávky:"
1200
+
1201
+ #: templates/Simple/invoice.php:70 templates/Simple/packing-slip.php:58
1202
+ msgid "Order Date:"
1203
+ msgstr "Datum objednávky:"
1204
+
1205
+ #: templates/Simple/invoice.php:74
1206
+ msgid "Payment Method:"
1207
+ msgstr "Způsob platby:"
1208
+
1209
+ #: templates/Simple/invoice.php:88 templates/Simple/packing-slip.php:76
1210
+ msgid "Product"
1211
+ msgstr "Zboží"
1212
+
1213
+ #: templates/Simple/invoice.php:89 templates/Simple/packing-slip.php:77
1214
+ msgid "Quantity"
1215
+ msgstr "Množství"
1216
+
1217
+ #: templates/Simple/invoice.php:90
1218
+ msgid "Price"
1219
+ msgstr "Cena"
1220
+
1221
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
1222
+ msgid "Description"
1223
+ msgstr "Popis"
1224
+
1225
+ #: templates/Simple/invoice.php:102 templates/Simple/packing-slip.php:89
1226
+ msgid "SKU"
1227
+ msgstr "SKU"
1228
+
1229
+ #: templates/Simple/invoice.php:103 templates/Simple/packing-slip.php:90
1230
+ msgid "SKU:"
1231
+ msgstr "SKU:"
1232
+
1233
+ #: templates/Simple/invoice.php:104 templates/Simple/packing-slip.php:91
1234
+ msgid "Weight:"
1235
+ msgstr "Hmotnost:"
1236
+
1237
+ #: templates/Simple/invoice.php:119 templates/Simple/packing-slip.php:106
1238
+ msgid "Customer Notes"
1239
+ msgstr "Poznámka zákazníka"
1240
+
1241
+ #: templates/Simple/packing-slip.php:31
1242
+ msgid "Shipping Address:"
1243
+ msgstr "Doručovací adresa:"
1244
+
1245
+ #: templates/Simple/packing-slip.php:62
1246
+ msgid "Shipping Method:"
1247
+ msgstr "Doručovací metoda:"
1248
+
1249
+ #: woocommerce-pdf-invoices-packingslips.php:238
1250
+ #, php-format
1251
+ msgid ""
1252
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
1253
+ "installed & activated!"
1254
+ msgstr ""
1255
+ "WooCommerce PDF Invoices & Packing Slips vyžaduje nainstalovaný a aktivovaný "
1256
+ "plugin %sWooCommerce%s!"
1257
+
1258
+ #: woocommerce-pdf-invoices-packingslips.php:250
1259
+ msgid ""
1260
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
1261
+ "higher recommended)."
1262
+ msgstr ""
1263
+ "WooCommerce PDF Faktury a balicí vyžadují PHP 5.3 nebo vyšší (doporučujeme "
1264
+ "5.6 nebo vyšší)."
1265
+
1266
+ #: woocommerce-pdf-invoices-packingslips.php:251
1267
+ msgid "How to update your PHP version"
1268
+ msgstr "Jak aktualizovat verzi PHP"
1269
+
1270
+ #~ msgid "Next"
1271
+ #~ msgstr "Další"
1272
+
1273
+ #~ msgid "WooCommerce PDF Invoices & Packing Slips &rsaquo; Setup Wizard"
1274
+ #~ msgstr "WooCommerce PDF faktury a dodací listy &rsaquo; Průvodce instalací"
1275
+
1276
+ #~ msgid "Save order & send email"
1277
+ #~ msgstr "Uložit objednávku a odeslat email"
1278
+
1279
+ #~ msgid "Ewout Fernhout"
1280
+ #~ msgstr "Ewout Fernhout"
1281
+
1282
+ #~ msgid ""
1283
+ #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
1284
+ #~ msgstr ""
1285
+ #~ "Vytváří, tiskne a posílá emailem faktury v PDF a dodací listy k "
1286
+ #~ "WooCommerce objednávkám."
1287
+
1288
+ #~ msgid "http://www.wpovernight.com"
1289
+ #~ msgstr "http://www.wpovernight.com"
1290
+
1291
+ #~ msgid "WooCommerce PDF Invoices & Packing Slips"
1292
+ #~ msgstr "WooCommerce PDF faktury & dodací listy"
1293
+
languages/woocommerce-pdf-invoices-packing-slips-da_DK.po CHANGED
@@ -1,961 +1,961 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: Daniel Hedegaard Arp <daniel@eurosite.dk>\n"
7
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
- "Language: da_DK\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Fakturanummer "
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Opret PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr ""
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Faktura "
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Fakturadato: "
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "t"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "m"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Hent faktura (PDF) "
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "Du har ikke tilstrækkelig tilladelse til at tilgå denne side. "
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "Nogle af parametrene for eksport mangler."
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<b>Advarsel!</b> Indstillingerne nedenfor er kun beregnet for fejlfinding/"
79
- "udvikling. Brug dem ikke på et live websted!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr "Disse bruges (valgfrit)"
87
-
88
- #: includes/class-wcpdf-settings-callbacks.php:301
89
- msgid "Image resolution"
90
- msgstr "Billede opløsning"
91
-
92
- #: includes/class-wcpdf-settings-callbacks.php:325
93
- msgid "Save"
94
- msgstr ""
95
-
96
- #: includes/class-wcpdf-settings-debug.php:34
97
- msgid "Debug settings"
98
- msgstr "debug indstillinger"
99
-
100
- #: includes/class-wcpdf-settings-debug.php:40
101
- msgid "Legacy mode"
102
- msgstr ""
103
-
104
- #: includes/class-wcpdf-settings-debug.php:46
105
- msgid ""
106
- "Legacy mode ensures compatibility with templates and filters from previous "
107
- "versions."
108
- msgstr ""
109
-
110
- #: includes/class-wcpdf-settings-debug.php:52
111
- msgid "Enable debug output"
112
- msgstr "Aktiver debug output"
113
-
114
- #: includes/class-wcpdf-settings-debug.php:58
115
- msgid ""
116
- "Enable this option to output plugin errors if you're getting a blank page or "
117
- "other PDF generation issues"
118
- msgstr ""
119
- "Aktivér denne indstilling for output plugin fejl, hvis du får en blank side "
120
- "eller andre PDF generations problemstillinger"
121
-
122
- #: includes/class-wcpdf-settings-debug.php:64
123
- msgid "Output to HTML"
124
- msgstr "Output til HTML"
125
-
126
- #: includes/class-wcpdf-settings-debug.php:70
127
- msgid ""
128
- "Send the template output as HTML to the browser instead of creating a PDF."
129
- msgstr ""
130
- "Send skabelonen outputtet som HTML til browseren i stedet for at lave en PDF."
131
-
132
- #: includes/class-wcpdf-settings-documents.php:29
133
- #: includes/class-wcpdf-settings.php:84
134
- msgid "Documents"
135
- msgstr ""
136
-
137
- #: includes/class-wcpdf-settings-documents.php:45
138
- msgid ""
139
- "All available documents are listed below. Click on a document to configure "
140
- "it."
141
- msgstr ""
142
-
143
- #: includes/class-wcpdf-settings-general.php:37
144
- msgid "General settings"
145
- msgstr "Generelle indstillinger "
146
-
147
- #: includes/class-wcpdf-settings-general.php:43
148
- msgid "How do you want to view the PDF?"
149
- msgstr "Hvordan ønsker du at vise PDF'en?"
150
-
151
- #: includes/class-wcpdf-settings-general.php:50
152
- msgid "Download the PDF"
153
- msgstr "Hent PDF'en"
154
-
155
- #: includes/class-wcpdf-settings-general.php:51
156
- msgid "Open the PDF in a new browser tab/window"
157
- msgstr "Åben PDF'en i en ny browser fane/vindue "
158
-
159
- #: includes/class-wcpdf-settings-general.php:58
160
- msgid "Choose a template"
161
- msgstr "Vælg en skabelon"
162
-
163
- #: includes/class-wcpdf-settings-general.php:65
164
- #, php-format
165
- msgid ""
166
- "Want to use your own template? Copy all the files from <code>%s</code> to "
167
- "your (child) theme in <code>%s</code> to customize them"
168
- msgstr ""
169
- "Vil du bruge din egen skabelon? Kopier alle filer fra <code>%s</code> til "
170
- "din (barn) tema i <code>%s</code> at tilpasse dem."
171
-
172
- #: includes/class-wcpdf-settings-general.php:71
173
- msgid "Paper size"
174
- msgstr "Papir størrelse "
175
-
176
- #: includes/class-wcpdf-settings-general.php:78
177
- msgid "A4"
178
- msgstr "A4"
179
-
180
- #: includes/class-wcpdf-settings-general.php:79
181
- msgid "Letter"
182
- msgstr "Brev"
183
-
184
- #: includes/class-wcpdf-settings-general.php:86
185
- msgid "Extended currency symbol support"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-settings-general.php:92
189
- msgid "Enable this if your currency symbol is not displaying properly"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-settings-general.php:98
193
- msgid "Shop header/logo"
194
- msgstr "Butik header/logo "
195
-
196
- #: includes/class-wcpdf-settings-general.php:104
197
- msgid "Select or upload your invoice header/logo"
198
- msgstr "Vælg eller upload dit faktura header/logo"
199
-
200
- #: includes/class-wcpdf-settings-general.php:105
201
- msgid "Set image"
202
- msgstr "Indstil billedet "
203
-
204
- #: includes/class-wcpdf-settings-general.php:106
205
- msgid "Remove image"
206
- msgstr "Fjern billede"
207
-
208
- #: includes/class-wcpdf-settings-general.php:113
209
- msgid "Shop Name"
210
- msgstr "Butik navn"
211
-
212
- #: includes/class-wcpdf-settings-general.php:126
213
- msgid "Shop Address"
214
- msgstr "Butik adresse "
215
-
216
- #: includes/class-wcpdf-settings-general.php:141
217
- msgid "Footer: terms & conditions, policies, etc."
218
- msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
219
-
220
- #: includes/class-wcpdf-settings-general.php:156
221
- msgid "Extra template fields"
222
- msgstr "Ekstra skabelons felter "
223
-
224
- #: includes/class-wcpdf-settings-general.php:162
225
- msgid "Extra field 1"
226
- msgstr "Ekstra felt 1"
227
-
228
- #: includes/class-wcpdf-settings-general.php:170
229
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
230
- msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen "
231
-
232
- #: includes/class-wcpdf-settings-general.php:177
233
- msgid "Extra field 2"
234
- msgstr "Ekstra felt 2"
235
-
236
- #: includes/class-wcpdf-settings-general.php:185
237
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
238
- msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen "
239
-
240
- #: includes/class-wcpdf-settings-general.php:192
241
- msgid "Extra field 3"
242
- msgstr "Ekstra felt 3"
243
-
244
- #: includes/class-wcpdf-settings-general.php:200
245
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
246
- msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen "
247
-
248
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
249
- msgid "PDF Invoices"
250
- msgstr "PDF fakturaer "
251
-
252
- #: includes/class-wcpdf-settings.php:58
253
- msgid "Settings"
254
- msgstr "Indstillinger "
255
-
256
- #: includes/class-wcpdf-settings.php:71
257
- msgid "Documentation"
258
- msgstr ""
259
-
260
- #: includes/class-wcpdf-settings.php:72
261
- msgid "Support Forum"
262
- msgstr ""
263
-
264
- #: includes/class-wcpdf-settings.php:83
265
- msgid "General"
266
- msgstr "Generelt "
267
-
268
- #: includes/class-wcpdf-settings.php:89
269
- msgid "Status"
270
- msgstr "Status"
271
-
272
- #: includes/compatibility/class-wc-core-compatibility.php:222
273
- msgid "WooCommerce"
274
- msgstr ""
275
-
276
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
277
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
278
- msgid "N/A"
279
- msgstr "N/A"
280
-
281
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
282
- msgid "Payment method"
283
- msgstr "Betaling"
284
-
285
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
286
- msgid "Shipping method"
287
- msgstr "Fragt"
288
-
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
290
- #, php-format
291
- msgid "(includes %s)"
292
- msgstr ""
293
-
294
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
295
- #, php-format
296
- msgid "(Includes %s)"
297
- msgstr ""
298
-
299
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
300
- msgid "Subtotal"
301
- msgstr "Subtotal"
302
-
303
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
304
- msgid "Shipping"
305
- msgstr "Fragt"
306
-
307
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
308
- msgid "Discount"
309
- msgstr "Rabat"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
312
- msgid "VAT"
313
- msgstr "Moms"
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
316
- msgid "Tax rate"
317
- msgstr "Moms"
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
320
- msgid "Total ex. VAT"
321
- msgstr "Total ex. moms"
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
324
- msgid "Total"
325
- msgstr "Total"
326
-
327
- #: includes/documents/abstract-wcpdf-order-document.php:674
328
- msgid "Admin email"
329
- msgstr ""
330
-
331
- #: includes/documents/abstract-wcpdf-order-document.php:677
332
- msgid "Manual email"
333
- msgstr ""
334
-
335
- # This is a filename (prefix). do not use spaces or special characters!
336
- #: includes/documents/class-wcpdf-invoice.php:85
337
- msgid "invoice"
338
- msgid_plural "invoices"
339
- msgstr[0] "Faktura"
340
- msgstr[1] "Fakturaen "
341
-
342
- #: includes/documents/class-wcpdf-invoice.php:130
343
- #: includes/documents/class-wcpdf-packing-slip.php:94
344
- msgid "Enable"
345
- msgstr ""
346
-
347
- #: includes/documents/class-wcpdf-invoice.php:141
348
- msgid "Attach to:"
349
- msgstr ""
350
-
351
- #: includes/documents/class-wcpdf-invoice.php:148
352
- #, php-format
353
- msgid ""
354
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
355
- "permissions for this folder! Without having write access to this folder, the "
356
- "plugin will not be able to email invoices."
357
- msgstr ""
358
- "Det ser ud som om at skabelon mappen (<code>%s</code>) ikke er skrivebar, "
359
- "kontrollere adgangskravene for denne mappe. Uden at have adgang til at "
360
- "redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
361
- "med fakturaer. "
362
-
363
- #: includes/documents/class-wcpdf-invoice.php:154
364
- msgid "Display shipping address"
365
- msgstr "Vis leveringsadresse"
366
-
367
- #: includes/documents/class-wcpdf-invoice.php:160
368
- msgid ""
369
- "Display shipping address (in addition to the default billing address) if "
370
- "different from billing address"
371
- msgstr ""
372
-
373
- #: includes/documents/class-wcpdf-invoice.php:166
374
- #: includes/documents/class-wcpdf-packing-slip.php:117
375
- msgid "Display email address"
376
- msgstr "Vis email adresse"
377
-
378
- #: includes/documents/class-wcpdf-invoice.php:177
379
- #: includes/documents/class-wcpdf-packing-slip.php:128
380
- msgid "Display phone number"
381
- msgstr "Vis telefon nummer"
382
-
383
- #: includes/documents/class-wcpdf-invoice.php:188
384
- msgid "Display invoice date"
385
- msgstr "Vis faktura dato"
386
-
387
- #: includes/documents/class-wcpdf-invoice.php:200
388
- msgid "Display invoice number"
389
- msgstr ""
390
-
391
- #: includes/documents/class-wcpdf-invoice.php:212
392
- msgid "Next invoice number (without prefix/suffix etc.)"
393
- msgstr "Næste faktura nummer (uden prefix/suffix mm.) "
394
-
395
- #: includes/documents/class-wcpdf-invoice.php:218
396
- msgid ""
397
- "This is the number that will be used for the next document. By default, "
398
- "numbering starts from 1 and increases for every new document. Note that if "
399
- "you override this and set it lower than the current/highest number, this "
400
- "could create duplicate numbers!"
401
- msgstr ""
402
-
403
- #: includes/documents/class-wcpdf-invoice.php:224
404
- msgid "Number format"
405
- msgstr ""
406
-
407
- #: includes/documents/class-wcpdf-invoice.php:232
408
- msgid "Prefix"
409
- msgstr "Prefix"
410
-
411
- #: includes/documents/class-wcpdf-invoice.php:234
412
- msgid ""
413
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
414
- "respectively"
415
- msgstr ""
416
-
417
- #: includes/documents/class-wcpdf-invoice.php:237
418
- msgid "Suffix"
419
- msgstr "Suffix "
420
-
421
- #: includes/documents/class-wcpdf-invoice.php:242
422
- msgid "Padding"
423
- msgstr "Padding "
424
-
425
- #: includes/documents/class-wcpdf-invoice.php:245
426
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
427
- msgstr ""
428
- "Indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
429
-
430
- #: includes/documents/class-wcpdf-invoice.php:248
431
- msgid ""
432
- "note: if you have already created a custom invoice number format with a "
433
- "filter, the above settings will be ignored"
434
- msgstr ""
435
- "Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
436
- "format med et filter, så vil denne indstillingen ovenover blive ignoreret. "
437
-
438
- #: includes/documents/class-wcpdf-invoice.php:254
439
- msgid "Reset invoice number yearly"
440
- msgstr ""
441
-
442
- #: includes/documents/class-wcpdf-invoice.php:265
443
- msgid "Allow My Account invoice download"
444
- msgstr "Tillad at downloade faktura via min konto"
445
-
446
- #: includes/documents/class-wcpdf-invoice.php:272
447
- msgid "Only when an invoice is already created/emailed"
448
- msgstr "Kun når en faktura allerede er oprettet/sendt på mail"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:273
451
- msgid "Only for specific order statuses (define below)"
452
- msgstr "Kun for specifikke ordre statusser (Definer nedenfor)"
453
-
454
- #: includes/documents/class-wcpdf-invoice.php:274
455
- msgid "Always"
456
- msgstr "Altid"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:275
459
- msgid "Never"
460
- msgstr ""
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:290
463
- msgid "Enable invoice number column in the orders list"
464
- msgstr "Aktiver faktura nummer kolonne i ordre listen "
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:301
467
- msgid "Disable for free products"
468
- msgstr "Deaktiver for gratis produkter"
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:307
471
- msgid ""
472
- "Disable automatic creation/attachment when only free products are ordered"
473
- msgstr ""
474
-
475
- #: includes/documents/class-wcpdf-invoice.php:321
476
- msgid "Invoice numbers are created by a third-party extension."
477
- msgstr ""
478
-
479
- #: includes/documents/class-wcpdf-invoice.php:323
480
- #, php-format
481
- msgid "Configure it <a href=\"%s\">here</a>."
482
- msgstr ""
483
-
484
- #: includes/documents/class-wcpdf-packing-slip.php:32
485
- #: includes/documents/class-wcpdf-packing-slip.php:41
486
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
487
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
488
- msgid "Packing Slip"
489
- msgstr "Følgeseddel "
490
-
491
- # This is a filename (prefix). do not use spaces or special characters!
492
- #: includes/documents/class-wcpdf-packing-slip.php:53
493
- msgid "packing-slip"
494
- msgid_plural "packing-slips"
495
- msgstr[0] "Følgeseddel "
496
- msgstr[1] "Følgesedler "
497
-
498
- #: includes/documents/class-wcpdf-packing-slip.php:105
499
- msgid "Display billing address"
500
- msgstr "Vis leveringsadresse"
501
-
502
- #: includes/documents/class-wcpdf-packing-slip.php:111
503
- msgid ""
504
- "Display billing address (in addition to the default shipping address) if "
505
- "different from shipping address"
506
- msgstr ""
507
-
508
- #: includes/legacy/class-wcpdf-legacy-document.php:32
509
- msgid "Legacy Document"
510
- msgstr ""
511
-
512
- #: includes/views/wcpdf-extensions.php:15
513
- msgid "Check out these premium extensions!"
514
- msgstr "Tjek disse Premium tilføjelser!"
515
-
516
- #: includes/views/wcpdf-extensions.php:16
517
- msgid "click items to read more"
518
- msgstr "klik på elementer for at læse mere"
519
-
520
- #: includes/views/wcpdf-extensions.php:21
521
- msgid ""
522
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
523
- "system"
524
- msgstr ""
525
-
526
- #: includes/views/wcpdf-extensions.php:23
527
- msgid ""
528
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
529
- "premium extensions:"
530
- msgstr ""
531
-
532
- #: includes/views/wcpdf-extensions.php:24
533
- msgid "Professional features:"
534
- msgstr ""
535
-
536
- #: includes/views/wcpdf-extensions.php:26
537
- #: includes/views/wcpdf-extensions.php:56
538
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
539
- msgstr "E-mail/print/download <b>PDF kreditnotaer & Proforma fakturaer</b>"
540
-
541
- #: includes/views/wcpdf-extensions.php:27
542
- #: includes/views/wcpdf-extensions.php:57
543
- msgid ""
544
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
545
- "packing slips, for example to a drop-shipper or a supplier."
546
- msgstr ""
547
- "Send en separat <b>e-mail</b> med (eller uden) PDF fakturaer/følgesedler, "
548
- "for eksempel til en fragtmand eller en leverandør."
549
-
550
- #: includes/views/wcpdf-extensions.php:28
551
- #: includes/views/wcpdf-extensions.php:58
552
- msgid ""
553
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
554
- "document) to the WooCommerce emails of your choice."
555
- msgstr ""
556
- "Vedhæft <b>op til 3 statiske filer</b> (f.eks. en vilkår & betingelser-"
557
- "dokument) til WooCommerce e-mails efter dit valg."
558
-
559
- #: includes/views/wcpdf-extensions.php:29
560
- #: includes/views/wcpdf-extensions.php:59
561
- msgid ""
562
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
563
- "and credit notes or utilize the main invoice numbering system"
564
- msgstr ""
565
- "Brug et <b>separat nummererings system</b> og/eller format for proforma "
566
- "fakturaer og kreditnotaer eller anvend de vigtigste faktura nummerering "
567
- "system"
568
-
569
- #: includes/views/wcpdf-extensions.php:30
570
- #: includes/views/wcpdf-extensions.php:60
571
- msgid ""
572
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
573
- "additional custom fields, font sizes etc. without the need to create a "
574
- "custom template."
575
- msgstr ""
576
- "<b>Tilpas</b> <b>levering & fakturerings adresse</b> format til at medtage "
577
- "brugerdefinerede felter, skriftstørrelser osv uden at skulle oprette en "
578
- "brugerdefineret skabelon."
579
-
580
- #: includes/views/wcpdf-extensions.php:31
581
- #: includes/views/wcpdf-extensions.php:61
582
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
583
- msgstr "Brug dette plugin i flersprogede <b>WPML</b> opsætninger"
584
-
585
- #: includes/views/wcpdf-extensions.php:33
586
- #: includes/views/wcpdf-extensions.php:131
587
- msgid "Advanced, customizable templates"
588
- msgstr ""
589
-
590
- #: includes/views/wcpdf-extensions.php:35
591
- #: includes/views/wcpdf-extensions.php:134
592
- msgid ""
593
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
594
- "your needs with a drag & drop customizer"
595
- msgstr ""
596
-
597
- #: includes/views/wcpdf-extensions.php:36
598
- #: includes/views/wcpdf-extensions.php:135
599
- msgid "Two extra stylish premade templates (Modern & Business)"
600
- msgstr ""
601
-
602
- #: includes/views/wcpdf-extensions.php:38
603
- msgid "Upload automatically to dropbox"
604
- msgstr ""
605
-
606
- #: includes/views/wcpdf-extensions.php:40
607
- #: includes/views/wcpdf-extensions.php:97
608
- msgid ""
609
- "This extension conveniently uploads all the invoices (and other pdf "
610
- "documents from the professional extension) that are emailed to your "
611
- "customers to Dropbox. The best way to keep your invoice administration up to "
612
- "date!"
613
- msgstr ""
614
- "Denne udvidelse uploader alle fakturaer (og andre PDF-dokumenter fra den "
615
- "professionelle udvidelse), der er sendt til din kunder til Dropbox. Den "
616
- "bedste måde at holde din faktura administration opdateret!"
617
-
618
- #: includes/views/wcpdf-extensions.php:43
619
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
620
- msgstr ""
621
-
622
- #: includes/views/wcpdf-extensions.php:52
623
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
624
- msgstr "Go Pro: Proforma fakturaer, kreditnotaer (=tilbagebetaling) og mere!"
625
-
626
- #: includes/views/wcpdf-extensions.php:54
627
- msgid ""
628
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
629
- "features:"
630
- msgstr ""
631
- "Opgrader WooCommerce PDF-fakturaer & følgesedler med følgende funktioner:"
632
-
633
- #: includes/views/wcpdf-extensions.php:63
634
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
635
- msgstr "Få WooCommerce PDF-fakturaer & følgesedler Professional!"
636
-
637
- #: includes/views/wcpdf-extensions.php:71
638
- msgid "Automatically send payment reminders to your customers"
639
- msgstr ""
640
-
641
- #: includes/views/wcpdf-extensions.php:73
642
- msgid "WooCommerce Smart Reminder emails"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:75
646
- msgid "<b>Completely automatic</b> scheduled emails"
647
- msgstr ""
648
-
649
- #: includes/views/wcpdf-extensions.php:76
650
- msgid ""
651
- "<b>Rich text editor</b> for the email text, including placeholders for data "
652
- "from the order (name, order total, etc)"
653
- msgstr ""
654
-
655
- #: includes/views/wcpdf-extensions.php:77
656
- msgid ""
657
- "Configure the exact requirements for sending an email (time after order, "
658
- "order status, payment method)"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:78
662
- msgid ""
663
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
664
- "order language."
665
- msgstr ""
666
-
667
- #: includes/views/wcpdf-extensions.php:79
668
- msgid ""
669
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
670
- "reminders, repeat purchases)"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:80
674
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
675
- msgstr ""
676
-
677
- #: includes/views/wcpdf-extensions.php:82
678
- msgid "Get WooCommerce Smart Reminder Emails"
679
- msgstr ""
680
-
681
- #: includes/views/wcpdf-extensions.php:91
682
- msgid "Upload all invoices automatically to your dropbox"
683
- msgstr "Upload alle fakturaer automatisk til din Dropbox!"
684
-
685
- #: includes/views/wcpdf-extensions.php:98
686
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
687
- msgstr "Få WooCommerce PDF Fakturaer & pakkesedler til dropbox!"
688
-
689
- #: includes/views/wcpdf-extensions.php:110
690
- msgid ""
691
- "Automatically send new orders or packing slips to your printer, as soon as "
692
- "the customer orders!"
693
- msgstr ""
694
- "Send automatisk nye ordrer eller pakkesedler til din printer, så snart "
695
- "kunden bestiller!"
696
-
697
- #: includes/views/wcpdf-extensions.php:116
698
- msgid ""
699
- "Check out the WooCommerce Automatic Order Printing extension from our "
700
- "partners at Simba Hosting"
701
- msgstr ""
702
- "Tjek WooCommerce Automatisk ordre udskrft udvidelse ud fra vores partnere på "
703
- "Simba Hosting"
704
-
705
- #: includes/views/wcpdf-extensions.php:117
706
- msgid "WooCommerce Automatic Order Printing"
707
- msgstr "WooCommerce automatisk ordre udskrift"
708
-
709
- #: includes/views/wcpdf-extensions.php:136
710
- #, php-format
711
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
712
- msgstr "Se Premium PDF faktura & pakkesedler skabeloner på %s."
713
-
714
- #: includes/views/wcpdf-extensions.php:137
715
- #, php-format
716
- msgid "For custom templates, contact us at %s."
717
- msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
718
-
719
- #: includes/views/wcpdf-extensions.php:146
720
- msgid "Hide this message"
721
- msgstr ""
722
-
723
- #: includes/views/wcpdf-settings-page.php:8
724
- msgid "WooCommerce PDF Invoices"
725
- msgstr "WooCommerce PDF faktura"
726
-
727
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
728
- msgid "Billing Address:"
729
- msgstr "Faktureringsadresse"
730
-
731
- #: templates/Simple/invoice.php:41
732
- msgid "Ship To:"
733
- msgstr "Leveringsadresse:"
734
-
735
- #: templates/Simple/invoice.php:50
736
- msgid "Invoice Number:"
737
- msgstr "Fakturanummer: "
738
-
739
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
740
- msgid "Order Number:"
741
- msgstr "Ordrenummer:"
742
-
743
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
744
- msgid "Order Date:"
745
- msgstr "Ordredato: "
746
-
747
- #: templates/Simple/invoice.php:69
748
- msgid "Payment Method:"
749
- msgstr "Betaling: "
750
-
751
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
752
- msgid "Product"
753
- msgstr "Produkt"
754
-
755
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
756
- msgid "Quantity"
757
- msgstr "Antal "
758
-
759
- #: templates/Simple/invoice.php:85
760
- msgid "Price"
761
- msgstr "Pris"
762
-
763
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
764
- msgid "Description"
765
- msgstr "Beskrivelse "
766
-
767
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
768
- msgid "SKU"
769
- msgstr "Varenummer"
770
-
771
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
772
- msgid "SKU:"
773
- msgstr "Varenummer: "
774
-
775
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
776
- msgid "Weight:"
777
- msgstr "Vægt: "
778
-
779
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
780
- msgid "Customer Notes"
781
- msgstr "Kunde bemærkning"
782
-
783
- #: templates/Simple/packing-slip.php:30
784
- msgid "Shipping Address:"
785
- msgstr "Leveringsadresse"
786
-
787
- #: templates/Simple/packing-slip.php:57
788
- msgid "Shipping Method:"
789
- msgstr "Leveringsmetode:"
790
-
791
- #: woocommerce-pdf-invoices-packingslips.php:231
792
- #, php-format
793
- msgid ""
794
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
795
- "installed & activated!"
796
- msgstr ""
797
- "WooCommerce PDF faktura & følgeseddel kræver at %sWooCommerce%s er "
798
- "installeret og aktiveret! "
799
-
800
- #: woocommerce-pdf-invoices-packingslips.php:243
801
- msgid ""
802
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
803
- "higher recommended)."
804
- msgstr ""
805
-
806
- #: woocommerce-pdf-invoices-packingslips.php:244
807
- msgid "How to update your PHP version"
808
- msgstr ""
809
-
810
- #~ msgid "Attach invoice to:"
811
- #~ msgstr "Vedhæft fakturaen til: "
812
-
813
- #~ msgid ""
814
- #~ "Display shipping address on invoice (in addition to the default billing "
815
- #~ "address) if different from billing address"
816
- #~ msgstr ""
817
- #~ "Vis leveringsadresse på faktura (ud over standard faktureringsadresse) "
818
- #~ "hvis den er forskellig fra faktureringsadressen"
819
-
820
- #~ msgid ""
821
- #~ "This is the number that will be used on the next invoice that is created. "
822
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
823
- #~ "first invoice that is created and increases for every new invoice. Note "
824
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
825
- #~ "number, this could create double invoice numbers!"
826
- #~ msgstr ""
827
- #~ "Dette er nummeret som vil blive brugt på den næste faktura. Som standard "
828
- #~ "starter numrene fra WooCommerce ordre nummer for den første faktura der "
829
- #~ "bliver oprettet og stiger med en for hver ny faktura. Bemærk: Hvis du "
830
- #~ "tilsidesætter dette og sætter den lavere end den højeste (PDF) "
831
- #~ "fakturanummer, kan dette skabe dobbelt fakturanumre. "
832
-
833
- #~ msgid "Invoice number format"
834
- #~ msgstr "Fakturanummer format "
835
-
836
- #~ msgid ""
837
- #~ "Disable automatic creation/attachment of invoices when only free products "
838
- #~ "are ordered"
839
- #~ msgstr ""
840
- #~ "Deaktiver automatisk oprettelse/fastgørelse af fakturaer, når kun gratis "
841
- #~ "produkter er bestilt"
842
-
843
- #~ msgid ""
844
- #~ "Display billing address on packing slip (in addition to the default "
845
- #~ "shipping address) if different from shipping address"
846
- #~ msgstr ""
847
- #~ "Vis faktureringsadresse på følgeseddel (ud over standard "
848
- #~ "leveringsadresse) hvis forskellig fra leveringsadresse"
849
-
850
- #~ msgid "Template"
851
- #~ msgstr "Skabelon "
852
-
853
- #~ msgid "Admin New Order email"
854
- #~ msgstr "Admin ny ordre e-mail"
855
-
856
- #~ msgid "Customer Processing Order email"
857
- #~ msgstr "Kunde behandler ordre e-mail"
858
-
859
- #~ msgid "Customer Completed Order email"
860
- #~ msgstr "Kunde fuldført ordre e-mail "
861
-
862
- #~ msgid "Customer Invoice email"
863
- #~ msgstr "Kunde faktura e-mail"
864
-
865
- #~ msgid "Interface"
866
- #~ msgstr "Grænseflade"
867
-
868
- #~ msgid "PDF Template settings"
869
- #~ msgstr "PDF skabelon indstillinger "
870
-
871
- #~ msgid "Display built-in sequential invoice number"
872
- #~ msgstr "Vis indbygget sekventiel faktura nummer"
873
-
874
- #~ msgid ""
875
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
876
- #~ "respectively"
877
- #~ msgstr ""
878
- #~ "for at bruge ordre år og/eller måned, brug [order_year] eller "
879
- #~ "[order_month]. "
880
-
881
- #~ msgid "Use old tmp folder"
882
- #~ msgstr "Brug gammel tmp mappe"
883
-
884
- #~ msgid ""
885
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
886
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
887
- #~ "not recommended on new installs!"
888
- #~ msgstr ""
889
- #~ "Før version 1.5 af PDF fakturaer blev midlertidige filer gemt i plugin "
890
- #~ "mappen. Denne indstilling er kun beregnet til bagudkompatibilitet, "
891
- #~ "anbefales ikke på nye installationer!"
892
-
893
- #~ msgid "PDF Packing Slips"
894
- #~ msgstr "PDF følgesedler "
895
-
896
- #~ msgid "PDF Invoice"
897
- #~ msgstr "PDF Faktura"
898
-
899
- #~ msgid "PDF Packing Slip"
900
- #~ msgstr "PDF følgeseddel "
901
-
902
- #~ msgid "PDF Invoice Number (unformatted!)"
903
- #~ msgstr "PDF faktura nummer (uformateret!)"
904
-
905
- #~ msgid "More advanced templates"
906
- #~ msgstr "Flere avancerede skabeloner"
907
-
908
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
909
- #~ msgstr "Stilfuldt moderne fakturaer og følgesedler med produkt- thumbnails!"
910
-
911
- #~ msgid "More tax details on the invoices!"
912
- #~ msgstr "Flere moms detaljer på fakturaer!"
913
-
914
- #~ msgid ""
915
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
916
- #~ "extension."
917
- #~ msgstr ""
918
- #~ "Upload alle fakturaer automatisk til din Dropbox! <br/> Tjek denne %s "
919
- #~ "udvidelse "
920
-
921
- #~ msgid ""
922
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
923
- #~ "Packing Slips templates at %s."
924
- #~ msgstr ""
925
- #~ "Leder du efter flere avancerede skabeloner? Se Premium PDF Invoice & "
926
- #~ "Packing Slips templates ved %s."
927
-
928
- #~ msgid ""
929
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
930
- #~ "<code>%s</code> to customize them"
931
- #~ msgstr ""
932
- #~ "Ønsker du at benytte din egen skabelon? Kopier alle filerne fra <code>%s</"
933
- #~ "code> til <code>%s</code> for at tilpasse den"
934
-
935
- #~ msgid "Number to display on invoice"
936
- #~ msgstr "Nummer der vises på fakturaen "
937
-
938
- #~ msgid "WooCommerce order number"
939
- #~ msgstr "WooCommerce ordre nummer "
940
-
941
- #~ msgid "Built-in sequential invoice number"
942
- #~ msgstr "Indbygget sekventiel faktura nummer"
943
-
944
- #~ msgid ""
945
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
946
- #~ "the WooCommerce order number"
947
- #~ msgstr ""
948
- #~ "Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
949
- #~ "WooCommerce ordre nummer "
950
-
951
- #~ msgid "Date to display on invoice"
952
- #~ msgstr "Dato der skal vises på fakturaerne "
953
-
954
- #~ msgid "Order date"
955
- #~ msgstr "Ordredato"
956
-
957
- #~ msgid "Invoice date"
958
- #~ msgstr "Fakturadato"
959
-
960
- #~ msgid "PDF invoice"
961
- #~ msgstr "PDF faktura "
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: Daniel Hedegaard Arp <daniel@eurosite.dk>\n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: da_DK\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Fakturanummer "
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Opret PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Faktura "
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Fakturadato: "
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "t"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "m"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Hent faktura (PDF) "
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "Du har ikke tilstrækkelig tilladelse til at tilgå denne side. "
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "Nogle af parametrene for eksport mangler."
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<b>Advarsel!</b> Indstillingerne nedenfor er kun beregnet for fejlfinding/"
79
+ "udvikling. Brug dem ikke på et live websted!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr "Disse bruges (valgfrit)"
87
+
88
+ #: includes/class-wcpdf-settings-callbacks.php:301
89
+ msgid "Image resolution"
90
+ msgstr "Billede opløsning"
91
+
92
+ #: includes/class-wcpdf-settings-callbacks.php:325
93
+ msgid "Save"
94
+ msgstr ""
95
+
96
+ #: includes/class-wcpdf-settings-debug.php:34
97
+ msgid "Debug settings"
98
+ msgstr "debug indstillinger"
99
+
100
+ #: includes/class-wcpdf-settings-debug.php:40
101
+ msgid "Legacy mode"
102
+ msgstr ""
103
+
104
+ #: includes/class-wcpdf-settings-debug.php:46
105
+ msgid ""
106
+ "Legacy mode ensures compatibility with templates and filters from previous "
107
+ "versions."
108
+ msgstr ""
109
+
110
+ #: includes/class-wcpdf-settings-debug.php:52
111
+ msgid "Enable debug output"
112
+ msgstr "Aktiver debug output"
113
+
114
+ #: includes/class-wcpdf-settings-debug.php:58
115
+ msgid ""
116
+ "Enable this option to output plugin errors if you're getting a blank page or "
117
+ "other PDF generation issues"
118
+ msgstr ""
119
+ "Aktivér denne indstilling for output plugin fejl, hvis du får en blank side "
120
+ "eller andre PDF generations problemstillinger"
121
+
122
+ #: includes/class-wcpdf-settings-debug.php:64
123
+ msgid "Output to HTML"
124
+ msgstr "Output til HTML"
125
+
126
+ #: includes/class-wcpdf-settings-debug.php:70
127
+ msgid ""
128
+ "Send the template output as HTML to the browser instead of creating a PDF."
129
+ msgstr ""
130
+ "Send skabelonen outputtet som HTML til browseren i stedet for at lave en PDF."
131
+
132
+ #: includes/class-wcpdf-settings-documents.php:29
133
+ #: includes/class-wcpdf-settings.php:84
134
+ msgid "Documents"
135
+ msgstr ""
136
+
137
+ #: includes/class-wcpdf-settings-documents.php:45
138
+ msgid ""
139
+ "All available documents are listed below. Click on a document to configure "
140
+ "it."
141
+ msgstr ""
142
+
143
+ #: includes/class-wcpdf-settings-general.php:37
144
+ msgid "General settings"
145
+ msgstr "Generelle indstillinger "
146
+
147
+ #: includes/class-wcpdf-settings-general.php:43
148
+ msgid "How do you want to view the PDF?"
149
+ msgstr "Hvordan ønsker du at vise PDF'en?"
150
+
151
+ #: includes/class-wcpdf-settings-general.php:50
152
+ msgid "Download the PDF"
153
+ msgstr "Hent PDF'en"
154
+
155
+ #: includes/class-wcpdf-settings-general.php:51
156
+ msgid "Open the PDF in a new browser tab/window"
157
+ msgstr "Åben PDF'en i en ny browser fane/vindue "
158
+
159
+ #: includes/class-wcpdf-settings-general.php:58
160
+ msgid "Choose a template"
161
+ msgstr "Vælg en skabelon"
162
+
163
+ #: includes/class-wcpdf-settings-general.php:65
164
+ #, php-format
165
+ msgid ""
166
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
167
+ "your (child) theme in <code>%s</code> to customize them"
168
+ msgstr ""
169
+ "Vil du bruge din egen skabelon? Kopier alle filer fra <code>%s</code> til "
170
+ "din (barn) tema i <code>%s</code> at tilpasse dem."
171
+
172
+ #: includes/class-wcpdf-settings-general.php:71
173
+ msgid "Paper size"
174
+ msgstr "Papir størrelse "
175
+
176
+ #: includes/class-wcpdf-settings-general.php:78
177
+ msgid "A4"
178
+ msgstr "A4"
179
+
180
+ #: includes/class-wcpdf-settings-general.php:79
181
+ msgid "Letter"
182
+ msgstr "Brev"
183
+
184
+ #: includes/class-wcpdf-settings-general.php:86
185
+ msgid "Extended currency symbol support"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-settings-general.php:92
189
+ msgid "Enable this if your currency symbol is not displaying properly"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-settings-general.php:98
193
+ msgid "Shop header/logo"
194
+ msgstr "Butik header/logo "
195
+
196
+ #: includes/class-wcpdf-settings-general.php:104
197
+ msgid "Select or upload your invoice header/logo"
198
+ msgstr "Vælg eller upload dit faktura header/logo"
199
+
200
+ #: includes/class-wcpdf-settings-general.php:105
201
+ msgid "Set image"
202
+ msgstr "Indstil billedet "
203
+
204
+ #: includes/class-wcpdf-settings-general.php:106
205
+ msgid "Remove image"
206
+ msgstr "Fjern billede"
207
+
208
+ #: includes/class-wcpdf-settings-general.php:113
209
+ msgid "Shop Name"
210
+ msgstr "Butik navn"
211
+
212
+ #: includes/class-wcpdf-settings-general.php:126
213
+ msgid "Shop Address"
214
+ msgstr "Butik adresse "
215
+
216
+ #: includes/class-wcpdf-settings-general.php:141
217
+ msgid "Footer: terms & conditions, policies, etc."
218
+ msgstr "Sidefod: Vilkår & betingelser, politikker mm. "
219
+
220
+ #: includes/class-wcpdf-settings-general.php:156
221
+ msgid "Extra template fields"
222
+ msgstr "Ekstra skabelons felter "
223
+
224
+ #: includes/class-wcpdf-settings-general.php:162
225
+ msgid "Extra field 1"
226
+ msgstr "Ekstra felt 1"
227
+
228
+ #: includes/class-wcpdf-settings-general.php:170
229
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
230
+ msgstr "Dette er sidefon kolonne 1 i <i>Modern (Premium)</i> skabelonen "
231
+
232
+ #: includes/class-wcpdf-settings-general.php:177
233
+ msgid "Extra field 2"
234
+ msgstr "Ekstra felt 2"
235
+
236
+ #: includes/class-wcpdf-settings-general.php:185
237
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
238
+ msgstr "Dette er sidefod kolonne 2 i <i>Modern (Premium)</i> skabelonen "
239
+
240
+ #: includes/class-wcpdf-settings-general.php:192
241
+ msgid "Extra field 3"
242
+ msgstr "Ekstra felt 3"
243
+
244
+ #: includes/class-wcpdf-settings-general.php:200
245
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
246
+ msgstr "Dette er sidefod kolonne 3 i <i>Modern (Premium)</i> skabelonen "
247
+
248
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
249
+ msgid "PDF Invoices"
250
+ msgstr "PDF fakturaer "
251
+
252
+ #: includes/class-wcpdf-settings.php:58
253
+ msgid "Settings"
254
+ msgstr "Indstillinger "
255
+
256
+ #: includes/class-wcpdf-settings.php:71
257
+ msgid "Documentation"
258
+ msgstr ""
259
+
260
+ #: includes/class-wcpdf-settings.php:72
261
+ msgid "Support Forum"
262
+ msgstr ""
263
+
264
+ #: includes/class-wcpdf-settings.php:83
265
+ msgid "General"
266
+ msgstr "Generelt "
267
+
268
+ #: includes/class-wcpdf-settings.php:89
269
+ msgid "Status"
270
+ msgstr "Status"
271
+
272
+ #: includes/compatibility/class-wc-core-compatibility.php:222
273
+ msgid "WooCommerce"
274
+ msgstr ""
275
+
276
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
277
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
278
+ msgid "N/A"
279
+ msgstr "N/A"
280
+
281
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
282
+ msgid "Payment method"
283
+ msgstr "Betaling"
284
+
285
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
286
+ msgid "Shipping method"
287
+ msgstr "Fragt"
288
+
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
290
+ #, php-format
291
+ msgid "(includes %s)"
292
+ msgstr ""
293
+
294
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
295
+ #, php-format
296
+ msgid "(Includes %s)"
297
+ msgstr ""
298
+
299
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
300
+ msgid "Subtotal"
301
+ msgstr "Subtotal"
302
+
303
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
304
+ msgid "Shipping"
305
+ msgstr "Fragt"
306
+
307
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
308
+ msgid "Discount"
309
+ msgstr "Rabat"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
312
+ msgid "VAT"
313
+ msgstr "Moms"
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
316
+ msgid "Tax rate"
317
+ msgstr "Moms"
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
320
+ msgid "Total ex. VAT"
321
+ msgstr "Total ex. moms"
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
324
+ msgid "Total"
325
+ msgstr "Total"
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document.php:674
328
+ msgid "Admin email"
329
+ msgstr ""
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document.php:677
332
+ msgid "Manual email"
333
+ msgstr ""
334
+
335
+ # This is a filename (prefix). do not use spaces or special characters!
336
+ #: includes/documents/class-wcpdf-invoice.php:85
337
+ msgid "invoice"
338
+ msgid_plural "invoices"
339
+ msgstr[0] "Faktura"
340
+ msgstr[1] "Fakturaen "
341
+
342
+ #: includes/documents/class-wcpdf-invoice.php:130
343
+ #: includes/documents/class-wcpdf-packing-slip.php:94
344
+ msgid "Enable"
345
+ msgstr ""
346
+
347
+ #: includes/documents/class-wcpdf-invoice.php:141
348
+ msgid "Attach to:"
349
+ msgstr ""
350
+
351
+ #: includes/documents/class-wcpdf-invoice.php:148
352
+ #, php-format
353
+ msgid ""
354
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
355
+ "permissions for this folder! Without having write access to this folder, the "
356
+ "plugin will not be able to email invoices."
357
+ msgstr ""
358
+ "Det ser ud som om at skabelon mappen (<code>%s</code>) ikke er skrivebar, "
359
+ "kontrollere adgangskravene for denne mappe. Uden at have adgang til at "
360
+ "redigere i mappen, vil dette plugin ikke være i stand til at sende e-mails "
361
+ "med fakturaer. "
362
+
363
+ #: includes/documents/class-wcpdf-invoice.php:154
364
+ msgid "Display shipping address"
365
+ msgstr "Vis leveringsadresse"
366
+
367
+ #: includes/documents/class-wcpdf-invoice.php:160
368
+ msgid ""
369
+ "Display shipping address (in addition to the default billing address) if "
370
+ "different from billing address"
371
+ msgstr ""
372
+
373
+ #: includes/documents/class-wcpdf-invoice.php:166
374
+ #: includes/documents/class-wcpdf-packing-slip.php:117
375
+ msgid "Display email address"
376
+ msgstr "Vis email adresse"
377
+
378
+ #: includes/documents/class-wcpdf-invoice.php:177
379
+ #: includes/documents/class-wcpdf-packing-slip.php:128
380
+ msgid "Display phone number"
381
+ msgstr "Vis telefon nummer"
382
+
383
+ #: includes/documents/class-wcpdf-invoice.php:188
384
+ msgid "Display invoice date"
385
+ msgstr "Vis faktura dato"
386
+
387
+ #: includes/documents/class-wcpdf-invoice.php:200
388
+ msgid "Display invoice number"
389
+ msgstr ""
390
+
391
+ #: includes/documents/class-wcpdf-invoice.php:212
392
+ msgid "Next invoice number (without prefix/suffix etc.)"
393
+ msgstr "Næste faktura nummer (uden prefix/suffix mm.) "
394
+
395
+ #: includes/documents/class-wcpdf-invoice.php:218
396
+ msgid ""
397
+ "This is the number that will be used for the next document. By default, "
398
+ "numbering starts from 1 and increases for every new document. Note that if "
399
+ "you override this and set it lower than the current/highest number, this "
400
+ "could create duplicate numbers!"
401
+ msgstr ""
402
+
403
+ #: includes/documents/class-wcpdf-invoice.php:224
404
+ msgid "Number format"
405
+ msgstr ""
406
+
407
+ #: includes/documents/class-wcpdf-invoice.php:232
408
+ msgid "Prefix"
409
+ msgstr "Prefix"
410
+
411
+ #: includes/documents/class-wcpdf-invoice.php:234
412
+ msgid ""
413
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
414
+ "respectively"
415
+ msgstr ""
416
+
417
+ #: includes/documents/class-wcpdf-invoice.php:237
418
+ msgid "Suffix"
419
+ msgstr "Suffix "
420
+
421
+ #: includes/documents/class-wcpdf-invoice.php:242
422
+ msgid "Padding"
423
+ msgstr "Padding "
424
+
425
+ #: includes/documents/class-wcpdf-invoice.php:245
426
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
427
+ msgstr ""
428
+ "Indtast nummeret af cifre her - indtast \"6\" for at vise 42 som 000042"
429
+
430
+ #: includes/documents/class-wcpdf-invoice.php:248
431
+ msgid ""
432
+ "note: if you have already created a custom invoice number format with a "
433
+ "filter, the above settings will be ignored"
434
+ msgstr ""
435
+ "Bemærk: Hvis du allerede har oprettet et brugerdefinerede fakturanummer "
436
+ "format med et filter, så vil denne indstillingen ovenover blive ignoreret. "
437
+
438
+ #: includes/documents/class-wcpdf-invoice.php:254
439
+ msgid "Reset invoice number yearly"
440
+ msgstr ""
441
+
442
+ #: includes/documents/class-wcpdf-invoice.php:265
443
+ msgid "Allow My Account invoice download"
444
+ msgstr "Tillad at downloade faktura via min konto"
445
+
446
+ #: includes/documents/class-wcpdf-invoice.php:272
447
+ msgid "Only when an invoice is already created/emailed"
448
+ msgstr "Kun når en faktura allerede er oprettet/sendt på mail"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:273
451
+ msgid "Only for specific order statuses (define below)"
452
+ msgstr "Kun for specifikke ordre statusser (Definer nedenfor)"
453
+
454
+ #: includes/documents/class-wcpdf-invoice.php:274
455
+ msgid "Always"
456
+ msgstr "Altid"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:275
459
+ msgid "Never"
460
+ msgstr ""
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:290
463
+ msgid "Enable invoice number column in the orders list"
464
+ msgstr "Aktiver faktura nummer kolonne i ordre listen "
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:301
467
+ msgid "Disable for free products"
468
+ msgstr "Deaktiver for gratis produkter"
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:307
471
+ msgid ""
472
+ "Disable automatic creation/attachment when only free products are ordered"
473
+ msgstr ""
474
+
475
+ #: includes/documents/class-wcpdf-invoice.php:321
476
+ msgid "Invoice numbers are created by a third-party extension."
477
+ msgstr ""
478
+
479
+ #: includes/documents/class-wcpdf-invoice.php:323
480
+ #, php-format
481
+ msgid "Configure it <a href=\"%s\">here</a>."
482
+ msgstr ""
483
+
484
+ #: includes/documents/class-wcpdf-packing-slip.php:32
485
+ #: includes/documents/class-wcpdf-packing-slip.php:41
486
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
487
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
488
+ msgid "Packing Slip"
489
+ msgstr "Følgeseddel "
490
+
491
+ # This is a filename (prefix). do not use spaces or special characters!
492
+ #: includes/documents/class-wcpdf-packing-slip.php:53
493
+ msgid "packing-slip"
494
+ msgid_plural "packing-slips"
495
+ msgstr[0] "Følgeseddel "
496
+ msgstr[1] "Følgesedler "
497
+
498
+ #: includes/documents/class-wcpdf-packing-slip.php:105
499
+ msgid "Display billing address"
500
+ msgstr "Vis leveringsadresse"
501
+
502
+ #: includes/documents/class-wcpdf-packing-slip.php:111
503
+ msgid ""
504
+ "Display billing address (in addition to the default shipping address) if "
505
+ "different from shipping address"
506
+ msgstr ""
507
+
508
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
509
+ msgid "Legacy Document"
510
+ msgstr ""
511
+
512
+ #: includes/views/wcpdf-extensions.php:15
513
+ msgid "Check out these premium extensions!"
514
+ msgstr "Tjek disse Premium tilføjelser!"
515
+
516
+ #: includes/views/wcpdf-extensions.php:16
517
+ msgid "click items to read more"
518
+ msgstr "klik på elementer for at læse mere"
519
+
520
+ #: includes/views/wcpdf-extensions.php:21
521
+ msgid ""
522
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
523
+ "system"
524
+ msgstr ""
525
+
526
+ #: includes/views/wcpdf-extensions.php:23
527
+ msgid ""
528
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
529
+ "premium extensions:"
530
+ msgstr ""
531
+
532
+ #: includes/views/wcpdf-extensions.php:24
533
+ msgid "Professional features:"
534
+ msgstr ""
535
+
536
+ #: includes/views/wcpdf-extensions.php:26
537
+ #: includes/views/wcpdf-extensions.php:56
538
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
539
+ msgstr "E-mail/print/download <b>PDF kreditnotaer & Proforma fakturaer</b>"
540
+
541
+ #: includes/views/wcpdf-extensions.php:27
542
+ #: includes/views/wcpdf-extensions.php:57
543
+ msgid ""
544
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
545
+ "packing slips, for example to a drop-shipper or a supplier."
546
+ msgstr ""
547
+ "Send en separat <b>e-mail</b> med (eller uden) PDF fakturaer/følgesedler, "
548
+ "for eksempel til en fragtmand eller en leverandør."
549
+
550
+ #: includes/views/wcpdf-extensions.php:28
551
+ #: includes/views/wcpdf-extensions.php:58
552
+ msgid ""
553
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
554
+ "document) to the WooCommerce emails of your choice."
555
+ msgstr ""
556
+ "Vedhæft <b>op til 3 statiske filer</b> (f.eks. en vilkår & betingelser-"
557
+ "dokument) til WooCommerce e-mails efter dit valg."
558
+
559
+ #: includes/views/wcpdf-extensions.php:29
560
+ #: includes/views/wcpdf-extensions.php:59
561
+ msgid ""
562
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
563
+ "and credit notes or utilize the main invoice numbering system"
564
+ msgstr ""
565
+ "Brug et <b>separat nummererings system</b> og/eller format for proforma "
566
+ "fakturaer og kreditnotaer eller anvend de vigtigste faktura nummerering "
567
+ "system"
568
+
569
+ #: includes/views/wcpdf-extensions.php:30
570
+ #: includes/views/wcpdf-extensions.php:60
571
+ msgid ""
572
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
573
+ "additional custom fields, font sizes etc. without the need to create a "
574
+ "custom template."
575
+ msgstr ""
576
+ "<b>Tilpas</b> <b>levering & fakturerings adresse</b> format til at medtage "
577
+ "brugerdefinerede felter, skriftstørrelser osv uden at skulle oprette en "
578
+ "brugerdefineret skabelon."
579
+
580
+ #: includes/views/wcpdf-extensions.php:31
581
+ #: includes/views/wcpdf-extensions.php:61
582
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
583
+ msgstr "Brug dette plugin i flersprogede <b>WPML</b> opsætninger"
584
+
585
+ #: includes/views/wcpdf-extensions.php:33
586
+ #: includes/views/wcpdf-extensions.php:131
587
+ msgid "Advanced, customizable templates"
588
+ msgstr ""
589
+
590
+ #: includes/views/wcpdf-extensions.php:35
591
+ #: includes/views/wcpdf-extensions.php:134
592
+ msgid ""
593
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
594
+ "your needs with a drag & drop customizer"
595
+ msgstr ""
596
+
597
+ #: includes/views/wcpdf-extensions.php:36
598
+ #: includes/views/wcpdf-extensions.php:135
599
+ msgid "Two extra stylish premade templates (Modern & Business)"
600
+ msgstr ""
601
+
602
+ #: includes/views/wcpdf-extensions.php:38
603
+ msgid "Upload automatically to dropbox"
604
+ msgstr ""
605
+
606
+ #: includes/views/wcpdf-extensions.php:40
607
+ #: includes/views/wcpdf-extensions.php:97
608
+ msgid ""
609
+ "This extension conveniently uploads all the invoices (and other pdf "
610
+ "documents from the professional extension) that are emailed to your "
611
+ "customers to Dropbox. The best way to keep your invoice administration up to "
612
+ "date!"
613
+ msgstr ""
614
+ "Denne udvidelse uploader alle fakturaer (og andre PDF-dokumenter fra den "
615
+ "professionelle udvidelse), der er sendt til din kunder til Dropbox. Den "
616
+ "bedste måde at holde din faktura administration opdateret!"
617
+
618
+ #: includes/views/wcpdf-extensions.php:43
619
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
620
+ msgstr ""
621
+
622
+ #: includes/views/wcpdf-extensions.php:52
623
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
624
+ msgstr "Go Pro: Proforma fakturaer, kreditnotaer (=tilbagebetaling) og mere!"
625
+
626
+ #: includes/views/wcpdf-extensions.php:54
627
+ msgid ""
628
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
629
+ "features:"
630
+ msgstr ""
631
+ "Opgrader WooCommerce PDF-fakturaer & følgesedler med følgende funktioner:"
632
+
633
+ #: includes/views/wcpdf-extensions.php:63
634
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
635
+ msgstr "Få WooCommerce PDF-fakturaer & følgesedler Professional!"
636
+
637
+ #: includes/views/wcpdf-extensions.php:71
638
+ msgid "Automatically send payment reminders to your customers"
639
+ msgstr ""
640
+
641
+ #: includes/views/wcpdf-extensions.php:73
642
+ msgid "WooCommerce Smart Reminder emails"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:75
646
+ msgid "<b>Completely automatic</b> scheduled emails"
647
+ msgstr ""
648
+
649
+ #: includes/views/wcpdf-extensions.php:76
650
+ msgid ""
651
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
652
+ "from the order (name, order total, etc)"
653
+ msgstr ""
654
+
655
+ #: includes/views/wcpdf-extensions.php:77
656
+ msgid ""
657
+ "Configure the exact requirements for sending an email (time after order, "
658
+ "order status, payment method)"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:78
662
+ msgid ""
663
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
664
+ "order language."
665
+ msgstr ""
666
+
667
+ #: includes/views/wcpdf-extensions.php:79
668
+ msgid ""
669
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
670
+ "reminders, repeat purchases)"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:80
674
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
675
+ msgstr ""
676
+
677
+ #: includes/views/wcpdf-extensions.php:82
678
+ msgid "Get WooCommerce Smart Reminder Emails"
679
+ msgstr ""
680
+
681
+ #: includes/views/wcpdf-extensions.php:91
682
+ msgid "Upload all invoices automatically to your dropbox"
683
+ msgstr "Upload alle fakturaer automatisk til din Dropbox!"
684
+
685
+ #: includes/views/wcpdf-extensions.php:98
686
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
687
+ msgstr "Få WooCommerce PDF Fakturaer & pakkesedler til dropbox!"
688
+
689
+ #: includes/views/wcpdf-extensions.php:110
690
+ msgid ""
691
+ "Automatically send new orders or packing slips to your printer, as soon as "
692
+ "the customer orders!"
693
+ msgstr ""
694
+ "Send automatisk nye ordrer eller pakkesedler til din printer, så snart "
695
+ "kunden bestiller!"
696
+
697
+ #: includes/views/wcpdf-extensions.php:116
698
+ msgid ""
699
+ "Check out the WooCommerce Automatic Order Printing extension from our "
700
+ "partners at Simba Hosting"
701
+ msgstr ""
702
+ "Tjek WooCommerce Automatisk ordre udskrft udvidelse ud fra vores partnere på "
703
+ "Simba Hosting"
704
+
705
+ #: includes/views/wcpdf-extensions.php:117
706
+ msgid "WooCommerce Automatic Order Printing"
707
+ msgstr "WooCommerce automatisk ordre udskrift"
708
+
709
+ #: includes/views/wcpdf-extensions.php:136
710
+ #, php-format
711
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
712
+ msgstr "Se Premium PDF faktura & pakkesedler skabeloner på %s."
713
+
714
+ #: includes/views/wcpdf-extensions.php:137
715
+ #, php-format
716
+ msgid "For custom templates, contact us at %s."
717
+ msgstr "For brugerdefinerede skabeloner, kontakt os på %s."
718
+
719
+ #: includes/views/wcpdf-extensions.php:146
720
+ msgid "Hide this message"
721
+ msgstr ""
722
+
723
+ #: includes/views/wcpdf-settings-page.php:8
724
+ msgid "WooCommerce PDF Invoices"
725
+ msgstr "WooCommerce PDF faktura"
726
+
727
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
728
+ msgid "Billing Address:"
729
+ msgstr "Faktureringsadresse"
730
+
731
+ #: templates/Simple/invoice.php:41
732
+ msgid "Ship To:"
733
+ msgstr "Leveringsadresse:"
734
+
735
+ #: templates/Simple/invoice.php:50
736
+ msgid "Invoice Number:"
737
+ msgstr "Fakturanummer: "
738
+
739
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
740
+ msgid "Order Number:"
741
+ msgstr "Ordrenummer:"
742
+
743
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
744
+ msgid "Order Date:"
745
+ msgstr "Ordredato: "
746
+
747
+ #: templates/Simple/invoice.php:69
748
+ msgid "Payment Method:"
749
+ msgstr "Betaling: "
750
+
751
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
752
+ msgid "Product"
753
+ msgstr "Produkt"
754
+
755
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
756
+ msgid "Quantity"
757
+ msgstr "Antal "
758
+
759
+ #: templates/Simple/invoice.php:85
760
+ msgid "Price"
761
+ msgstr "Pris"
762
+
763
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
764
+ msgid "Description"
765
+ msgstr "Beskrivelse "
766
+
767
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
768
+ msgid "SKU"
769
+ msgstr "Varenummer"
770
+
771
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
772
+ msgid "SKU:"
773
+ msgstr "Varenummer: "
774
+
775
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
776
+ msgid "Weight:"
777
+ msgstr "Vægt: "
778
+
779
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
780
+ msgid "Customer Notes"
781
+ msgstr "Kunde bemærkning"
782
+
783
+ #: templates/Simple/packing-slip.php:30
784
+ msgid "Shipping Address:"
785
+ msgstr "Leveringsadresse"
786
+
787
+ #: templates/Simple/packing-slip.php:57
788
+ msgid "Shipping Method:"
789
+ msgstr "Leveringsmetode:"
790
+
791
+ #: woocommerce-pdf-invoices-packingslips.php:231
792
+ #, php-format
793
+ msgid ""
794
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
795
+ "installed & activated!"
796
+ msgstr ""
797
+ "WooCommerce PDF faktura & følgeseddel kræver at %sWooCommerce%s er "
798
+ "installeret og aktiveret! "
799
+
800
+ #: woocommerce-pdf-invoices-packingslips.php:243
801
+ msgid ""
802
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
803
+ "higher recommended)."
804
+ msgstr ""
805
+
806
+ #: woocommerce-pdf-invoices-packingslips.php:244
807
+ msgid "How to update your PHP version"
808
+ msgstr ""
809
+
810
+ #~ msgid "Attach invoice to:"
811
+ #~ msgstr "Vedhæft fakturaen til: "
812
+
813
+ #~ msgid ""
814
+ #~ "Display shipping address on invoice (in addition to the default billing "
815
+ #~ "address) if different from billing address"
816
+ #~ msgstr ""
817
+ #~ "Vis leveringsadresse på faktura (ud over standard faktureringsadresse) "
818
+ #~ "hvis den er forskellig fra faktureringsadressen"
819
+
820
+ #~ msgid ""
821
+ #~ "This is the number that will be used on the next invoice that is created. "
822
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
823
+ #~ "first invoice that is created and increases for every new invoice. Note "
824
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
825
+ #~ "number, this could create double invoice numbers!"
826
+ #~ msgstr ""
827
+ #~ "Dette er nummeret som vil blive brugt på den næste faktura. Som standard "
828
+ #~ "starter numrene fra WooCommerce ordre nummer for den første faktura der "
829
+ #~ "bliver oprettet og stiger med en for hver ny faktura. Bemærk: Hvis du "
830
+ #~ "tilsidesætter dette og sætter den lavere end den højeste (PDF) "
831
+ #~ "fakturanummer, kan dette skabe dobbelt fakturanumre. "
832
+
833
+ #~ msgid "Invoice number format"
834
+ #~ msgstr "Fakturanummer format "
835
+
836
+ #~ msgid ""
837
+ #~ "Disable automatic creation/attachment of invoices when only free products "
838
+ #~ "are ordered"
839
+ #~ msgstr ""
840
+ #~ "Deaktiver automatisk oprettelse/fastgørelse af fakturaer, når kun gratis "
841
+ #~ "produkter er bestilt"
842
+
843
+ #~ msgid ""
844
+ #~ "Display billing address on packing slip (in addition to the default "
845
+ #~ "shipping address) if different from shipping address"
846
+ #~ msgstr ""
847
+ #~ "Vis faktureringsadresse på følgeseddel (ud over standard "
848
+ #~ "leveringsadresse) hvis forskellig fra leveringsadresse"
849
+
850
+ #~ msgid "Template"
851
+ #~ msgstr "Skabelon "
852
+
853
+ #~ msgid "Admin New Order email"
854
+ #~ msgstr "Admin ny ordre e-mail"
855
+
856
+ #~ msgid "Customer Processing Order email"
857
+ #~ msgstr "Kunde behandler ordre e-mail"
858
+
859
+ #~ msgid "Customer Completed Order email"
860
+ #~ msgstr "Kunde fuldført ordre e-mail "
861
+
862
+ #~ msgid "Customer Invoice email"
863
+ #~ msgstr "Kunde faktura e-mail"
864
+
865
+ #~ msgid "Interface"
866
+ #~ msgstr "Grænseflade"
867
+
868
+ #~ msgid "PDF Template settings"
869
+ #~ msgstr "PDF skabelon indstillinger "
870
+
871
+ #~ msgid "Display built-in sequential invoice number"
872
+ #~ msgstr "Vis indbygget sekventiel faktura nummer"
873
+
874
+ #~ msgid ""
875
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
876
+ #~ "respectively"
877
+ #~ msgstr ""
878
+ #~ "for at bruge ordre år og/eller måned, brug [order_year] eller "
879
+ #~ "[order_month]. "
880
+
881
+ #~ msgid "Use old tmp folder"
882
+ #~ msgstr "Brug gammel tmp mappe"
883
+
884
+ #~ msgid ""
885
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
886
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
887
+ #~ "not recommended on new installs!"
888
+ #~ msgstr ""
889
+ #~ "Før version 1.5 af PDF fakturaer blev midlertidige filer gemt i plugin "
890
+ #~ "mappen. Denne indstilling er kun beregnet til bagudkompatibilitet, "
891
+ #~ "anbefales ikke på nye installationer!"
892
+
893
+ #~ msgid "PDF Packing Slips"
894
+ #~ msgstr "PDF følgesedler "
895
+
896
+ #~ msgid "PDF Invoice"
897
+ #~ msgstr "PDF Faktura"
898
+
899
+ #~ msgid "PDF Packing Slip"
900
+ #~ msgstr "PDF følgeseddel "
901
+
902
+ #~ msgid "PDF Invoice Number (unformatted!)"
903
+ #~ msgstr "PDF faktura nummer (uformateret!)"
904
+
905
+ #~ msgid "More advanced templates"
906
+ #~ msgstr "Flere avancerede skabeloner"
907
+
908
+ #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
909
+ #~ msgstr "Stilfuldt moderne fakturaer og følgesedler med produkt- thumbnails!"
910
+
911
+ #~ msgid "More tax details on the invoices!"
912
+ #~ msgstr "Flere moms detaljer på fakturaer!"
913
+
914
+ #~ msgid ""
915
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
916
+ #~ "extension."
917
+ #~ msgstr ""
918
+ #~ "Upload alle fakturaer automatisk til din Dropbox! <br/> Tjek denne %s "
919
+ #~ "udvidelse "
920
+
921
+ #~ msgid ""
922
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
923
+ #~ "Packing Slips templates at %s."
924
+ #~ msgstr ""
925
+ #~ "Leder du efter flere avancerede skabeloner? Se Premium PDF Invoice & "
926
+ #~ "Packing Slips templates ved %s."
927
+
928
+ #~ msgid ""
929
+ #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
930
+ #~ "<code>%s</code> to customize them"
931
+ #~ msgstr ""
932
+ #~ "Ønsker du at benytte din egen skabelon? Kopier alle filerne fra <code>%s</"
933
+ #~ "code> til <code>%s</code> for at tilpasse den"
934
+
935
+ #~ msgid "Number to display on invoice"
936
+ #~ msgstr "Nummer der vises på fakturaen "
937
+
938
+ #~ msgid "WooCommerce order number"
939
+ #~ msgstr "WooCommerce ordre nummer "
940
+
941
+ #~ msgid "Built-in sequential invoice number"
942
+ #~ msgstr "Indbygget sekventiel faktura nummer"
943
+
944
+ #~ msgid ""
945
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
946
+ #~ "the WooCommerce order number"
947
+ #~ msgstr ""
948
+ #~ "Hvis du benytter WooCommerce sekventiel ordre nummer plugin, vælg "
949
+ #~ "WooCommerce ordre nummer "
950
+
951
+ #~ msgid "Date to display on invoice"
952
+ #~ msgstr "Dato der skal vises på fakturaerne "
953
+
954
+ #~ msgid "Order date"
955
+ #~ msgstr "Ordredato"
956
+
957
+ #~ msgid "Invoice date"
958
+ #~ msgstr "Fakturadato"
959
+
960
+ #~ msgid "PDF invoice"
961
+ #~ msgstr "PDF faktura "
languages/woocommerce-pdf-invoices-packing-slips-de_DE.po CHANGED
@@ -1,926 +1,926 @@
1
- # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in German
2
- # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
- "Stable (latest release)\n"
7
- "POT-Creation-Date: 2017-06-13 13:13+0200\n"
8
- "PO-Revision-Date: 2018-02-06 14:16+0100\n"
9
- "Last-Translator: Thomas Bunte <thomas@bunte-tk.de>\n"
10
- "Language-Team: \n"
11
- "Language: de\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 2.0.6\n"
17
-
18
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
19
- msgid "Invoice Number"
20
- msgstr "Rechnungsnummer"
21
-
22
- #: includes/class-wcpdf-admin.php:105
23
- msgid "Create PDF"
24
- msgstr "PDF erstellen"
25
-
26
- #: includes/class-wcpdf-admin.php:115
27
- msgid "PDF Invoice data"
28
- msgstr "PDF Rechnungsdaten"
29
-
30
- #: includes/class-wcpdf-admin.php:166
31
- #: includes/documents/class-wcpdf-invoice.php:32
32
- #: includes/documents/class-wcpdf-invoice.php:41
33
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
34
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
35
- msgid "Invoice"
36
- msgstr "Rechnung"
37
-
38
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
39
- #: templates/Simple/invoice.php:56
40
- msgid "Invoice Date:"
41
- msgstr "Rechnungsdatum:"
42
-
43
- #: includes/class-wcpdf-admin.php:189
44
- msgid "Set invoice number & date"
45
- msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
46
-
47
- #: includes/class-wcpdf-admin.php:196
48
- msgid "Invoice Number (unformatted!)"
49
- msgstr "Rechnungsnummer (unformatiert)"
50
-
51
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
52
- msgid "h"
53
- msgstr "Std"
54
-
55
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
56
- msgid "m"
57
- msgstr "Min"
58
-
59
- #: includes/class-wcpdf-frontend.php:55
60
- msgid "Download invoice (PDF)"
61
- msgstr "Rechnung runterladen (PDF)"
62
-
63
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
64
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
65
- msgid "You do not have sufficient permissions to access this page."
66
- msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
67
-
68
- #: includes/class-wcpdf-main.php:141
69
- msgid "Some of the export parameters are missing."
70
- msgstr "Einige Export Parameter fehlen"
71
-
72
- #: includes/class-wcpdf-settings-callbacks.php:27
73
- msgid ""
74
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
75
- "Do not use them on a live website!"
76
- msgstr ""
77
- "<b>Achtung!</b> Die unten stehenden Einstellungen sind für Entwickler "
78
- "vorgehalten. Nutzen Sie diese bitte nur wenn Ihre Website offline ist!"
79
-
80
- #: includes/class-wcpdf-settings-callbacks.php:36
81
- msgid ""
82
- "These are used for the (optional) footer columns in the <em>Modern "
83
- "(Premium)</em> template, but can also be used for other elements in your "
84
- "custom template"
85
- msgstr ""
86
- "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
87
- "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
88
- "deiner angepassten Vorlage verwendet werden."
89
-
90
- #: includes/class-wcpdf-settings-callbacks.php:301
91
- msgid "Image resolution"
92
- msgstr "Bildauflösung"
93
-
94
- #: includes/class-wcpdf-settings-callbacks.php:325
95
- msgid "Save"
96
- msgstr "Speichern"
97
-
98
- #: includes/class-wcpdf-settings-debug.php:34
99
- msgid "Debug settings"
100
- msgstr "Einstellungen debuggen"
101
-
102
- #: includes/class-wcpdf-settings-debug.php:40
103
- msgid "Legacy mode"
104
- msgstr "Legacy Modus "
105
-
106
- #: includes/class-wcpdf-settings-debug.php:46
107
- msgid ""
108
- "Legacy mode ensures compatibility with templates and filters from previous "
109
- "versions."
110
- msgstr ""
111
- "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
112
- "früheren Versionen."
113
-
114
- #: includes/class-wcpdf-settings-debug.php:52
115
- msgid "Enable debug output"
116
- msgstr "Debug Ausgabe Aktivieren"
117
-
118
- #: includes/class-wcpdf-settings-debug.php:58
119
- msgid ""
120
- "Enable this option to output plugin errors if you're getting a blank page or "
121
- "other PDF generation issues"
122
- msgstr ""
123
- "Diese Option aktivieren um Fehler auszugeben, wenn beim Generieren der PDF "
124
- "Probleme auftreten sollten. "
125
-
126
- #: includes/class-wcpdf-settings-debug.php:64
127
- msgid "Output to HTML"
128
- msgstr "Als HTML ausgeben"
129
-
130
- #: includes/class-wcpdf-settings-debug.php:70
131
- msgid ""
132
- "Send the template output as HTML to the browser instead of creating a PDF."
133
- msgstr ""
134
- "Die Template-Ausgabe als HTML an den Browser senden, anstatt eine PDF zu "
135
- "erstellen."
136
-
137
- #: includes/class-wcpdf-settings-documents.php:29
138
- #: includes/class-wcpdf-settings.php:84
139
- msgid "Documents"
140
- msgstr "Dokumente"
141
-
142
- #: includes/class-wcpdf-settings-documents.php:45
143
- msgid ""
144
- "All available documents are listed below. Click on a document to configure "
145
- "it."
146
- msgstr ""
147
- "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
148
- "Dokument, um es zu konfigurieren."
149
-
150
- #: includes/class-wcpdf-settings-general.php:37
151
- msgid "General settings"
152
- msgstr "Allgemeine Einstellungen"
153
-
154
- #: includes/class-wcpdf-settings-general.php:43
155
- msgid "How do you want to view the PDF?"
156
- msgstr "Wie soll das PDF angezeigt werden?"
157
-
158
- #: includes/class-wcpdf-settings-general.php:50
159
- msgid "Download the PDF"
160
- msgstr "PDF runterladen"
161
-
162
- #: includes/class-wcpdf-settings-general.php:51
163
- msgid "Open the PDF in a new browser tab/window"
164
- msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
165
-
166
- #: includes/class-wcpdf-settings-general.php:58
167
- msgid "Choose a template"
168
- msgstr "Wähle ein Template"
169
-
170
- #: includes/class-wcpdf-settings-general.php:65
171
- #, php-format
172
- msgid ""
173
- "Want to use your own template? Copy all the files from <code>%s</code> to "
174
- "your (child) theme in <code>%s</code> to customize them"
175
- msgstr ""
176
- "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
177
- "<code>%s</code> nach <code>%s</code> und passe sie dort an."
178
-
179
- #: includes/class-wcpdf-settings-general.php:71
180
- msgid "Paper size"
181
- msgstr "Papierformat"
182
-
183
- #: includes/class-wcpdf-settings-general.php:78
184
- msgid "A4"
185
- msgstr "A4"
186
-
187
- #: includes/class-wcpdf-settings-general.php:79
188
- msgid "Letter"
189
- msgstr "Letter"
190
-
191
- #: includes/class-wcpdf-settings-general.php:86
192
- msgid "Extended currency symbol support"
193
- msgstr "Support für erweiterte Währungs Zeichen"
194
-
195
- #: includes/class-wcpdf-settings-general.php:92
196
- msgid "Enable this if your currency symbol is not displaying properly"
197
- msgstr ""
198
- "Aktivieren Sie diese Option, wenn Ihr Währungssymbol nicht korrekt "
199
- "ausgespielt wird."
200
-
201
- #: includes/class-wcpdf-settings-general.php:98
202
- msgid "Shop header/logo"
203
- msgstr "Briefkopf-Logo"
204
-
205
- #: includes/class-wcpdf-settings-general.php:104
206
- msgid "Select or upload your invoice header/logo"
207
- msgstr "Auswählen oder hochladen des Logos"
208
-
209
- #: includes/class-wcpdf-settings-general.php:105
210
- msgid "Set image"
211
- msgstr "Logo festlegen"
212
-
213
- #: includes/class-wcpdf-settings-general.php:106
214
- msgid "Remove image"
215
- msgstr "Logo entfernen"
216
-
217
- #: includes/class-wcpdf-settings-general.php:113
218
- msgid "Shop Name"
219
- msgstr "Name des Shops"
220
-
221
- #: includes/class-wcpdf-settings-general.php:126
222
- msgid "Shop Address"
223
- msgstr "Adresse des Shops"
224
-
225
- #: includes/class-wcpdf-settings-general.php:141
226
- msgid "Footer: terms & conditions, policies, etc."
227
- msgstr "Fußzeile: allgemeine Bestimmungen, etc."
228
-
229
- #: includes/class-wcpdf-settings-general.php:156
230
- msgid "Extra template fields"
231
- msgstr "Zusätzliche Vorlagenfelder"
232
-
233
- #: includes/class-wcpdf-settings-general.php:162
234
- msgid "Extra field 1"
235
- msgstr "Zusatzfeld 1"
236
-
237
- #: includes/class-wcpdf-settings-general.php:170
238
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
- msgstr ""
240
- "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
241
-
242
- #: includes/class-wcpdf-settings-general.php:177
243
- msgid "Extra field 2"
244
- msgstr "Zusatzfeld 2"
245
-
246
- #: includes/class-wcpdf-settings-general.php:185
247
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
- msgstr ""
249
- "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
250
-
251
- #: includes/class-wcpdf-settings-general.php:192
252
- msgid "Extra field 3"
253
- msgstr "Zusatzfeld 3"
254
-
255
- #: includes/class-wcpdf-settings-general.php:200
256
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
257
- msgstr ""
258
- "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
259
-
260
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
261
- msgid "PDF Invoices"
262
- msgstr "PDF Rechnungen"
263
-
264
- #: includes/class-wcpdf-settings.php:58
265
- msgid "Settings"
266
- msgstr "Einstellungen"
267
-
268
- #: includes/class-wcpdf-settings.php:71
269
- msgid "Documentation"
270
- msgstr "Dokumentation"
271
-
272
- #: includes/class-wcpdf-settings.php:72
273
- msgid "Support Forum"
274
- msgstr "Support Forum"
275
-
276
- #: includes/class-wcpdf-settings.php:83
277
- msgid "General"
278
- msgstr "Allgemein"
279
-
280
- #: includes/class-wcpdf-settings.php:89
281
- msgid "Status"
282
- msgstr "Status"
283
-
284
- #: includes/compatibility/class-wc-core-compatibility.php:222
285
- msgid "WooCommerce"
286
- msgstr "WooCommerce"
287
-
288
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
290
- msgid "N/A"
291
- msgstr "nicht verfügbar"
292
-
293
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
294
- msgid "Payment method"
295
- msgstr "Zahlungsart"
296
-
297
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
298
- msgid "Shipping method"
299
- msgstr "Versandart"
300
-
301
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
302
- #, php-format
303
- msgid "(includes %s)"
304
- msgstr "(enthält %s)"
305
-
306
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
307
- #, php-format
308
- msgid "(Includes %s)"
309
- msgstr "(inkl. %s)"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
312
- msgid "Subtotal"
313
- msgstr "Zwischensumme"
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
316
- msgid "Shipping"
317
- msgstr "Versand"
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
320
- msgid "Discount"
321
- msgstr "Rabatt"
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
324
- msgid "VAT"
325
- msgstr "MwSt."
326
-
327
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
328
- msgid "Tax rate"
329
- msgstr "MwSt-Satz"
330
-
331
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
332
- msgid "Total ex. VAT"
333
- msgstr "Gesamtsumme ohne MwSt."
334
-
335
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
336
- msgid "Total"
337
- msgstr "Gesamtsumme"
338
-
339
- #: includes/documents/abstract-wcpdf-order-document.php:679
340
- msgid "Admin email"
341
- msgstr "Admin E-Mail"
342
-
343
- #: includes/documents/abstract-wcpdf-order-document.php:682
344
- msgid "Manual email"
345
- msgstr "Manuelle E-Mail"
346
-
347
- #: includes/documents/class-wcpdf-invoice.php:85
348
- msgid "invoice"
349
- msgid_plural "invoices"
350
- msgstr[0] "Rechnung"
351
- msgstr[1] "Rechnungen"
352
-
353
- #: includes/documents/class-wcpdf-invoice.php:130
354
- #: includes/documents/class-wcpdf-packing-slip.php:94
355
- msgid "Enable"
356
- msgstr "Aktivieren"
357
-
358
- #: includes/documents/class-wcpdf-invoice.php:141
359
- msgid "Attach to:"
360
- msgstr "Anhängen an"
361
-
362
- #: includes/documents/class-wcpdf-invoice.php:148
363
- #, php-format
364
- msgid ""
365
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
366
- "permissions for this folder! Without having write access to this folder, the "
367
- "plugin will not be able to email invoices."
368
- msgstr ""
369
- "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
370
- "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
371
- "können keine E-Mail - Rechnungen verschickt werden."
372
-
373
- #: includes/documents/class-wcpdf-invoice.php:154
374
- msgid "Display shipping address"
375
- msgstr "Lieferadresse anzeigen"
376
-
377
- #: includes/documents/class-wcpdf-invoice.php:160
378
- msgid ""
379
- "Display shipping address (in addition to the default billing address) if "
380
- "different from billing address"
381
- msgstr ""
382
- "Lieferadresse auf Rechnung ergänzend anzeigen bei abweichender "
383
- "Rechnungsadresse"
384
-
385
- #: includes/documents/class-wcpdf-invoice.php:166
386
- #: includes/documents/class-wcpdf-packing-slip.php:117
387
- msgid "Display email address"
388
- msgstr "Email Adresse anzeigen"
389
-
390
- #: includes/documents/class-wcpdf-invoice.php:177
391
- #: includes/documents/class-wcpdf-packing-slip.php:128
392
- msgid "Display phone number"
393
- msgstr "Telefonnummer anzeigen"
394
-
395
- #: includes/documents/class-wcpdf-invoice.php:188
396
- msgid "Display invoice date"
397
- msgstr "Rechnungsdatum anzeigen"
398
-
399
- #: includes/documents/class-wcpdf-invoice.php:200
400
- msgid "Display invoice number"
401
- msgstr "Rechnungsnummer anzeigen"
402
-
403
- #: includes/documents/class-wcpdf-invoice.php:212
404
- msgid "Next invoice number (without prefix/suffix etc.)"
405
- msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
406
-
407
- #: includes/documents/class-wcpdf-invoice.php:218
408
- msgid ""
409
- "This is the number that will be used for the next document. By default, "
410
- "numbering starts from 1 and increases for every new document. Note that if "
411
- "you override this and set it lower than the current/highest number, this "
412
- "could create duplicate numbers!"
413
- msgstr ""
414
- "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
415
- "Normalerweise startet die Rechnungsnummerierung mit der Nummer 1und erhöht "
416
- "sich mit jeder neuen Rechnung. Beachte bitte das die Überschreibung der "
417
- "höchsten (PDF) Rechnungsnummer mit einer kleineren Nummer zu doppelten "
418
- "Rechnungsnummern führen kann."
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:224
421
- msgid "Number format"
422
- msgstr "Nummernformat"
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:232
425
- msgid "Prefix"
426
- msgstr "Präfix"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:234
429
- msgid ""
430
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
431
- "respectively"
432
- msgstr ""
433
- "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
434
- "[invoice_year] bzw.[invoice_month]."
435
-
436
- #: includes/documents/class-wcpdf-invoice.php:237
437
- msgid "Suffix"
438
- msgstr "Suffix"
439
-
440
- #: includes/documents/class-wcpdf-invoice.php:242
441
- msgid "Padding"
442
- msgstr "Abstand"
443
-
444
- #: includes/documents/class-wcpdf-invoice.php:245
445
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
446
- msgstr ""
447
- "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
448
- "darzustellen"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:248
451
- msgid ""
452
- "note: if you have already created a custom invoice number format with a "
453
- "filter, the above settings will be ignored"
454
- msgstr ""
455
- "beachte: solltest du schon mit einem Filter ein eigenes Format der "
456
- "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:254
459
- msgid "Reset invoice number yearly"
460
- msgstr "Rechnungsnummer jährlich zurücksetzen"
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:265
463
- msgid "Allow My Account invoice download"
464
- msgstr "Download der Rechnung über Mein Account zulassen"
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:272
467
- msgid "Only when an invoice is already created/emailed"
468
- msgstr "Nur wenn eine Rechnung erstellt/verschickt wurde"
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:273
471
- msgid "Only for specific order statuses (define below)"
472
- msgstr "Nur für bestimmte Auftragsstatus (Definiere unten)"
473
-
474
- #: includes/documents/class-wcpdf-invoice.php:274
475
- msgid "Always"
476
- msgstr "Immer"
477
-
478
- #: includes/documents/class-wcpdf-invoice.php:275
479
- msgid "Never"
480
- msgstr "Niemals"
481
-
482
- #: includes/documents/class-wcpdf-invoice.php:290
483
- msgid "Enable invoice number column in the orders list"
484
- msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
485
-
486
- #: includes/documents/class-wcpdf-invoice.php:301
487
- msgid "Disable for free products"
488
- msgstr "Für kostenlose Produkte deaktivieren"
489
-
490
- #: includes/documents/class-wcpdf-invoice.php:307
491
- #, fuzzy
492
- #| msgid ""
493
- #| "Disable automatic creation/attachment of invoices when only free products "
494
- #| "are ordered"
495
- msgid ""
496
- "Disable automatic creation/attachment when only free products are ordered"
497
- msgstr ""
498
- "Deaktiviere das automatische Erstellen/Anhängen von Rechnungen wenn "
499
- "kostenlose Produkte bestellt wurden"
500
-
501
- #: includes/documents/class-wcpdf-invoice.php:321
502
- msgid "Invoice numbers are created by a third-party extension."
503
- msgstr "Rechnungsnummern werden von einer Drittanbieter-Erweiterung erstellt."
504
-
505
- #: includes/documents/class-wcpdf-invoice.php:323
506
- #, php-format
507
- msgid "Configure it <a href=\"%s\">here</a>."
508
- msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
509
-
510
- #: includes/documents/class-wcpdf-packing-slip.php:32
511
- #: includes/documents/class-wcpdf-packing-slip.php:41
512
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
513
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
514
- msgid "Packing Slip"
515
- msgstr "Lieferschein"
516
-
517
- #: includes/documents/class-wcpdf-packing-slip.php:53
518
- msgid "packing-slip"
519
- msgid_plural "packing-slips"
520
- msgstr[0] "Lieferschein"
521
- msgstr[1] "Lieferscheine"
522
-
523
- #: includes/documents/class-wcpdf-packing-slip.php:105
524
- msgid "Display billing address"
525
- msgstr "Rechnungsadresse anzeigen"
526
-
527
- #: includes/documents/class-wcpdf-packing-slip.php:111
528
- msgid ""
529
- "Display billing address (in addition to the default shipping address) if "
530
- "different from shipping address"
531
- msgstr ""
532
- "Rechnungsadresse anzeigen (zusätzlich zur Standardversandadresse), falls "
533
- "abweichend von der Versandadresse"
534
-
535
- #: includes/legacy/class-wcpdf-legacy-document.php:32
536
- msgid "Legacy Document"
537
- msgstr "Legacy Dokument"
538
-
539
- #: includes/legacy/class-wcpdf-legacy.php:70
540
- msgid "Error"
541
- msgstr "Fehler"
542
-
543
- #: includes/legacy/class-wcpdf-legacy.php:71
544
- msgid ""
545
- "An outdated template or action hook was used to generate the PDF. Legacy "
546
- "mode has been activated, please try again by reloading this page."
547
- msgstr ""
548
- "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
549
- "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
550
- "indem Sie diese Seite neu laden."
551
-
552
- #: includes/legacy/class-wcpdf-legacy.php:74
553
- msgid "The following function was called"
554
- msgstr "Die folgende Funktion wurde aufgerufen"
555
-
556
- #: includes/views/wcpdf-extensions.php:15
557
- msgid "Check out these premium extensions!"
558
- msgstr "Premium Erweiterungen schon gesehen?"
559
-
560
- #: includes/views/wcpdf-extensions.php:16
561
- msgid "click items to read more"
562
- msgstr "klicke Elemente um weiterzulesen"
563
-
564
- #: includes/views/wcpdf-extensions.php:21
565
- msgid ""
566
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
567
- "system"
568
- msgstr ""
569
- "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
570
- "Abrechnungssystem benötigen"
571
-
572
- #: includes/views/wcpdf-extensions.php:23
573
- msgid ""
574
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
575
- "premium extensions:"
576
- msgstr ""
577
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
578
- "Erweiterungen:"
579
-
580
- #: includes/views/wcpdf-extensions.php:24
581
- msgid "Professional features:"
582
- msgstr "Professionelle Features:"
583
-
584
- #: includes/views/wcpdf-extensions.php:26
585
- #: includes/views/wcpdf-extensions.php:56
586
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
587
- msgstr ""
588
- "E-Mail/Druck/Download <b>PDF Rechnungskorrektur & Proforma Rechnung</b>"
589
-
590
- #: includes/views/wcpdf-extensions.php:27
591
- #: includes/views/wcpdf-extensions.php:57
592
- msgid ""
593
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
594
- "packing slips, for example to a drop-shipper or a supplier."
595
- msgstr ""
596
- "Sende eine separate <b>E-Mail-Benachrichtigung</b> mit (oder ohne) PDF "
597
- "invoices/packing slips, zum Beispiel zu einem Drop-Shipper oder einem "
598
- "Lieferanten."
599
-
600
- #: includes/views/wcpdf-extensions.php:28
601
- #: includes/views/wcpdf-extensions.php:58
602
- msgid ""
603
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
604
- "document) to the WooCommerce emails of your choice."
605
- msgstr ""
606
- "Hänge <b>bis zu 3 Dateien</b> (zum Beispiel die AGB) an die WooCommerce E-"
607
- "Mails deiner Wahl an."
608
-
609
- #: includes/views/wcpdf-extensions.php:29
610
- #: includes/views/wcpdf-extensions.php:59
611
- msgid ""
612
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
613
- "and credit notes or utilize the main invoice numbering system"
614
- msgstr ""
615
- "Anwendung <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
616
- "Rechnungen und Gutschriften oder Änderung am Hauptsystem der "
617
- "Rechnungsnummerierung"
618
-
619
- #: includes/views/wcpdf-extensions.php:30
620
- #: includes/views/wcpdf-extensions.php:60
621
- msgid ""
622
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
623
- "additional custom fields, font sizes etc. without the need to create a "
624
- "custom template."
625
- msgstr ""
626
- "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
627
- "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
628
- "zu erstellen."
629
-
630
- #: includes/views/wcpdf-extensions.php:31
631
- #: includes/views/wcpdf-extensions.php:61
632
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
633
- msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
634
-
635
- #: includes/views/wcpdf-extensions.php:33
636
- #: includes/views/wcpdf-extensions.php:131
637
- msgid "Advanced, customizable templates"
638
- msgstr "Erweiterte, anpassbare Vorlagen"
639
-
640
- #: includes/views/wcpdf-extensions.php:35
641
- #: includes/views/wcpdf-extensions.php:134
642
- msgid ""
643
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
644
- "your needs with a drag & drop customizer"
645
- msgstr ""
646
- "Stelle die Rechnungen (Preise, Steuern, Thumbnails) komplett per Drag- & "
647
- "Drop auf deine Bedürfnisse ein"
648
-
649
- #: includes/views/wcpdf-extensions.php:36
650
- #: includes/views/wcpdf-extensions.php:135
651
- msgid "Two extra stylish premade templates (Modern & Business)"
652
- msgstr "Zwei zusätzliche stilvolle vorgefertigte Vorlagen (Modern & Business)"
653
-
654
- #: includes/views/wcpdf-extensions.php:38
655
- msgid "Upload automatically to dropbox"
656
- msgstr "Automatischer Upload in die Dropbox"
657
-
658
- #: includes/views/wcpdf-extensions.php:40
659
- #: includes/views/wcpdf-extensions.php:97
660
- msgid ""
661
- "This extension conveniently uploads all the invoices (and other pdf "
662
- "documents from the professional extension) that are emailed to your "
663
- "customers to Dropbox. The best way to keep your invoice administration up to "
664
- "date!"
665
- msgstr ""
666
- "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
667
- "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
668
- "Rechnungsadministration aktuell zu halten!"
669
-
670
- #: includes/views/wcpdf-extensions.php:43
671
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
672
- msgstr "Hol Dir das WooCommerce PDF Invoices & Packing Slips Bundle"
673
-
674
- #: includes/views/wcpdf-extensions.php:52
675
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
676
- msgstr "Upgrade auf Pro: Proforma Rechnung, Rechnungskorrektur & mehr!"
677
-
678
- #: includes/views/wcpdf-extensions.php:54
679
- msgid ""
680
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
681
- "features:"
682
- msgstr ""
683
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
684
-
685
- #: includes/views/wcpdf-extensions.php:63
686
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
687
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
688
-
689
- #: includes/views/wcpdf-extensions.php:71
690
- msgid "Automatically send payment reminders to your customers"
691
- msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
692
-
693
- #: includes/views/wcpdf-extensions.php:73
694
- msgid "WooCommerce Smart Reminder emails"
695
- msgstr "WooCommerce Smart Reminder Emails"
696
-
697
- #: includes/views/wcpdf-extensions.php:75
698
- msgid "<b>Completely automatic</b> scheduled emails"
699
- msgstr "<b>Vollautomatische</b> geplant e-Mails"
700
-
701
- #: includes/views/wcpdf-extensions.php:76
702
- msgid ""
703
- "<b>Rich text editor</b> for the email text, including placeholders for data "
704
- "from the order (name, order total, etc)"
705
- msgstr ""
706
- "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
707
- "aus der Bestellung (Name, Auftragssumme, etc.)"
708
-
709
- #: includes/views/wcpdf-extensions.php:77
710
- msgid ""
711
- "Configure the exact requirements for sending an email (time after order, "
712
- "order status, payment method)"
713
- msgstr ""
714
- "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
715
- "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
716
-
717
- #: includes/views/wcpdf-extensions.php:78
718
- msgid ""
719
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
720
- "order language."
721
- msgstr ""
722
- "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
723
- "Bestellsprache versendet."
724
-
725
- #: includes/views/wcpdf-extensions.php:79
726
- msgid ""
727
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
728
- "reminders, repeat purchases)"
729
- msgstr ""
730
- "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
731
- "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
732
-
733
- #: includes/views/wcpdf-extensions.php:80
734
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
735
- msgstr ""
736
- "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
737
-
738
- #: includes/views/wcpdf-extensions.php:82
739
- msgid "Get WooCommerce Smart Reminder Emails"
740
- msgstr "WooCommerce Smart Reminder EMails ordern"
741
-
742
- #: includes/views/wcpdf-extensions.php:91
743
- msgid "Upload all invoices automatically to your dropbox"
744
- msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
745
-
746
- #: includes/views/wcpdf-extensions.php:98
747
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
748
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
749
-
750
- #: includes/views/wcpdf-extensions.php:110
751
- msgid ""
752
- "Automatically send new orders or packing slips to your printer, as soon as "
753
- "the customer orders!"
754
- msgstr ""
755
- "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
756
- "sobald ein Kunde bestellt."
757
-
758
- #: includes/views/wcpdf-extensions.php:116
759
- msgid ""
760
- "Check out the WooCommerce Automatic Order Printing extension from our "
761
- "partners at Simba Hosting"
762
- msgstr ""
763
- "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
764
- "Partner Simba Hosting "
765
-
766
- #: includes/views/wcpdf-extensions.php:117
767
- msgid "WooCommerce Automatic Order Printing"
768
- msgstr "WooCommerce Automatic Order Printing"
769
-
770
- #: includes/views/wcpdf-extensions.php:136
771
- #, php-format
772
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
773
- msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
774
-
775
- #: includes/views/wcpdf-extensions.php:137
776
- #, php-format
777
- msgid "For custom templates, contact us at %s."
778
- msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
779
-
780
- #: includes/views/wcpdf-extensions.php:146
781
- msgid "Hide this message"
782
- msgstr "Diese Nachricht ausblenden"
783
-
784
- #: includes/views/wcpdf-settings-page.php:8
785
- msgid "WooCommerce PDF Invoices"
786
- msgstr "WooCommerce PDF Rechnungen"
787
-
788
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
789
- msgid "Billing Address:"
790
- msgstr "Rechnungsadresse:"
791
-
792
- #: templates/Simple/invoice.php:41
793
- msgid "Ship To:"
794
- msgstr "Versand nach:"
795
-
796
- #: templates/Simple/invoice.php:50
797
- msgid "Invoice Number:"
798
- msgstr "Rechnungsnummer:"
799
-
800
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
801
- msgid "Order Number:"
802
- msgstr "Bestellnummer:"
803
-
804
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
805
- msgid "Order Date:"
806
- msgstr "Bestelldatum:"
807
-
808
- #: templates/Simple/invoice.php:69
809
- msgid "Payment Method:"
810
- msgstr "Zahlungsart:"
811
-
812
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
813
- msgid "Product"
814
- msgstr "Produkt"
815
-
816
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
817
- msgid "Quantity"
818
- msgstr "Anzahl"
819
-
820
- #: templates/Simple/invoice.php:85
821
- msgid "Price"
822
- msgstr "Preis"
823
-
824
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
825
- msgid "Description"
826
- msgstr "Beschreibung"
827
-
828
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
829
- msgid "SKU"
830
- msgstr "Art.-Nr."
831
-
832
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
833
- msgid "SKU:"
834
- msgstr "Art.-Nr.:"
835
-
836
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
837
- msgid "Weight:"
838
- msgstr "Gewicht:"
839
-
840
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
841
- msgid "Customer Notes"
842
- msgstr "Anmerkungen"
843
-
844
- #: templates/Simple/packing-slip.php:30
845
- msgid "Shipping Address:"
846
- msgstr "Lieferadresse:"
847
-
848
- #: templates/Simple/packing-slip.php:57
849
- msgid "Shipping Method:"
850
- msgstr "Versandart:"
851
-
852
- #: woocommerce-pdf-invoices-packingslips.php:229
853
- #, php-format
854
- msgid ""
855
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
856
- "installed & activated!"
857
- msgstr ""
858
- "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
859
- "installiert und aktiviert!"
860
-
861
- #: woocommerce-pdf-invoices-packingslips.php:241
862
- msgid ""
863
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
864
- "higher recommended)."
865
- msgstr ""
866
- "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher (5.6 "
867
- "oder höher empfohlen)."
868
-
869
- #: woocommerce-pdf-invoices-packingslips.php:242
870
- msgid "How to update your PHP version"
871
- msgstr "So aktualisieren Sie Ihre PHP-Version"
872
-
873
- #~ msgid "Ewout Fernhout"
874
- #~ msgstr "Ewout Fernhout"
875
-
876
- #~ msgid ""
877
- #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
878
- #~ msgstr ""
879
- #~ "Erstelle, drucke & verschicke PDF Rechnungen & Lieferscheine per Email "
880
- #~ "für WooCommerce Bestellungen."
881
-
882
- #~ msgid "http://www.wpovernight.com"
883
- #~ msgstr "http://www.wpovernight.com"
884
-
885
- #~ msgid "PDF Packing Slip"
886
- #~ msgstr "PDF Lieferschein"
887
-
888
- #~ msgid "PDF Invoice"
889
- #~ msgstr "PDF Rechnung"
890
-
891
- #~ msgid "PDF Packing Slips"
892
- #~ msgstr "PDF Lieferscheine"
893
-
894
- #~ msgid ""
895
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
896
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
897
- #~ "not recommended on new installs!"
898
- #~ msgstr ""
899
- #~ "Vor Version 1.5 von PDF Invoices, wurden temporäre Dateien im Plugin-"
900
- #~ "Ordner gespeichert. Diese Einstellung ist nur für die "
901
- #~ "Abwärtskompatibilität bestimmt und wird nicht für Neuinstallationen "
902
- #~ "empfohlen!"
903
-
904
- #~ msgid "Use old tmp folder"
905
- #~ msgstr "Alten tmp Ordner benutzen"
906
-
907
- #~ msgid "Display built-in sequential invoice number"
908
- #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
909
-
910
- #~ msgid "PDF Template settings"
911
- #~ msgstr "PDF Vorlageneinstellungen"
912
-
913
- #~ msgid "Interface"
914
- #~ msgstr "Interface"
915
-
916
- #~ msgid "Customer Invoice email"
917
- #~ msgstr "Kunde Rechnung E-Mail"
918
-
919
- #~ msgid "Customer Completed Order email"
920
- #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
921
-
922
- #~ msgid "Customer Processing Order email"
923
- #~ msgstr "Kunde In Bearbeitung E-Mail"
924
-
925
- #~ msgid "Template"
926
- #~ msgstr "Vorlage"
1
+ # Translation of Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) in German
2
+ # This file is distributed under the same license as the Plugins - WooCommerce PDF Invoices &amp; Packing Slips - Stable (latest release) package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Plugins - WooCommerce PDF Invoices &amp; Packing Slips - "
6
+ "Stable (latest release)\n"
7
+ "POT-Creation-Date: 2017-06-13 13:13+0200\n"
8
+ "PO-Revision-Date: 2018-02-06 14:16+0100\n"
9
+ "Last-Translator: Thomas Bunte <thomas@bunte-tk.de>\n"
10
+ "Language-Team: \n"
11
+ "Language: de\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 2.0.6\n"
17
+
18
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
19
+ msgid "Invoice Number"
20
+ msgstr "Rechnungsnummer"
21
+
22
+ #: includes/class-wcpdf-admin.php:105
23
+ msgid "Create PDF"
24
+ msgstr "PDF erstellen"
25
+
26
+ #: includes/class-wcpdf-admin.php:115
27
+ msgid "PDF Invoice data"
28
+ msgstr "PDF Rechnungsdaten"
29
+
30
+ #: includes/class-wcpdf-admin.php:166
31
+ #: includes/documents/class-wcpdf-invoice.php:32
32
+ #: includes/documents/class-wcpdf-invoice.php:41
33
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
34
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
35
+ msgid "Invoice"
36
+ msgstr "Rechnung"
37
+
38
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
39
+ #: templates/Simple/invoice.php:56
40
+ msgid "Invoice Date:"
41
+ msgstr "Rechnungsdatum:"
42
+
43
+ #: includes/class-wcpdf-admin.php:189
44
+ msgid "Set invoice number & date"
45
+ msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
46
+
47
+ #: includes/class-wcpdf-admin.php:196
48
+ msgid "Invoice Number (unformatted!)"
49
+ msgstr "Rechnungsnummer (unformatiert)"
50
+
51
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
52
+ msgid "h"
53
+ msgstr "Std"
54
+
55
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
56
+ msgid "m"
57
+ msgstr "Min"
58
+
59
+ #: includes/class-wcpdf-frontend.php:55
60
+ msgid "Download invoice (PDF)"
61
+ msgstr "Rechnung runterladen (PDF)"
62
+
63
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
64
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
65
+ msgid "You do not have sufficient permissions to access this page."
66
+ msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
67
+
68
+ #: includes/class-wcpdf-main.php:141
69
+ msgid "Some of the export parameters are missing."
70
+ msgstr "Einige Export Parameter fehlen"
71
+
72
+ #: includes/class-wcpdf-settings-callbacks.php:27
73
+ msgid ""
74
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
75
+ "Do not use them on a live website!"
76
+ msgstr ""
77
+ "<b>Achtung!</b> Die unten stehenden Einstellungen sind für Entwickler "
78
+ "vorgehalten. Nutzen Sie diese bitte nur wenn Ihre Website offline ist!"
79
+
80
+ #: includes/class-wcpdf-settings-callbacks.php:36
81
+ msgid ""
82
+ "These are used for the (optional) footer columns in the <em>Modern "
83
+ "(Premium)</em> template, but can also be used for other elements in your "
84
+ "custom template"
85
+ msgstr ""
86
+ "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
87
+ "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
88
+ "deiner angepassten Vorlage verwendet werden."
89
+
90
+ #: includes/class-wcpdf-settings-callbacks.php:301
91
+ msgid "Image resolution"
92
+ msgstr "Bildauflösung"
93
+
94
+ #: includes/class-wcpdf-settings-callbacks.php:325
95
+ msgid "Save"
96
+ msgstr "Speichern"
97
+
98
+ #: includes/class-wcpdf-settings-debug.php:34
99
+ msgid "Debug settings"
100
+ msgstr "Einstellungen debuggen"
101
+
102
+ #: includes/class-wcpdf-settings-debug.php:40
103
+ msgid "Legacy mode"
104
+ msgstr "Legacy Modus "
105
+
106
+ #: includes/class-wcpdf-settings-debug.php:46
107
+ msgid ""
108
+ "Legacy mode ensures compatibility with templates and filters from previous "
109
+ "versions."
110
+ msgstr ""
111
+ "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
112
+ "früheren Versionen."
113
+
114
+ #: includes/class-wcpdf-settings-debug.php:52
115
+ msgid "Enable debug output"
116
+ msgstr "Debug Ausgabe Aktivieren"
117
+
118
+ #: includes/class-wcpdf-settings-debug.php:58
119
+ msgid ""
120
+ "Enable this option to output plugin errors if you're getting a blank page or "
121
+ "other PDF generation issues"
122
+ msgstr ""
123
+ "Diese Option aktivieren um Fehler auszugeben, wenn beim Generieren der PDF "
124
+ "Probleme auftreten sollten. "
125
+
126
+ #: includes/class-wcpdf-settings-debug.php:64
127
+ msgid "Output to HTML"
128
+ msgstr "Als HTML ausgeben"
129
+
130
+ #: includes/class-wcpdf-settings-debug.php:70
131
+ msgid ""
132
+ "Send the template output as HTML to the browser instead of creating a PDF."
133
+ msgstr ""
134
+ "Die Template-Ausgabe als HTML an den Browser senden, anstatt eine PDF zu "
135
+ "erstellen."
136
+
137
+ #: includes/class-wcpdf-settings-documents.php:29
138
+ #: includes/class-wcpdf-settings.php:84
139
+ msgid "Documents"
140
+ msgstr "Dokumente"
141
+
142
+ #: includes/class-wcpdf-settings-documents.php:45
143
+ msgid ""
144
+ "All available documents are listed below. Click on a document to configure "
145
+ "it."
146
+ msgstr ""
147
+ "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
148
+ "Dokument, um es zu konfigurieren."
149
+
150
+ #: includes/class-wcpdf-settings-general.php:37
151
+ msgid "General settings"
152
+ msgstr "Allgemeine Einstellungen"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:43
155
+ msgid "How do you want to view the PDF?"
156
+ msgstr "Wie soll das PDF angezeigt werden?"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:50
159
+ msgid "Download the PDF"
160
+ msgstr "PDF runterladen"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:51
163
+ msgid "Open the PDF in a new browser tab/window"
164
+ msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:58
167
+ msgid "Choose a template"
168
+ msgstr "Wähle ein Template"
169
+
170
+ #: includes/class-wcpdf-settings-general.php:65
171
+ #, php-format
172
+ msgid ""
173
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
174
+ "your (child) theme in <code>%s</code> to customize them"
175
+ msgstr ""
176
+ "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
177
+ "<code>%s</code> nach <code>%s</code> und passe sie dort an."
178
+
179
+ #: includes/class-wcpdf-settings-general.php:71
180
+ msgid "Paper size"
181
+ msgstr "Papierformat"
182
+
183
+ #: includes/class-wcpdf-settings-general.php:78
184
+ msgid "A4"
185
+ msgstr "A4"
186
+
187
+ #: includes/class-wcpdf-settings-general.php:79
188
+ msgid "Letter"
189
+ msgstr "Letter"
190
+
191
+ #: includes/class-wcpdf-settings-general.php:86
192
+ msgid "Extended currency symbol support"
193
+ msgstr "Support für erweiterte Währungs Zeichen"
194
+
195
+ #: includes/class-wcpdf-settings-general.php:92
196
+ msgid "Enable this if your currency symbol is not displaying properly"
197
+ msgstr ""
198
+ "Aktivieren Sie diese Option, wenn Ihr Währungssymbol nicht korrekt "
199
+ "ausgespielt wird."
200
+
201
+ #: includes/class-wcpdf-settings-general.php:98
202
+ msgid "Shop header/logo"
203
+ msgstr "Briefkopf-Logo"
204
+
205
+ #: includes/class-wcpdf-settings-general.php:104
206
+ msgid "Select or upload your invoice header/logo"
207
+ msgstr "Auswählen oder hochladen des Logos"
208
+
209
+ #: includes/class-wcpdf-settings-general.php:105
210
+ msgid "Set image"
211
+ msgstr "Logo festlegen"
212
+
213
+ #: includes/class-wcpdf-settings-general.php:106
214
+ msgid "Remove image"
215
+ msgstr "Logo entfernen"
216
+
217
+ #: includes/class-wcpdf-settings-general.php:113
218
+ msgid "Shop Name"
219
+ msgstr "Name des Shops"
220
+
221
+ #: includes/class-wcpdf-settings-general.php:126
222
+ msgid "Shop Address"
223
+ msgstr "Adresse des Shops"
224
+
225
+ #: includes/class-wcpdf-settings-general.php:141
226
+ msgid "Footer: terms & conditions, policies, etc."
227
+ msgstr "Fußzeile: allgemeine Bestimmungen, etc."
228
+
229
+ #: includes/class-wcpdf-settings-general.php:156
230
+ msgid "Extra template fields"
231
+ msgstr "Zusätzliche Vorlagenfelder"
232
+
233
+ #: includes/class-wcpdf-settings-general.php:162
234
+ msgid "Extra field 1"
235
+ msgstr "Zusatzfeld 1"
236
+
237
+ #: includes/class-wcpdf-settings-general.php:170
238
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
+ msgstr ""
240
+ "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
241
+
242
+ #: includes/class-wcpdf-settings-general.php:177
243
+ msgid "Extra field 2"
244
+ msgstr "Zusatzfeld 2"
245
+
246
+ #: includes/class-wcpdf-settings-general.php:185
247
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
+ msgstr ""
249
+ "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
250
+
251
+ #: includes/class-wcpdf-settings-general.php:192
252
+ msgid "Extra field 3"
253
+ msgstr "Zusatzfeld 3"
254
+
255
+ #: includes/class-wcpdf-settings-general.php:200
256
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
257
+ msgstr ""
258
+ "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
259
+
260
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
261
+ msgid "PDF Invoices"
262
+ msgstr "PDF Rechnungen"
263
+
264
+ #: includes/class-wcpdf-settings.php:58
265
+ msgid "Settings"
266
+ msgstr "Einstellungen"
267
+
268
+ #: includes/class-wcpdf-settings.php:71
269
+ msgid "Documentation"
270
+ msgstr "Dokumentation"
271
+
272
+ #: includes/class-wcpdf-settings.php:72
273
+ msgid "Support Forum"
274
+ msgstr "Support Forum"
275
+
276
+ #: includes/class-wcpdf-settings.php:83
277
+ msgid "General"
278
+ msgstr "Allgemein"
279
+
280
+ #: includes/class-wcpdf-settings.php:89
281
+ msgid "Status"
282
+ msgstr "Status"
283
+
284
+ #: includes/compatibility/class-wc-core-compatibility.php:222
285
+ msgid "WooCommerce"
286
+ msgstr "WooCommerce"
287
+
288
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
290
+ msgid "N/A"
291
+ msgstr "nicht verfügbar"
292
+
293
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
294
+ msgid "Payment method"
295
+ msgstr "Zahlungsart"
296
+
297
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
298
+ msgid "Shipping method"
299
+ msgstr "Versandart"
300
+
301
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
302
+ #, php-format
303
+ msgid "(includes %s)"
304
+ msgstr "(enthält %s)"
305
+
306
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
307
+ #, php-format
308
+ msgid "(Includes %s)"
309
+ msgstr "(inkl. %s)"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
312
+ msgid "Subtotal"
313
+ msgstr "Zwischensumme"
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
316
+ msgid "Shipping"
317
+ msgstr "Versand"
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
320
+ msgid "Discount"
321
+ msgstr "Rabatt"
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
324
+ msgid "VAT"
325
+ msgstr "MwSt."
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
328
+ msgid "Tax rate"
329
+ msgstr "MwSt-Satz"
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
332
+ msgid "Total ex. VAT"
333
+ msgstr "Gesamtsumme ohne MwSt."
334
+
335
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
336
+ msgid "Total"
337
+ msgstr "Gesamtsumme"
338
+
339
+ #: includes/documents/abstract-wcpdf-order-document.php:679
340
+ msgid "Admin email"
341
+ msgstr "Admin E-Mail"
342
+
343
+ #: includes/documents/abstract-wcpdf-order-document.php:682
344
+ msgid "Manual email"
345
+ msgstr "Manuelle E-Mail"
346
+
347
+ #: includes/documents/class-wcpdf-invoice.php:85
348
+ msgid "invoice"
349
+ msgid_plural "invoices"
350
+ msgstr[0] "Rechnung"
351
+ msgstr[1] "Rechnungen"
352
+
353
+ #: includes/documents/class-wcpdf-invoice.php:130
354
+ #: includes/documents/class-wcpdf-packing-slip.php:94
355
+ msgid "Enable"
356
+ msgstr "Aktivieren"
357
+
358
+ #: includes/documents/class-wcpdf-invoice.php:141
359
+ msgid "Attach to:"
360
+ msgstr "Anhängen an"
361
+
362
+ #: includes/documents/class-wcpdf-invoice.php:148
363
+ #, php-format
364
+ msgid ""
365
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
366
+ "permissions for this folder! Without having write access to this folder, the "
367
+ "plugin will not be able to email invoices."
368
+ msgstr ""
369
+ "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
370
+ "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
371
+ "können keine E-Mail - Rechnungen verschickt werden."
372
+
373
+ #: includes/documents/class-wcpdf-invoice.php:154
374
+ msgid "Display shipping address"
375
+ msgstr "Lieferadresse anzeigen"
376
+
377
+ #: includes/documents/class-wcpdf-invoice.php:160
378
+ msgid ""
379
+ "Display shipping address (in addition to the default billing address) if "
380
+ "different from billing address"
381
+ msgstr ""
382
+ "Lieferadresse auf Rechnung ergänzend anzeigen bei abweichender "
383
+ "Rechnungsadresse"
384
+
385
+ #: includes/documents/class-wcpdf-invoice.php:166
386
+ #: includes/documents/class-wcpdf-packing-slip.php:117
387
+ msgid "Display email address"
388
+ msgstr "Email Adresse anzeigen"
389
+
390
+ #: includes/documents/class-wcpdf-invoice.php:177
391
+ #: includes/documents/class-wcpdf-packing-slip.php:128
392
+ msgid "Display phone number"
393
+ msgstr "Telefonnummer anzeigen"
394
+
395
+ #: includes/documents/class-wcpdf-invoice.php:188
396
+ msgid "Display invoice date"
397
+ msgstr "Rechnungsdatum anzeigen"
398
+
399
+ #: includes/documents/class-wcpdf-invoice.php:200
400
+ msgid "Display invoice number"
401
+ msgstr "Rechnungsnummer anzeigen"
402
+
403
+ #: includes/documents/class-wcpdf-invoice.php:212
404
+ msgid "Next invoice number (without prefix/suffix etc.)"
405
+ msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
406
+
407
+ #: includes/documents/class-wcpdf-invoice.php:218
408
+ msgid ""
409
+ "This is the number that will be used for the next document. By default, "
410
+ "numbering starts from 1 and increases for every new document. Note that if "
411
+ "you override this and set it lower than the current/highest number, this "
412
+ "could create duplicate numbers!"
413
+ msgstr ""
414
+ "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
415
+ "Normalerweise startet die Rechnungsnummerierung mit der Nummer 1und erhöht "
416
+ "sich mit jeder neuen Rechnung. Beachte bitte das die Überschreibung der "
417
+ "höchsten (PDF) Rechnungsnummer mit einer kleineren Nummer zu doppelten "
418
+ "Rechnungsnummern führen kann."
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:224
421
+ msgid "Number format"
422
+ msgstr "Nummernformat"
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:232
425
+ msgid "Prefix"
426
+ msgstr "Präfix"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:234
429
+ msgid ""
430
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
431
+ "respectively"
432
+ msgstr ""
433
+ "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
434
+ "[invoice_year] bzw.[invoice_month]."
435
+
436
+ #: includes/documents/class-wcpdf-invoice.php:237
437
+ msgid "Suffix"
438
+ msgstr "Suffix"
439
+
440
+ #: includes/documents/class-wcpdf-invoice.php:242
441
+ msgid "Padding"
442
+ msgstr "Abstand"
443
+
444
+ #: includes/documents/class-wcpdf-invoice.php:245
445
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
446
+ msgstr ""
447
+ "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
448
+ "darzustellen"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:248
451
+ msgid ""
452
+ "note: if you have already created a custom invoice number format with a "
453
+ "filter, the above settings will be ignored"
454
+ msgstr ""
455
+ "beachte: solltest du schon mit einem Filter ein eigenes Format der "
456
+ "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:254
459
+ msgid "Reset invoice number yearly"
460
+ msgstr "Rechnungsnummer jährlich zurücksetzen"
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:265
463
+ msgid "Allow My Account invoice download"
464
+ msgstr "Download der Rechnung über Mein Account zulassen"
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:272
467
+ msgid "Only when an invoice is already created/emailed"
468
+ msgstr "Nur wenn eine Rechnung erstellt/verschickt wurde"
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:273
471
+ msgid "Only for specific order statuses (define below)"
472
+ msgstr "Nur für bestimmte Auftragsstatus (Definiere unten)"
473
+
474
+ #: includes/documents/class-wcpdf-invoice.php:274
475
+ msgid "Always"
476
+ msgstr "Immer"
477
+
478
+ #: includes/documents/class-wcpdf-invoice.php:275
479
+ msgid "Never"
480
+ msgstr "Niemals"
481
+
482
+ #: includes/documents/class-wcpdf-invoice.php:290
483
+ msgid "Enable invoice number column in the orders list"
484
+ msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
485
+
486
+ #: includes/documents/class-wcpdf-invoice.php:301
487
+ msgid "Disable for free products"
488
+ msgstr "Für kostenlose Produkte deaktivieren"
489
+
490
+ #: includes/documents/class-wcpdf-invoice.php:307
491
+ #, fuzzy
492
+ #| msgid ""
493
+ #| "Disable automatic creation/attachment of invoices when only free products "
494
+ #| "are ordered"
495
+ msgid ""
496
+ "Disable automatic creation/attachment when only free products are ordered"
497
+ msgstr ""
498
+ "Deaktiviere das automatische Erstellen/Anhängen von Rechnungen wenn "
499
+ "kostenlose Produkte bestellt wurden"
500
+
501
+ #: includes/documents/class-wcpdf-invoice.php:321
502
+ msgid "Invoice numbers are created by a third-party extension."
503
+ msgstr "Rechnungsnummern werden von einer Drittanbieter-Erweiterung erstellt."
504
+
505
+ #: includes/documents/class-wcpdf-invoice.php:323
506
+ #, php-format
507
+ msgid "Configure it <a href=\"%s\">here</a>."
508
+ msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
509
+
510
+ #: includes/documents/class-wcpdf-packing-slip.php:32
511
+ #: includes/documents/class-wcpdf-packing-slip.php:41
512
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
513
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
514
+ msgid "Packing Slip"
515
+ msgstr "Lieferschein"
516
+
517
+ #: includes/documents/class-wcpdf-packing-slip.php:53
518
+ msgid "packing-slip"
519
+ msgid_plural "packing-slips"
520
+ msgstr[0] "Lieferschein"
521
+ msgstr[1] "Lieferscheine"
522
+
523
+ #: includes/documents/class-wcpdf-packing-slip.php:105
524
+ msgid "Display billing address"
525
+ msgstr "Rechnungsadresse anzeigen"
526
+
527
+ #: includes/documents/class-wcpdf-packing-slip.php:111
528
+ msgid ""
529
+ "Display billing address (in addition to the default shipping address) if "
530
+ "different from shipping address"
531
+ msgstr ""
532
+ "Rechnungsadresse anzeigen (zusätzlich zur Standardversandadresse), falls "
533
+ "abweichend von der Versandadresse"
534
+
535
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
536
+ msgid "Legacy Document"
537
+ msgstr "Legacy Dokument"
538
+
539
+ #: includes/legacy/class-wcpdf-legacy.php:70
540
+ msgid "Error"
541
+ msgstr "Fehler"
542
+
543
+ #: includes/legacy/class-wcpdf-legacy.php:71
544
+ msgid ""
545
+ "An outdated template or action hook was used to generate the PDF. Legacy "
546
+ "mode has been activated, please try again by reloading this page."
547
+ msgstr ""
548
+ "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
549
+ "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
550
+ "indem Sie diese Seite neu laden."
551
+
552
+ #: includes/legacy/class-wcpdf-legacy.php:74
553
+ msgid "The following function was called"
554
+ msgstr "Die folgende Funktion wurde aufgerufen"
555
+
556
+ #: includes/views/wcpdf-extensions.php:15
557
+ msgid "Check out these premium extensions!"
558
+ msgstr "Premium Erweiterungen schon gesehen?"
559
+
560
+ #: includes/views/wcpdf-extensions.php:16
561
+ msgid "click items to read more"
562
+ msgstr "klicke Elemente um weiterzulesen"
563
+
564
+ #: includes/views/wcpdf-extensions.php:21
565
+ msgid ""
566
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
567
+ "system"
568
+ msgstr ""
569
+ "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
570
+ "Abrechnungssystem benötigen"
571
+
572
+ #: includes/views/wcpdf-extensions.php:23
573
+ msgid ""
574
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
575
+ "premium extensions:"
576
+ msgstr ""
577
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
578
+ "Erweiterungen:"
579
+
580
+ #: includes/views/wcpdf-extensions.php:24
581
+ msgid "Professional features:"
582
+ msgstr "Professionelle Features:"
583
+
584
+ #: includes/views/wcpdf-extensions.php:26
585
+ #: includes/views/wcpdf-extensions.php:56
586
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
587
+ msgstr ""
588
+ "E-Mail/Druck/Download <b>PDF Rechnungskorrektur & Proforma Rechnung</b>"
589
+
590
+ #: includes/views/wcpdf-extensions.php:27
591
+ #: includes/views/wcpdf-extensions.php:57
592
+ msgid ""
593
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
594
+ "packing slips, for example to a drop-shipper or a supplier."
595
+ msgstr ""
596
+ "Sende eine separate <b>E-Mail-Benachrichtigung</b> mit (oder ohne) PDF "
597
+ "invoices/packing slips, zum Beispiel zu einem Drop-Shipper oder einem "
598
+ "Lieferanten."
599
+
600
+ #: includes/views/wcpdf-extensions.php:28
601
+ #: includes/views/wcpdf-extensions.php:58
602
+ msgid ""
603
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
604
+ "document) to the WooCommerce emails of your choice."
605
+ msgstr ""
606
+ "Hänge <b>bis zu 3 Dateien</b> (zum Beispiel die AGB) an die WooCommerce E-"
607
+ "Mails deiner Wahl an."
608
+
609
+ #: includes/views/wcpdf-extensions.php:29
610
+ #: includes/views/wcpdf-extensions.php:59
611
+ msgid ""
612
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
613
+ "and credit notes or utilize the main invoice numbering system"
614
+ msgstr ""
615
+ "Anwendung <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
616
+ "Rechnungen und Gutschriften oder Änderung am Hauptsystem der "
617
+ "Rechnungsnummerierung"
618
+
619
+ #: includes/views/wcpdf-extensions.php:30
620
+ #: includes/views/wcpdf-extensions.php:60
621
+ msgid ""
622
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
623
+ "additional custom fields, font sizes etc. without the need to create a "
624
+ "custom template."
625
+ msgstr ""
626
+ "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
627
+ "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
628
+ "zu erstellen."
629
+
630
+ #: includes/views/wcpdf-extensions.php:31
631
+ #: includes/views/wcpdf-extensions.php:61
632
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
633
+ msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
634
+
635
+ #: includes/views/wcpdf-extensions.php:33
636
+ #: includes/views/wcpdf-extensions.php:131
637
+ msgid "Advanced, customizable templates"
638
+ msgstr "Erweiterte, anpassbare Vorlagen"
639
+
640
+ #: includes/views/wcpdf-extensions.php:35
641
+ #: includes/views/wcpdf-extensions.php:134
642
+ msgid ""
643
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
644
+ "your needs with a drag & drop customizer"
645
+ msgstr ""
646
+ "Stelle die Rechnungen (Preise, Steuern, Thumbnails) komplett per Drag- & "
647
+ "Drop auf deine Bedürfnisse ein"
648
+
649
+ #: includes/views/wcpdf-extensions.php:36
650
+ #: includes/views/wcpdf-extensions.php:135
651
+ msgid "Two extra stylish premade templates (Modern & Business)"
652
+ msgstr "Zwei zusätzliche stilvolle vorgefertigte Vorlagen (Modern & Business)"
653
+
654
+ #: includes/views/wcpdf-extensions.php:38
655
+ msgid "Upload automatically to dropbox"
656
+ msgstr "Automatischer Upload in die Dropbox"
657
+
658
+ #: includes/views/wcpdf-extensions.php:40
659
+ #: includes/views/wcpdf-extensions.php:97
660
+ msgid ""
661
+ "This extension conveniently uploads all the invoices (and other pdf "
662
+ "documents from the professional extension) that are emailed to your "
663
+ "customers to Dropbox. The best way to keep your invoice administration up to "
664
+ "date!"
665
+ msgstr ""
666
+ "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
667
+ "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
668
+ "Rechnungsadministration aktuell zu halten!"
669
+
670
+ #: includes/views/wcpdf-extensions.php:43
671
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
672
+ msgstr "Hol Dir das WooCommerce PDF Invoices & Packing Slips Bundle"
673
+
674
+ #: includes/views/wcpdf-extensions.php:52
675
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
676
+ msgstr "Upgrade auf Pro: Proforma Rechnung, Rechnungskorrektur & mehr!"
677
+
678
+ #: includes/views/wcpdf-extensions.php:54
679
+ msgid ""
680
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
681
+ "features:"
682
+ msgstr ""
683
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
684
+
685
+ #: includes/views/wcpdf-extensions.php:63
686
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
687
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
688
+
689
+ #: includes/views/wcpdf-extensions.php:71
690
+ msgid "Automatically send payment reminders to your customers"
691
+ msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
692
+
693
+ #: includes/views/wcpdf-extensions.php:73
694
+ msgid "WooCommerce Smart Reminder emails"
695
+ msgstr "WooCommerce Smart Reminder Emails"
696
+
697
+ #: includes/views/wcpdf-extensions.php:75
698
+ msgid "<b>Completely automatic</b> scheduled emails"
699
+ msgstr "<b>Vollautomatische</b> geplant e-Mails"
700
+
701
+ #: includes/views/wcpdf-extensions.php:76
702
+ msgid ""
703
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
704
+ "from the order (name, order total, etc)"
705
+ msgstr ""
706
+ "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
707
+ "aus der Bestellung (Name, Auftragssumme, etc.)"
708
+
709
+ #: includes/views/wcpdf-extensions.php:77
710
+ msgid ""
711
+ "Configure the exact requirements for sending an email (time after order, "
712
+ "order status, payment method)"
713
+ msgstr ""
714
+ "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
715
+ "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
716
+
717
+ #: includes/views/wcpdf-extensions.php:78
718
+ msgid ""
719
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
720
+ "order language."
721
+ msgstr ""
722
+ "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
723
+ "Bestellsprache versendet."
724
+
725
+ #: includes/views/wcpdf-extensions.php:79
726
+ msgid ""
727
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
728
+ "reminders, repeat purchases)"
729
+ msgstr ""
730
+ "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
731
+ "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
732
+
733
+ #: includes/views/wcpdf-extensions.php:80
734
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
735
+ msgstr ""
736
+ "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
737
+
738
+ #: includes/views/wcpdf-extensions.php:82
739
+ msgid "Get WooCommerce Smart Reminder Emails"
740
+ msgstr "WooCommerce Smart Reminder EMails ordern"
741
+
742
+ #: includes/views/wcpdf-extensions.php:91
743
+ msgid "Upload all invoices automatically to your dropbox"
744
+ msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
745
+
746
+ #: includes/views/wcpdf-extensions.php:98
747
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
748
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
749
+
750
+ #: includes/views/wcpdf-extensions.php:110
751
+ msgid ""
752
+ "Automatically send new orders or packing slips to your printer, as soon as "
753
+ "the customer orders!"
754
+ msgstr ""
755
+ "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
756
+ "sobald ein Kunde bestellt."
757
+
758
+ #: includes/views/wcpdf-extensions.php:116
759
+ msgid ""
760
+ "Check out the WooCommerce Automatic Order Printing extension from our "
761
+ "partners at Simba Hosting"
762
+ msgstr ""
763
+ "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
764
+ "Partner Simba Hosting "
765
+
766
+ #: includes/views/wcpdf-extensions.php:117
767
+ msgid "WooCommerce Automatic Order Printing"
768
+ msgstr "WooCommerce Automatic Order Printing"
769
+
770
+ #: includes/views/wcpdf-extensions.php:136
771
+ #, php-format
772
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
773
+ msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
774
+
775
+ #: includes/views/wcpdf-extensions.php:137
776
+ #, php-format
777
+ msgid "For custom templates, contact us at %s."
778
+ msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
779
+
780
+ #: includes/views/wcpdf-extensions.php:146
781
+ msgid "Hide this message"
782
+ msgstr "Diese Nachricht ausblenden"
783
+
784
+ #: includes/views/wcpdf-settings-page.php:8
785
+ msgid "WooCommerce PDF Invoices"
786
+ msgstr "WooCommerce PDF Rechnungen"
787
+
788
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
789
+ msgid "Billing Address:"
790
+ msgstr "Rechnungsadresse:"
791
+
792
+ #: templates/Simple/invoice.php:41
793
+ msgid "Ship To:"
794
+ msgstr "Versand nach:"
795
+
796
+ #: templates/Simple/invoice.php:50
797
+ msgid "Invoice Number:"
798
+ msgstr "Rechnungsnummer:"
799
+
800
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
801
+ msgid "Order Number:"
802
+ msgstr "Bestellnummer:"
803
+
804
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
805
+ msgid "Order Date:"
806
+ msgstr "Bestelldatum:"
807
+
808
+ #: templates/Simple/invoice.php:69
809
+ msgid "Payment Method:"
810
+ msgstr "Zahlungsart:"
811
+
812
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
813
+ msgid "Product"
814
+ msgstr "Produkt"
815
+
816
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
817
+ msgid "Quantity"
818
+ msgstr "Anzahl"
819
+
820
+ #: templates/Simple/invoice.php:85
821
+ msgid "Price"
822
+ msgstr "Preis"
823
+
824
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
825
+ msgid "Description"
826
+ msgstr "Beschreibung"
827
+
828
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
829
+ msgid "SKU"
830
+ msgstr "Art.-Nr."
831
+
832
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
833
+ msgid "SKU:"
834
+ msgstr "Art.-Nr.:"
835
+
836
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
837
+ msgid "Weight:"
838
+ msgstr "Gewicht:"
839
+
840
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
841
+ msgid "Customer Notes"
842
+ msgstr "Anmerkungen"
843
+
844
+ #: templates/Simple/packing-slip.php:30
845
+ msgid "Shipping Address:"
846
+ msgstr "Lieferadresse:"
847
+
848
+ #: templates/Simple/packing-slip.php:57
849
+ msgid "Shipping Method:"
850
+ msgstr "Versandart:"
851
+
852
+ #: woocommerce-pdf-invoices-packingslips.php:229
853
+ #, php-format
854
+ msgid ""
855
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
856
+ "installed & activated!"
857
+ msgstr ""
858
+ "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
859
+ "installiert und aktiviert!"
860
+
861
+ #: woocommerce-pdf-invoices-packingslips.php:241
862
+ msgid ""
863
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
864
+ "higher recommended)."
865
+ msgstr ""
866
+ "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher (5.6 "
867
+ "oder höher empfohlen)."
868
+
869
+ #: woocommerce-pdf-invoices-packingslips.php:242
870
+ msgid "How to update your PHP version"
871
+ msgstr "So aktualisieren Sie Ihre PHP-Version"
872
+
873
+ #~ msgid "Ewout Fernhout"
874
+ #~ msgstr "Ewout Fernhout"
875
+
876
+ #~ msgid ""
877
+ #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
878
+ #~ msgstr ""
879
+ #~ "Erstelle, drucke & verschicke PDF Rechnungen & Lieferscheine per Email "
880
+ #~ "für WooCommerce Bestellungen."
881
+
882
+ #~ msgid "http://www.wpovernight.com"
883
+ #~ msgstr "http://www.wpovernight.com"
884
+
885
+ #~ msgid "PDF Packing Slip"
886
+ #~ msgstr "PDF Lieferschein"
887
+
888
+ #~ msgid "PDF Invoice"
889
+ #~ msgstr "PDF Rechnung"
890
+
891
+ #~ msgid "PDF Packing Slips"
892
+ #~ msgstr "PDF Lieferscheine"
893
+
894
+ #~ msgid ""
895
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
896
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
897
+ #~ "not recommended on new installs!"
898
+ #~ msgstr ""
899
+ #~ "Vor Version 1.5 von PDF Invoices, wurden temporäre Dateien im Plugin-"
900
+ #~ "Ordner gespeichert. Diese Einstellung ist nur für die "
901
+ #~ "Abwärtskompatibilität bestimmt und wird nicht für Neuinstallationen "
902
+ #~ "empfohlen!"
903
+
904
+ #~ msgid "Use old tmp folder"
905
+ #~ msgstr "Alten tmp Ordner benutzen"
906
+
907
+ #~ msgid "Display built-in sequential invoice number"
908
+ #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
909
+
910
+ #~ msgid "PDF Template settings"
911
+ #~ msgstr "PDF Vorlageneinstellungen"
912
+
913
+ #~ msgid "Interface"
914
+ #~ msgstr "Interface"
915
+
916
+ #~ msgid "Customer Invoice email"
917
+ #~ msgstr "Kunde Rechnung E-Mail"
918
+
919
+ #~ msgid "Customer Completed Order email"
920
+ #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
921
+
922
+ #~ msgid "Customer Processing Order email"
923
+ #~ msgstr "Kunde In Bearbeitung E-Mail"
924
+
925
+ #~ msgid "Template"
926
+ #~ msgstr "Vorlage"
languages/woocommerce-pdf-invoices-packing-slips-de_DE_formal.po CHANGED
@@ -1,945 +1,945 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-13 13:13+0200\n"
5
- "PO-Revision-Date: 2018-02-06 13:05+0100\n"
6
- "Last-Translator: Thomas Bunte <thomas@bunte-tk.de>\n"
7
- "Language-Team: PROnatur24 <info@pronatur24.eu>\n"
8
- "Language: de_DE\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 2.0.6\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Rechnungsnummer"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "PDF erstellen"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr "PDF Rechnungs Daten"
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Rechnung"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Rechnungsdatum:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr "Rechnungsnummer (unformatiert!)"
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "Std"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "Min"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Rechnung runterladen (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "Einige der Exportparameter fehlen."
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<b>Achtung:</b> Die folgenden Einstellungen sind nur für die Fehlersuche / "
79
- "Entwicklung gedacht. Verwenden Sie sie nicht auf einer Live-Website!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
88
- "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
89
- "deiner angepassten Vorlage verwendet werden."
90
-
91
- #: includes/class-wcpdf-settings-callbacks.php:301
92
- msgid "Image resolution"
93
- msgstr "Bildauflösung"
94
-
95
- #: includes/class-wcpdf-settings-callbacks.php:325
96
- msgid "Save"
97
- msgstr "Speichern"
98
-
99
- #: includes/class-wcpdf-settings-debug.php:34
100
- msgid "Debug settings"
101
- msgstr "Debug Einstellungen"
102
-
103
- #: includes/class-wcpdf-settings-debug.php:40
104
- msgid "Legacy mode"
105
- msgstr "Legacy mode"
106
-
107
- #: includes/class-wcpdf-settings-debug.php:46
108
- msgid ""
109
- "Legacy mode ensures compatibility with templates and filters from previous "
110
- "versions."
111
- msgstr ""
112
- "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
113
- "früheren Versionen."
114
-
115
- #: includes/class-wcpdf-settings-debug.php:52
116
- msgid "Enable debug output"
117
- msgstr "Debug-Ausgabe aktivieren"
118
-
119
- #: includes/class-wcpdf-settings-debug.php:58
120
- msgid ""
121
- "Enable this option to output plugin errors if you're getting a blank page or "
122
- "other PDF generation issues"
123
- msgstr ""
124
- "Aktivieren Sie diese Option um Plugin-Fehler auszugeben, wenn Sie eine leere "
125
- "Seite oder andere PDF-Generierung-Probleme bekommen"
126
-
127
- #: includes/class-wcpdf-settings-debug.php:64
128
- msgid "Output to HTML"
129
- msgstr "HTML-Ausgabe"
130
-
131
- #: includes/class-wcpdf-settings-debug.php:70
132
- msgid ""
133
- "Send the template output as HTML to the browser instead of creating a PDF."
134
- msgstr ""
135
- "Senden die Ausgabe als HTML an einen Browser, anstatt ein PDF zu erstellen."
136
-
137
- #: includes/class-wcpdf-settings-documents.php:29
138
- #: includes/class-wcpdf-settings.php:84
139
- msgid "Documents"
140
- msgstr "Dokumente"
141
-
142
- #: includes/class-wcpdf-settings-documents.php:45
143
- msgid ""
144
- "All available documents are listed below. Click on a document to configure "
145
- "it."
146
- msgstr ""
147
- "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
148
- "Dokument, um es zu konfigurieren."
149
-
150
- #: includes/class-wcpdf-settings-general.php:37
151
- msgid "General settings"
152
- msgstr "Allgemeine Einstellungen"
153
-
154
- #: includes/class-wcpdf-settings-general.php:43
155
- msgid "How do you want to view the PDF?"
156
- msgstr "Wie soll das PDF angezeigt werden?"
157
-
158
- #: includes/class-wcpdf-settings-general.php:50
159
- msgid "Download the PDF"
160
- msgstr "PDF runterladen"
161
-
162
- #: includes/class-wcpdf-settings-general.php:51
163
- msgid "Open the PDF in a new browser tab/window"
164
- msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
165
-
166
- #: includes/class-wcpdf-settings-general.php:58
167
- msgid "Choose a template"
168
- msgstr "Wähle ein Template"
169
-
170
- #: includes/class-wcpdf-settings-general.php:65
171
- #, php-format
172
- msgid ""
173
- "Want to use your own template? Copy all the files from <code>%s</code> to "
174
- "your (child) theme in <code>%s</code> to customize them"
175
- msgstr ""
176
- "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
177
- "<code>%s</code> nach <code>%s</code> und passe sie dort an."
178
-
179
- #: includes/class-wcpdf-settings-general.php:71
180
- msgid "Paper size"
181
- msgstr "Papierformat"
182
-
183
- #: includes/class-wcpdf-settings-general.php:78
184
- msgid "A4"
185
- msgstr "A4"
186
-
187
- #: includes/class-wcpdf-settings-general.php:79
188
- msgid "Letter"
189
- msgstr "Letter"
190
-
191
- #: includes/class-wcpdf-settings-general.php:86
192
- msgid "Extended currency symbol support"
193
- msgstr "Support für erweiterte Währungs Zeichen"
194
-
195
- #: includes/class-wcpdf-settings-general.php:92
196
- msgid "Enable this if your currency symbol is not displaying properly"
197
- msgstr ""
198
- "Aktivieren Sie diese Option, wenn Ihre Währungssymbol nicht korrekt "
199
- "ausgespielt wird."
200
-
201
- #: includes/class-wcpdf-settings-general.php:98
202
- msgid "Shop header/logo"
203
- msgstr "Briefkopf-Logo"
204
-
205
- #: includes/class-wcpdf-settings-general.php:104
206
- msgid "Select or upload your invoice header/logo"
207
- msgstr "Auswählen oder hochladen des Logos"
208
-
209
- #: includes/class-wcpdf-settings-general.php:105
210
- msgid "Set image"
211
- msgstr "Logo festlegen"
212
-
213
- #: includes/class-wcpdf-settings-general.php:106
214
- msgid "Remove image"
215
- msgstr "Logo entfernen"
216
-
217
- #: includes/class-wcpdf-settings-general.php:113
218
- msgid "Shop Name"
219
- msgstr "Name des Shops"
220
-
221
- #: includes/class-wcpdf-settings-general.php:126
222
- msgid "Shop Address"
223
- msgstr "Adresse des Shops"
224
-
225
- #: includes/class-wcpdf-settings-general.php:141
226
- msgid "Footer: terms & conditions, policies, etc."
227
- msgstr "Fußzeile: allgemeine Bestimmungen, etc."
228
-
229
- #: includes/class-wcpdf-settings-general.php:156
230
- msgid "Extra template fields"
231
- msgstr "Zusätzliche Vorlagenfelder"
232
-
233
- #: includes/class-wcpdf-settings-general.php:162
234
- msgid "Extra field 1"
235
- msgstr "Zusatzfeld 1"
236
-
237
- #: includes/class-wcpdf-settings-general.php:170
238
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
- msgstr ""
240
- "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
241
-
242
- #: includes/class-wcpdf-settings-general.php:177
243
- msgid "Extra field 2"
244
- msgstr "Zusatzfeld 2"
245
-
246
- #: includes/class-wcpdf-settings-general.php:185
247
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
- msgstr ""
249
- "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
250
-
251
- #: includes/class-wcpdf-settings-general.php:192
252
- msgid "Extra field 3"
253
- msgstr "Zusatzfeld 3"
254
-
255
- #: includes/class-wcpdf-settings-general.php:200
256
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
257
- msgstr ""
258
- "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
259
-
260
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
261
- msgid "PDF Invoices"
262
- msgstr "PDF Rechnungen"
263
-
264
- #: includes/class-wcpdf-settings.php:58
265
- msgid "Settings"
266
- msgstr "Einstellungen"
267
-
268
- #: includes/class-wcpdf-settings.php:71
269
- msgid "Documentation"
270
- msgstr "Dokumentation"
271
-
272
- #: includes/class-wcpdf-settings.php:72
273
- msgid "Support Forum"
274
- msgstr "Support Forum"
275
-
276
- #: includes/class-wcpdf-settings.php:83
277
- msgid "General"
278
- msgstr "Allgemein"
279
-
280
- #: includes/class-wcpdf-settings.php:89
281
- msgid "Status"
282
- msgstr "Status"
283
-
284
- #: includes/compatibility/class-wc-core-compatibility.php:222
285
- msgid "WooCommerce"
286
- msgstr "WooCommerce"
287
-
288
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
290
- msgid "N/A"
291
- msgstr "nicht verfügbar"
292
-
293
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
294
- msgid "Payment method"
295
- msgstr "Zahlungsart"
296
-
297
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
298
- msgid "Shipping method"
299
- msgstr "Versandart"
300
-
301
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
302
- #, php-format
303
- msgid "(includes %s)"
304
- msgstr "(enthält %s)"
305
-
306
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
307
- #, php-format
308
- msgid "(Includes %s)"
309
- msgstr "(Enthält %s)"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
312
- msgid "Subtotal"
313
- msgstr "Zwischensumme"
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
316
- msgid "Shipping"
317
- msgstr "Versand"
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
320
- msgid "Discount"
321
- msgstr "Rabatt"
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
324
- msgid "VAT"
325
- msgstr "MwSt."
326
-
327
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
328
- msgid "Tax rate"
329
- msgstr "MwSt-Satz"
330
-
331
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
332
- msgid "Total ex. VAT"
333
- msgstr "Gesamtsumme ohne MwSt."
334
-
335
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
336
- msgid "Total"
337
- msgstr "Gesamtsumme"
338
-
339
- #: includes/documents/abstract-wcpdf-order-document.php:679
340
- msgid "Admin email"
341
- msgstr "Admin E-Mail"
342
-
343
- #: includes/documents/abstract-wcpdf-order-document.php:682
344
- msgid "Manual email"
345
- msgstr "Manuelle E-Mail"
346
-
347
- # This is a filename (prefix). do not use spaces or special characters!
348
- #: includes/documents/class-wcpdf-invoice.php:85
349
- msgid "invoice"
350
- msgid_plural "invoices"
351
- msgstr[0] "Rechnung"
352
- msgstr[1] "Rechnungen"
353
-
354
- #: includes/documents/class-wcpdf-invoice.php:130
355
- #: includes/documents/class-wcpdf-packing-slip.php:94
356
- msgid "Enable"
357
- msgstr "Aktivieren"
358
-
359
- #: includes/documents/class-wcpdf-invoice.php:141
360
- msgid "Attach to:"
361
- msgstr "Anhängen an"
362
-
363
- #: includes/documents/class-wcpdf-invoice.php:148
364
- #, php-format
365
- msgid ""
366
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
367
- "permissions for this folder! Without having write access to this folder, the "
368
- "plugin will not be able to email invoices."
369
- msgstr ""
370
- "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
371
- "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
372
- "können keine E-Mail - Rechnungen verschickt werden."
373
-
374
- #: includes/documents/class-wcpdf-invoice.php:154
375
- msgid "Display shipping address"
376
- msgstr "Lieferadresse anzeigen"
377
-
378
- #: includes/documents/class-wcpdf-invoice.php:160
379
- msgid ""
380
- "Display shipping address (in addition to the default billing address) if "
381
- "different from billing address"
382
- msgstr ""
383
- "Zeigt die Lieferadresse auf der Rechnung (zusätzlich zu den Standard-"
384
- "Rechnungsadresse), falls abweichend von Rechnungsadresse"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:166
387
- #: includes/documents/class-wcpdf-packing-slip.php:117
388
- msgid "Display email address"
389
- msgstr "E-Mail-Adresse anzeigen"
390
-
391
- #: includes/documents/class-wcpdf-invoice.php:177
392
- #: includes/documents/class-wcpdf-packing-slip.php:128
393
- msgid "Display phone number"
394
- msgstr "Telefonnummer anzeigen"
395
-
396
- #: includes/documents/class-wcpdf-invoice.php:188
397
- msgid "Display invoice date"
398
- msgstr "Rechnungsdatum anzeigen"
399
-
400
- #: includes/documents/class-wcpdf-invoice.php:200
401
- msgid "Display invoice number"
402
- msgstr "Rechnungsnummer anzeigen"
403
-
404
- #: includes/documents/class-wcpdf-invoice.php:212
405
- msgid "Next invoice number (without prefix/suffix etc.)"
406
- msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
407
-
408
- #: includes/documents/class-wcpdf-invoice.php:218
409
- msgid ""
410
- "This is the number that will be used for the next document. By default, "
411
- "numbering starts from 1 and increases for every new document. Note that if "
412
- "you override this and set it lower than the current/highest number, this "
413
- "could create duplicate numbers!"
414
- msgstr ""
415
- "Dies ist die Nummer, die für das nächste Dokument verwendet wird. "
416
- "Standardmäßig beginnt die Nummerierung bei 1 und erhöht sich mit jedem neuen "
417
- "Dokument. Beachten Sie, dass, wenn Sie dies überschreiben und es niedriger "
418
- "als die aktuelle/höchste Zahl setzen, dies zu doppelten Zahlen führen kann!"
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:224
421
- msgid "Number format"
422
- msgstr "Nummernformat"
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:232
425
- msgid "Prefix"
426
- msgstr "Präfix"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:234
429
- msgid ""
430
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
431
- "respectively"
432
- msgstr ""
433
- "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
434
- "[invoice_year] bzw.[invoice_month]."
435
-
436
- #: includes/documents/class-wcpdf-invoice.php:237
437
- msgid "Suffix"
438
- msgstr "Suffix"
439
-
440
- #: includes/documents/class-wcpdf-invoice.php:242
441
- msgid "Padding"
442
- msgstr "Abstand"
443
-
444
- #: includes/documents/class-wcpdf-invoice.php:245
445
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
446
- msgstr ""
447
- "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
448
- "darzustellen"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:248
451
- msgid ""
452
- "note: if you have already created a custom invoice number format with a "
453
- "filter, the above settings will be ignored"
454
- msgstr ""
455
- "beachte: solltest du schon mit einem Filter ein eigenes Format der "
456
- "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:254
459
- msgid "Reset invoice number yearly"
460
- msgstr "Rechnungsnummer jährlich zurücksetzen"
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:265
463
- msgid "Allow My Account invoice download"
464
- msgstr "Erlauben Sie den Download der Rechnung im Kunden-Konto"
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:272
467
- msgid "Only when an invoice is already created/emailed"
468
- msgstr "Nur wenn eine Rechnung bereits erstellt bzw. versendet wurde."
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:273
471
- msgid "Only for specific order statuses (define below)"
472
- msgstr "Nur für bestimmten Bestellstatus (Definition unten)"
473
-
474
- #: includes/documents/class-wcpdf-invoice.php:274
475
- msgid "Always"
476
- msgstr "Immer"
477
-
478
- #: includes/documents/class-wcpdf-invoice.php:275
479
- msgid "Never"
480
- msgstr "Niemals"
481
-
482
- #: includes/documents/class-wcpdf-invoice.php:290
483
- msgid "Enable invoice number column in the orders list"
484
- msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
485
-
486
- #: includes/documents/class-wcpdf-invoice.php:301
487
- msgid "Disable for free products"
488
- msgstr "Für kostenlose Produkte deaktivieren"
489
-
490
- #: includes/documents/class-wcpdf-invoice.php:307
491
- msgid ""
492
- "Disable automatic creation/attachment when only free products are ordered"
493
- msgstr ""
494
- "Deaktivieren Sie das automatische Erstellen/Anhängen, wenn nur kostenlose "
495
- "Produkte bestellt werden."
496
-
497
- #: includes/documents/class-wcpdf-invoice.php:321
498
- msgid "Invoice numbers are created by a third-party extension."
499
- msgstr ""
500
- "Rechnungsnummern entstehen durch eine Erweiterung eines Drittanbieters."
501
-
502
- #: includes/documents/class-wcpdf-invoice.php:323
503
- #, php-format
504
- msgid "Configure it <a href=\"%s\">here</a>."
505
- msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
506
-
507
- #: includes/documents/class-wcpdf-packing-slip.php:32
508
- #: includes/documents/class-wcpdf-packing-slip.php:41
509
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
510
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
511
- msgid "Packing Slip"
512
- msgstr "Lieferschein"
513
-
514
- # This is a filename (prefix). do not use spaces or special characters!
515
- #: includes/documents/class-wcpdf-packing-slip.php:53
516
- msgid "packing-slip"
517
- msgid_plural "packing-slips"
518
- msgstr[0] "Lieferschein"
519
- msgstr[1] "Lieferscheine"
520
-
521
- #: includes/documents/class-wcpdf-packing-slip.php:105
522
- msgid "Display billing address"
523
- msgstr "Rechnungsadresse anzeigen"
524
-
525
- #: includes/documents/class-wcpdf-packing-slip.php:111
526
- msgid ""
527
- "Display billing address (in addition to the default shipping address) if "
528
- "different from shipping address"
529
- msgstr ""
530
- "Rechnungsadresse anzeigen (zusätzlich zur Standard-Lieferadresse), falls "
531
- "abweichend von der Versandadresse"
532
-
533
- #: includes/legacy/class-wcpdf-legacy-document.php:32
534
- msgid "Legacy Document"
535
- msgstr "Legacy Dokument"
536
-
537
- #: includes/legacy/class-wcpdf-legacy.php:70
538
- msgid "Error"
539
- msgstr "Fehler"
540
-
541
- #: includes/legacy/class-wcpdf-legacy.php:71
542
- msgid ""
543
- "An outdated template or action hook was used to generate the PDF. Legacy "
544
- "mode has been activated, please try again by reloading this page."
545
- msgstr ""
546
- "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
547
- "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
548
- "indem Sie diese Seite neu laden."
549
-
550
- #: includes/legacy/class-wcpdf-legacy.php:74
551
- msgid "The following function was called"
552
- msgstr "Die folgende Funktion wurde aufgerufen"
553
-
554
- #: includes/views/wcpdf-extensions.php:15
555
- msgid "Check out these premium extensions!"
556
- msgstr "Premium Erweiterungen schon gesehen?"
557
-
558
- #: includes/views/wcpdf-extensions.php:16
559
- msgid "click items to read more"
560
- msgstr "klicke Elemente um weiterzulesen"
561
-
562
- #: includes/views/wcpdf-extensions.php:21
563
- msgid ""
564
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
565
- "system"
566
- msgstr ""
567
- "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
568
- "Abrechnungssystem benötigen"
569
-
570
- #: includes/views/wcpdf-extensions.php:23
571
- msgid ""
572
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
573
- "premium extensions:"
574
- msgstr ""
575
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
576
- "Erweiterungen:"
577
-
578
- #: includes/views/wcpdf-extensions.php:24
579
- msgid "Professional features:"
580
- msgstr "Professionelle Features:"
581
-
582
- #: includes/views/wcpdf-extensions.php:26
583
- #: includes/views/wcpdf-extensions.php:56
584
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
585
- msgstr "E-Mail/Druck/Download <b>PDF Gutschrift & Proforma Rechnung</b>"
586
-
587
- #: includes/views/wcpdf-extensions.php:27
588
- #: includes/views/wcpdf-extensions.php:57
589
- msgid ""
590
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
591
- "packing slips, for example to a drop-shipper or a supplier."
592
- msgstr ""
593
- "Senden Sie eine separate <b>Benachrichtigungs-E-Mail</b> mit (oder ohne) PDF-"
594
- "Rechnungen/Packzettel, z.B. an einen Drop-Shipper oder Lieferanten."
595
-
596
- #: includes/views/wcpdf-extensions.php:28
597
- #: includes/views/wcpdf-extensions.php:58
598
- msgid ""
599
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
600
- "document) to the WooCommerce emails of your choice."
601
- msgstr ""
602
- "Hängen Sie <b>bis zu 3 statische Dateien</b> (z.B. ein AGB-Dokument) an die "
603
- "WooCommerce-E-Mails Ihrer Wahl an."
604
-
605
- #: includes/views/wcpdf-extensions.php:29
606
- #: includes/views/wcpdf-extensions.php:59
607
- msgid ""
608
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
609
- "and credit notes or utilize the main invoice numbering system"
610
- msgstr ""
611
- "Wendet ein <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
612
- "Rechnungen und Gutschriften oder passt das Hauptsystem der "
613
- "Rechnungsnummerierung an"
614
-
615
- #: includes/views/wcpdf-extensions.php:30
616
- #: includes/views/wcpdf-extensions.php:60
617
- msgid ""
618
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
619
- "additional custom fields, font sizes etc. without the need to create a "
620
- "custom template."
621
- msgstr ""
622
- "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
623
- "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
624
- "zu erstellen."
625
-
626
- #: includes/views/wcpdf-extensions.php:31
627
- #: includes/views/wcpdf-extensions.php:61
628
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
629
- msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
630
-
631
- #: includes/views/wcpdf-extensions.php:33
632
- #: includes/views/wcpdf-extensions.php:131
633
- msgid "Advanced, customizable templates"
634
- msgstr "Erweiterte, anpassbare Vorlagen"
635
-
636
- #: includes/views/wcpdf-extensions.php:35
637
- #: includes/views/wcpdf-extensions.php:134
638
- msgid ""
639
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
640
- "your needs with a drag & drop customizer"
641
- msgstr ""
642
- "Passen Sie den Rechnungsinhalt (Preise, Steuern, Thumbnails) mit einem Drag "
643
- "& Drop-Customizer vollständig an Ihre Bedürfnisse an."
644
-
645
- #: includes/views/wcpdf-extensions.php:36
646
- #: includes/views/wcpdf-extensions.php:135
647
- msgid "Two extra stylish premade templates (Modern & Business)"
648
- msgstr "Zwei extra stylische vorgefertigte Templates (Modern & Business)"
649
-
650
- #: includes/views/wcpdf-extensions.php:38
651
- msgid "Upload automatically to dropbox"
652
- msgstr "Automatischer Upload in die Dropbox"
653
-
654
- #: includes/views/wcpdf-extensions.php:40
655
- #: includes/views/wcpdf-extensions.php:97
656
- msgid ""
657
- "This extension conveniently uploads all the invoices (and other pdf "
658
- "documents from the professional extension) that are emailed to your "
659
- "customers to Dropbox. The best way to keep your invoice administration up to "
660
- "date!"
661
- msgstr ""
662
- "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
663
- "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
664
- "Rechnungsadministration aktuell zu halten!"
665
-
666
- #: includes/views/wcpdf-extensions.php:43
667
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
668
- msgstr "WooCommerce PDF Invoices & Packing Slips ordern"
669
-
670
- #: includes/views/wcpdf-extensions.php:52
671
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
672
- msgstr "Upgrade auf Pro: Proforma Rechnung, Gutschrift & mehr!"
673
-
674
- #: includes/views/wcpdf-extensions.php:54
675
- msgid ""
676
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
677
- "features:"
678
- msgstr ""
679
- "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
680
-
681
- #: includes/views/wcpdf-extensions.php:63
682
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
683
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
684
-
685
- #: includes/views/wcpdf-extensions.php:71
686
- msgid "Automatically send payment reminders to your customers"
687
- msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
688
-
689
- #: includes/views/wcpdf-extensions.php:73
690
- msgid "WooCommerce Smart Reminder emails"
691
- msgstr "WooCommerce Smart Erinnerungsmails"
692
-
693
- #: includes/views/wcpdf-extensions.php:75
694
- msgid "<b>Completely automatic</b> scheduled emails"
695
- msgstr "<b>Vollautomatische</b> geplant e-Mails"
696
-
697
- #: includes/views/wcpdf-extensions.php:76
698
- msgid ""
699
- "<b>Rich text editor</b> for the email text, including placeholders for data "
700
- "from the order (name, order total, etc)"
701
- msgstr ""
702
- "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
703
- "aus der Bestellung (Name, Auftragssumme, etc.)"
704
-
705
- #: includes/views/wcpdf-extensions.php:77
706
- msgid ""
707
- "Configure the exact requirements for sending an email (time after order, "
708
- "order status, payment method)"
709
- msgstr ""
710
- "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
711
- "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
712
-
713
- #: includes/views/wcpdf-extensions.php:78
714
- msgid ""
715
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
716
- "order language."
717
- msgstr ""
718
- "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
719
- "Bestellsprache versendet."
720
-
721
- #: includes/views/wcpdf-extensions.php:79
722
- msgid ""
723
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
724
- "reminders, repeat purchases)"
725
- msgstr ""
726
- "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
727
- "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
728
-
729
- #: includes/views/wcpdf-extensions.php:80
730
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
731
- msgstr ""
732
- "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
733
-
734
- #: includes/views/wcpdf-extensions.php:82
735
- msgid "Get WooCommerce Smart Reminder Emails"
736
- msgstr "WooCommerce Smart Erinnerungsmails ordern"
737
-
738
- #: includes/views/wcpdf-extensions.php:91
739
- msgid "Upload all invoices automatically to your dropbox"
740
- msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
741
-
742
- #: includes/views/wcpdf-extensions.php:98
743
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
744
- msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
745
-
746
- #: includes/views/wcpdf-extensions.php:110
747
- msgid ""
748
- "Automatically send new orders or packing slips to your printer, as soon as "
749
- "the customer orders!"
750
- msgstr ""
751
- "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
752
- "sobald ein Kunde bestellt."
753
-
754
- #: includes/views/wcpdf-extensions.php:116
755
- msgid ""
756
- "Check out the WooCommerce Automatic Order Printing extension from our "
757
- "partners at Simba Hosting"
758
- msgstr ""
759
- "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
760
- "Partner Simba Hosting "
761
-
762
- #: includes/views/wcpdf-extensions.php:117
763
- msgid "WooCommerce Automatic Order Printing"
764
- msgstr "WooCommerce Automatic Order Printing"
765
-
766
- #: includes/views/wcpdf-extensions.php:136
767
- #, php-format
768
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
769
- msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
770
-
771
- #: includes/views/wcpdf-extensions.php:137
772
- #, php-format
773
- msgid "For custom templates, contact us at %s."
774
- msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
775
-
776
- #: includes/views/wcpdf-extensions.php:146
777
- msgid "Hide this message"
778
- msgstr "Diese Nachricht ausblenden"
779
-
780
- #: includes/views/wcpdf-settings-page.php:8
781
- msgid "WooCommerce PDF Invoices"
782
- msgstr "WooCommerce PDF Rechnungen"
783
-
784
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
785
- msgid "Billing Address:"
786
- msgstr "Rechnungsadresse:"
787
-
788
- #: templates/Simple/invoice.php:41
789
- msgid "Ship To:"
790
- msgstr "Versand nach:"
791
-
792
- #: templates/Simple/invoice.php:50
793
- msgid "Invoice Number:"
794
- msgstr "Rechnungsnummer:"
795
-
796
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
797
- msgid "Order Number:"
798
- msgstr "Bestellnummer:"
799
-
800
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
801
- msgid "Order Date:"
802
- msgstr "Bestelldatum:"
803
-
804
- #: templates/Simple/invoice.php:69
805
- msgid "Payment Method:"
806
- msgstr "Zahlungsart:"
807
-
808
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
809
- msgid "Product"
810
- msgstr "Produkt"
811
-
812
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
813
- msgid "Quantity"
814
- msgstr "Anzahl"
815
-
816
- #: templates/Simple/invoice.php:85
817
- msgid "Price"
818
- msgstr "Preis"
819
-
820
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
821
- msgid "Description"
822
- msgstr "Beschreibung"
823
-
824
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
825
- msgid "SKU"
826
- msgstr "Art.-Nr."
827
-
828
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
829
- msgid "SKU:"
830
- msgstr "Art.-Nr.:"
831
-
832
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
833
- msgid "Weight:"
834
- msgstr "Gewicht:"
835
-
836
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
837
- msgid "Customer Notes"
838
- msgstr "Anmerkungen"
839
-
840
- #: templates/Simple/packing-slip.php:30
841
- msgid "Shipping Address:"
842
- msgstr "Lieferadresse:"
843
-
844
- #: templates/Simple/packing-slip.php:57
845
- msgid "Shipping Method:"
846
- msgstr "Versandart:"
847
-
848
- #: woocommerce-pdf-invoices-packingslips.php:229
849
- #, php-format
850
- msgid ""
851
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
852
- "installed & activated!"
853
- msgstr ""
854
- "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
855
- "installiert und aktiviert!"
856
-
857
- #: woocommerce-pdf-invoices-packingslips.php:241
858
- msgid ""
859
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
860
- "higher recommended)."
861
- msgstr ""
862
- "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher (5.6 "
863
- "oder höher empfohlen)."
864
-
865
- #: woocommerce-pdf-invoices-packingslips.php:242
866
- msgid "How to update your PHP version"
867
- msgstr "So aktualisieren Sie Ihre PHP-Version"
868
-
869
- #~ msgid "Attach invoice to:"
870
- #~ msgstr "Rechnung anfügen zu:"
871
-
872
- #~ msgid ""
873
- #~ "This is the number that will be used on the next invoice that is created. "
874
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
875
- #~ "first invoice that is created and increases for every new invoice. Note "
876
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
877
- #~ "number, this could create double invoice numbers!"
878
- #~ msgstr ""
879
- #~ "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
880
- #~ "Vordefiniert startet die Rechnungsnummerierung mit der WooCommerce "
881
- #~ "Bestellnummer auf der ersten generierten Rechnung und erhöht mit jeder "
882
- #~ "neuen Rechnung. Beachte bitte das die Überschreibung der höchsten (PDF) "
883
- #~ "Rechnungsnummer mit einer kleineren Nummer zu doppelten Rechnungsnummern "
884
- #~ "führen kann."
885
-
886
- #~ msgid "Invoice number format"
887
- #~ msgstr "Rechnungsnummer"
888
-
889
- #~ msgid "Template"
890
- #~ msgstr "Vorlage"
891
-
892
- #~ msgid "Admin New Order email"
893
- #~ msgstr "Admin Neue Bestellung E-Mail"
894
-
895
- #~ msgid "Customer Processing Order email"
896
- #~ msgstr "Kunde In Bearbeitung E-Mail"
897
-
898
- #~ msgid "Customer Completed Order email"
899
- #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
900
-
901
- #~ msgid "Customer Invoice email"
902
- #~ msgstr "Kunde Rechnung E-Mail"
903
-
904
- #~ msgid "PDF Template settings"
905
- #~ msgstr "PDF Vorlageneinstellungen"
906
-
907
- #~ msgid "Display built-in sequential invoice number"
908
- #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
909
-
910
- #~ msgid ""
911
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
912
- #~ "respectively"
913
- #~ msgstr ""
914
- #~ "um das Bestelljahr und/oder -monat zu nutzen, verwende [order_year] oder "
915
- #~ "[order_month]"
916
-
917
- #~ msgid "PDF Packing Slips"
918
- #~ msgstr "PDF Lieferscheine"
919
-
920
- #~ msgid "PDF Invoice"
921
- #~ msgstr "PDF Rechnung"
922
-
923
- #~ msgid "PDF Packing Slip"
924
- #~ msgstr "PDF Lieferschein"
925
-
926
- #~ msgid "PDF Invoice Number (unformatted!)"
927
- #~ msgstr "PDF Rechnungsnummer (unformatiert)"
928
-
929
- #~ msgid "More advanced templates"
930
- #~ msgstr "Weiter entwickelte Voralgen"
931
-
932
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
933
- #~ msgstr ""
934
- #~ "Stylisch moderne Rechnungen & Lieferscheine mit Miniaturbildern vom "
935
- #~ "Produkt!"
936
-
937
- #~ msgid "More tax details on the invoices!"
938
- #~ msgstr "Zusätzliche Steuerdetails auf der Rechnung!"
939
-
940
- #~ msgid ""
941
- #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
942
- #~ "to the WooCommerce emails of your choice."
943
- #~ msgstr ""
944
- #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
945
- #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-13 13:13+0200\n"
5
+ "PO-Revision-Date: 2018-02-06 13:05+0100\n"
6
+ "Last-Translator: Thomas Bunte <thomas@bunte-tk.de>\n"
7
+ "Language-Team: PROnatur24 <info@pronatur24.eu>\n"
8
+ "Language: de_DE\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 2.0.6\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Rechnungsnummer"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "PDF erstellen"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr "PDF Rechnungs Daten"
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Rechnung"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Rechnungsdatum:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr "Erstellen Sie Rechnungsnummer und Rechnungsdatum"
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr "Rechnungsnummer (unformatiert!)"
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "Std"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "Min"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Rechnung runterladen (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "Du hast keine Berechtigung diese Seite anzuzeigen."
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "Einige der Exportparameter fehlen."
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<b>Achtung:</b> Die folgenden Einstellungen sind nur für die Fehlersuche / "
79
+ "Entwicklung gedacht. Verwenden Sie sie nicht auf einer Live-Website!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Diese Felder werden in den Spalten der (optionalen) Fußzeile der <em>Modern "
88
+ "(Premium)</em> Vorlage verwendet, können aber auch für andere Elemente in "
89
+ "deiner angepassten Vorlage verwendet werden."
90
+
91
+ #: includes/class-wcpdf-settings-callbacks.php:301
92
+ msgid "Image resolution"
93
+ msgstr "Bildauflösung"
94
+
95
+ #: includes/class-wcpdf-settings-callbacks.php:325
96
+ msgid "Save"
97
+ msgstr "Speichern"
98
+
99
+ #: includes/class-wcpdf-settings-debug.php:34
100
+ msgid "Debug settings"
101
+ msgstr "Debug Einstellungen"
102
+
103
+ #: includes/class-wcpdf-settings-debug.php:40
104
+ msgid "Legacy mode"
105
+ msgstr "Legacy mode"
106
+
107
+ #: includes/class-wcpdf-settings-debug.php:46
108
+ msgid ""
109
+ "Legacy mode ensures compatibility with templates and filters from previous "
110
+ "versions."
111
+ msgstr ""
112
+ "Der Legacy-Modus sorgt für Kompatibilität mit Vorlagen und Filtern aus "
113
+ "früheren Versionen."
114
+
115
+ #: includes/class-wcpdf-settings-debug.php:52
116
+ msgid "Enable debug output"
117
+ msgstr "Debug-Ausgabe aktivieren"
118
+
119
+ #: includes/class-wcpdf-settings-debug.php:58
120
+ msgid ""
121
+ "Enable this option to output plugin errors if you're getting a blank page or "
122
+ "other PDF generation issues"
123
+ msgstr ""
124
+ "Aktivieren Sie diese Option um Plugin-Fehler auszugeben, wenn Sie eine leere "
125
+ "Seite oder andere PDF-Generierung-Probleme bekommen"
126
+
127
+ #: includes/class-wcpdf-settings-debug.php:64
128
+ msgid "Output to HTML"
129
+ msgstr "HTML-Ausgabe"
130
+
131
+ #: includes/class-wcpdf-settings-debug.php:70
132
+ msgid ""
133
+ "Send the template output as HTML to the browser instead of creating a PDF."
134
+ msgstr ""
135
+ "Senden die Ausgabe als HTML an einen Browser, anstatt ein PDF zu erstellen."
136
+
137
+ #: includes/class-wcpdf-settings-documents.php:29
138
+ #: includes/class-wcpdf-settings.php:84
139
+ msgid "Documents"
140
+ msgstr "Dokumente"
141
+
142
+ #: includes/class-wcpdf-settings-documents.php:45
143
+ msgid ""
144
+ "All available documents are listed below. Click on a document to configure "
145
+ "it."
146
+ msgstr ""
147
+ "Alle verfügbaren Dokumente sind unten aufgeführt. Klicken Sie auf ein "
148
+ "Dokument, um es zu konfigurieren."
149
+
150
+ #: includes/class-wcpdf-settings-general.php:37
151
+ msgid "General settings"
152
+ msgstr "Allgemeine Einstellungen"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:43
155
+ msgid "How do you want to view the PDF?"
156
+ msgstr "Wie soll das PDF angezeigt werden?"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:50
159
+ msgid "Download the PDF"
160
+ msgstr "PDF runterladen"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:51
163
+ msgid "Open the PDF in a new browser tab/window"
164
+ msgstr "PDF in einem neuen Browser Tab/Fenster öffnen"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:58
167
+ msgid "Choose a template"
168
+ msgstr "Wähle ein Template"
169
+
170
+ #: includes/class-wcpdf-settings-general.php:65
171
+ #, php-format
172
+ msgid ""
173
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
174
+ "your (child) theme in <code>%s</code> to customize them"
175
+ msgstr ""
176
+ "Wenn du eigene Vorlagen verwenden willst, dann kopiere alle Dateien von "
177
+ "<code>%s</code> nach <code>%s</code> und passe sie dort an."
178
+
179
+ #: includes/class-wcpdf-settings-general.php:71
180
+ msgid "Paper size"
181
+ msgstr "Papierformat"
182
+
183
+ #: includes/class-wcpdf-settings-general.php:78
184
+ msgid "A4"
185
+ msgstr "A4"
186
+
187
+ #: includes/class-wcpdf-settings-general.php:79
188
+ msgid "Letter"
189
+ msgstr "Letter"
190
+
191
+ #: includes/class-wcpdf-settings-general.php:86
192
+ msgid "Extended currency symbol support"
193
+ msgstr "Support für erweiterte Währungs Zeichen"
194
+
195
+ #: includes/class-wcpdf-settings-general.php:92
196
+ msgid "Enable this if your currency symbol is not displaying properly"
197
+ msgstr ""
198
+ "Aktivieren Sie diese Option, wenn Ihre Währungssymbol nicht korrekt "
199
+ "ausgespielt wird."
200
+
201
+ #: includes/class-wcpdf-settings-general.php:98
202
+ msgid "Shop header/logo"
203
+ msgstr "Briefkopf-Logo"
204
+
205
+ #: includes/class-wcpdf-settings-general.php:104
206
+ msgid "Select or upload your invoice header/logo"
207
+ msgstr "Auswählen oder hochladen des Logos"
208
+
209
+ #: includes/class-wcpdf-settings-general.php:105
210
+ msgid "Set image"
211
+ msgstr "Logo festlegen"
212
+
213
+ #: includes/class-wcpdf-settings-general.php:106
214
+ msgid "Remove image"
215
+ msgstr "Logo entfernen"
216
+
217
+ #: includes/class-wcpdf-settings-general.php:113
218
+ msgid "Shop Name"
219
+ msgstr "Name des Shops"
220
+
221
+ #: includes/class-wcpdf-settings-general.php:126
222
+ msgid "Shop Address"
223
+ msgstr "Adresse des Shops"
224
+
225
+ #: includes/class-wcpdf-settings-general.php:141
226
+ msgid "Footer: terms & conditions, policies, etc."
227
+ msgstr "Fußzeile: allgemeine Bestimmungen, etc."
228
+
229
+ #: includes/class-wcpdf-settings-general.php:156
230
+ msgid "Extra template fields"
231
+ msgstr "Zusätzliche Vorlagenfelder"
232
+
233
+ #: includes/class-wcpdf-settings-general.php:162
234
+ msgid "Extra field 1"
235
+ msgstr "Zusatzfeld 1"
236
+
237
+ #: includes/class-wcpdf-settings-general.php:170
238
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
+ msgstr ""
240
+ "Das ist die Spalte 1 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
241
+
242
+ #: includes/class-wcpdf-settings-general.php:177
243
+ msgid "Extra field 2"
244
+ msgstr "Zusatzfeld 2"
245
+
246
+ #: includes/class-wcpdf-settings-general.php:185
247
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
+ msgstr ""
249
+ "Das ist die Spalte 2 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
250
+
251
+ #: includes/class-wcpdf-settings-general.php:192
252
+ msgid "Extra field 3"
253
+ msgstr "Zusatzfeld 3"
254
+
255
+ #: includes/class-wcpdf-settings-general.php:200
256
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
257
+ msgstr ""
258
+ "Das ist die Spalte 3 in der Fußzeile der <i>Modern (Premium)</i> Vorlage"
259
+
260
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
261
+ msgid "PDF Invoices"
262
+ msgstr "PDF Rechnungen"
263
+
264
+ #: includes/class-wcpdf-settings.php:58
265
+ msgid "Settings"
266
+ msgstr "Einstellungen"
267
+
268
+ #: includes/class-wcpdf-settings.php:71
269
+ msgid "Documentation"
270
+ msgstr "Dokumentation"
271
+
272
+ #: includes/class-wcpdf-settings.php:72
273
+ msgid "Support Forum"
274
+ msgstr "Support Forum"
275
+
276
+ #: includes/class-wcpdf-settings.php:83
277
+ msgid "General"
278
+ msgstr "Allgemein"
279
+
280
+ #: includes/class-wcpdf-settings.php:89
281
+ msgid "Status"
282
+ msgstr "Status"
283
+
284
+ #: includes/compatibility/class-wc-core-compatibility.php:222
285
+ msgid "WooCommerce"
286
+ msgstr "WooCommerce"
287
+
288
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
290
+ msgid "N/A"
291
+ msgstr "nicht verfügbar"
292
+
293
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
294
+ msgid "Payment method"
295
+ msgstr "Zahlungsart"
296
+
297
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
298
+ msgid "Shipping method"
299
+ msgstr "Versandart"
300
+
301
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
302
+ #, php-format
303
+ msgid "(includes %s)"
304
+ msgstr "(enthält %s)"
305
+
306
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
307
+ #, php-format
308
+ msgid "(Includes %s)"
309
+ msgstr "(Enthält %s)"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
312
+ msgid "Subtotal"
313
+ msgstr "Zwischensumme"
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
316
+ msgid "Shipping"
317
+ msgstr "Versand"
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
320
+ msgid "Discount"
321
+ msgstr "Rabatt"
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
324
+ msgid "VAT"
325
+ msgstr "MwSt."
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
328
+ msgid "Tax rate"
329
+ msgstr "MwSt-Satz"
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
332
+ msgid "Total ex. VAT"
333
+ msgstr "Gesamtsumme ohne MwSt."
334
+
335
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
336
+ msgid "Total"
337
+ msgstr "Gesamtsumme"
338
+
339
+ #: includes/documents/abstract-wcpdf-order-document.php:679
340
+ msgid "Admin email"
341
+ msgstr "Admin E-Mail"
342
+
343
+ #: includes/documents/abstract-wcpdf-order-document.php:682
344
+ msgid "Manual email"
345
+ msgstr "Manuelle E-Mail"
346
+
347
+ # This is a filename (prefix). do not use spaces or special characters!
348
+ #: includes/documents/class-wcpdf-invoice.php:85
349
+ msgid "invoice"
350
+ msgid_plural "invoices"
351
+ msgstr[0] "Rechnung"
352
+ msgstr[1] "Rechnungen"
353
+
354
+ #: includes/documents/class-wcpdf-invoice.php:130
355
+ #: includes/documents/class-wcpdf-packing-slip.php:94
356
+ msgid "Enable"
357
+ msgstr "Aktivieren"
358
+
359
+ #: includes/documents/class-wcpdf-invoice.php:141
360
+ msgid "Attach to:"
361
+ msgstr "Anhängen an"
362
+
363
+ #: includes/documents/class-wcpdf-invoice.php:148
364
+ #, php-format
365
+ msgid ""
366
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
367
+ "permissions for this folder! Without having write access to this folder, the "
368
+ "plugin will not be able to email invoices."
369
+ msgstr ""
370
+ "Das temporäre Verzeichnis (<code>%s</code>) ist nicht beschreibbar, bitte "
371
+ "überprüfe die Berechtigungen dieses Verzeichnisses. Ohne Schreibrechte "
372
+ "können keine E-Mail - Rechnungen verschickt werden."
373
+
374
+ #: includes/documents/class-wcpdf-invoice.php:154
375
+ msgid "Display shipping address"
376
+ msgstr "Lieferadresse anzeigen"
377
+
378
+ #: includes/documents/class-wcpdf-invoice.php:160
379
+ msgid ""
380
+ "Display shipping address (in addition to the default billing address) if "
381
+ "different from billing address"
382
+ msgstr ""
383
+ "Zeigt die Lieferadresse auf der Rechnung (zusätzlich zu den Standard-"
384
+ "Rechnungsadresse), falls abweichend von Rechnungsadresse"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:166
387
+ #: includes/documents/class-wcpdf-packing-slip.php:117
388
+ msgid "Display email address"
389
+ msgstr "E-Mail-Adresse anzeigen"
390
+
391
+ #: includes/documents/class-wcpdf-invoice.php:177
392
+ #: includes/documents/class-wcpdf-packing-slip.php:128
393
+ msgid "Display phone number"
394
+ msgstr "Telefonnummer anzeigen"
395
+
396
+ #: includes/documents/class-wcpdf-invoice.php:188
397
+ msgid "Display invoice date"
398
+ msgstr "Rechnungsdatum anzeigen"
399
+
400
+ #: includes/documents/class-wcpdf-invoice.php:200
401
+ msgid "Display invoice number"
402
+ msgstr "Rechnungsnummer anzeigen"
403
+
404
+ #: includes/documents/class-wcpdf-invoice.php:212
405
+ msgid "Next invoice number (without prefix/suffix etc.)"
406
+ msgstr "Nächste Rechnungsnummer (ohne Präfix/Suffix usw.)"
407
+
408
+ #: includes/documents/class-wcpdf-invoice.php:218
409
+ msgid ""
410
+ "This is the number that will be used for the next document. By default, "
411
+ "numbering starts from 1 and increases for every new document. Note that if "
412
+ "you override this and set it lower than the current/highest number, this "
413
+ "could create duplicate numbers!"
414
+ msgstr ""
415
+ "Dies ist die Nummer, die für das nächste Dokument verwendet wird. "
416
+ "Standardmäßig beginnt die Nummerierung bei 1 und erhöht sich mit jedem neuen "
417
+ "Dokument. Beachten Sie, dass, wenn Sie dies überschreiben und es niedriger "
418
+ "als die aktuelle/höchste Zahl setzen, dies zu doppelten Zahlen führen kann!"
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:224
421
+ msgid "Number format"
422
+ msgstr "Nummernformat"
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:232
425
+ msgid "Prefix"
426
+ msgstr "Präfix"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:234
429
+ msgid ""
430
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
431
+ "respectively"
432
+ msgstr ""
433
+ "Um das Rechnungsjahr bzw. den Rechnungsmonat zu verwenden, verwenden Sie "
434
+ "[invoice_year] bzw.[invoice_month]."
435
+
436
+ #: includes/documents/class-wcpdf-invoice.php:237
437
+ msgid "Suffix"
438
+ msgstr "Suffix"
439
+
440
+ #: includes/documents/class-wcpdf-invoice.php:242
441
+ msgid "Padding"
442
+ msgstr "Abstand"
443
+
444
+ #: includes/documents/class-wcpdf-invoice.php:245
445
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
446
+ msgstr ""
447
+ "Anzahl der Zeichen hier eingeben - \"6\" eingeben um 42 als 000042 "
448
+ "darzustellen"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:248
451
+ msgid ""
452
+ "note: if you have already created a custom invoice number format with a "
453
+ "filter, the above settings will be ignored"
454
+ msgstr ""
455
+ "beachte: solltest du schon mit einem Filter ein eigenes Format der "
456
+ "Rechnungsnummer erstellt haben, werden obige Einstellungen ignoriert"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:254
459
+ msgid "Reset invoice number yearly"
460
+ msgstr "Rechnungsnummer jährlich zurücksetzen"
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:265
463
+ msgid "Allow My Account invoice download"
464
+ msgstr "Erlauben Sie den Download der Rechnung im Kunden-Konto"
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:272
467
+ msgid "Only when an invoice is already created/emailed"
468
+ msgstr "Nur wenn eine Rechnung bereits erstellt bzw. versendet wurde."
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:273
471
+ msgid "Only for specific order statuses (define below)"
472
+ msgstr "Nur für bestimmten Bestellstatus (Definition unten)"
473
+
474
+ #: includes/documents/class-wcpdf-invoice.php:274
475
+ msgid "Always"
476
+ msgstr "Immer"
477
+
478
+ #: includes/documents/class-wcpdf-invoice.php:275
479
+ msgid "Never"
480
+ msgstr "Niemals"
481
+
482
+ #: includes/documents/class-wcpdf-invoice.php:290
483
+ msgid "Enable invoice number column in the orders list"
484
+ msgstr "Aktivierung Spalte Rechnungsnummer in Bestellübersicht"
485
+
486
+ #: includes/documents/class-wcpdf-invoice.php:301
487
+ msgid "Disable for free products"
488
+ msgstr "Für kostenlose Produkte deaktivieren"
489
+
490
+ #: includes/documents/class-wcpdf-invoice.php:307
491
+ msgid ""
492
+ "Disable automatic creation/attachment when only free products are ordered"
493
+ msgstr ""
494
+ "Deaktivieren Sie das automatische Erstellen/Anhängen, wenn nur kostenlose "
495
+ "Produkte bestellt werden."
496
+
497
+ #: includes/documents/class-wcpdf-invoice.php:321
498
+ msgid "Invoice numbers are created by a third-party extension."
499
+ msgstr ""
500
+ "Rechnungsnummern entstehen durch eine Erweiterung eines Drittanbieters."
501
+
502
+ #: includes/documents/class-wcpdf-invoice.php:323
503
+ #, php-format
504
+ msgid "Configure it <a href=\"%s\">here</a>."
505
+ msgstr "Konfigurieren Sie es <a href=\"%s\">hier</a>."
506
+
507
+ #: includes/documents/class-wcpdf-packing-slip.php:32
508
+ #: includes/documents/class-wcpdf-packing-slip.php:41
509
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
510
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
511
+ msgid "Packing Slip"
512
+ msgstr "Lieferschein"
513
+
514
+ # This is a filename (prefix). do not use spaces or special characters!
515
+ #: includes/documents/class-wcpdf-packing-slip.php:53
516
+ msgid "packing-slip"
517
+ msgid_plural "packing-slips"
518
+ msgstr[0] "Lieferschein"
519
+ msgstr[1] "Lieferscheine"
520
+
521
+ #: includes/documents/class-wcpdf-packing-slip.php:105
522
+ msgid "Display billing address"
523
+ msgstr "Rechnungsadresse anzeigen"
524
+
525
+ #: includes/documents/class-wcpdf-packing-slip.php:111
526
+ msgid ""
527
+ "Display billing address (in addition to the default shipping address) if "
528
+ "different from shipping address"
529
+ msgstr ""
530
+ "Rechnungsadresse anzeigen (zusätzlich zur Standard-Lieferadresse), falls "
531
+ "abweichend von der Versandadresse"
532
+
533
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
534
+ msgid "Legacy Document"
535
+ msgstr "Legacy Dokument"
536
+
537
+ #: includes/legacy/class-wcpdf-legacy.php:70
538
+ msgid "Error"
539
+ msgstr "Fehler"
540
+
541
+ #: includes/legacy/class-wcpdf-legacy.php:71
542
+ msgid ""
543
+ "An outdated template or action hook was used to generate the PDF. Legacy "
544
+ "mode has been activated, please try again by reloading this page."
545
+ msgstr ""
546
+ "Ein veraltetes Template oder Action Hook wurde verwendet, um das PDF zu "
547
+ "erzeugen. Der Legacy-Modus wurde aktiviert, bitte versuchen Sie es erneut, "
548
+ "indem Sie diese Seite neu laden."
549
+
550
+ #: includes/legacy/class-wcpdf-legacy.php:74
551
+ msgid "The following function was called"
552
+ msgstr "Die folgende Funktion wurde aufgerufen"
553
+
554
+ #: includes/views/wcpdf-extensions.php:15
555
+ msgid "Check out these premium extensions!"
556
+ msgstr "Premium Erweiterungen schon gesehen?"
557
+
558
+ #: includes/views/wcpdf-extensions.php:16
559
+ msgid "click items to read more"
560
+ msgstr "klicke Elemente um weiterzulesen"
561
+
562
+ #: includes/views/wcpdf-extensions.php:21
563
+ msgid ""
564
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
565
+ "system"
566
+ msgstr ""
567
+ "Premium PDF Invoice Bundle: Alles was Sie für ein perfektes "
568
+ "Abrechnungssystem benötigen"
569
+
570
+ #: includes/views/wcpdf-extensions.php:23
571
+ msgid ""
572
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
573
+ "premium extensions:"
574
+ msgstr ""
575
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Premium-"
576
+ "Erweiterungen:"
577
+
578
+ #: includes/views/wcpdf-extensions.php:24
579
+ msgid "Professional features:"
580
+ msgstr "Professionelle Features:"
581
+
582
+ #: includes/views/wcpdf-extensions.php:26
583
+ #: includes/views/wcpdf-extensions.php:56
584
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
585
+ msgstr "E-Mail/Druck/Download <b>PDF Gutschrift & Proforma Rechnung</b>"
586
+
587
+ #: includes/views/wcpdf-extensions.php:27
588
+ #: includes/views/wcpdf-extensions.php:57
589
+ msgid ""
590
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
591
+ "packing slips, for example to a drop-shipper or a supplier."
592
+ msgstr ""
593
+ "Senden Sie eine separate <b>Benachrichtigungs-E-Mail</b> mit (oder ohne) PDF-"
594
+ "Rechnungen/Packzettel, z.B. an einen Drop-Shipper oder Lieferanten."
595
+
596
+ #: includes/views/wcpdf-extensions.php:28
597
+ #: includes/views/wcpdf-extensions.php:58
598
+ msgid ""
599
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
600
+ "document) to the WooCommerce emails of your choice."
601
+ msgstr ""
602
+ "Hängen Sie <b>bis zu 3 statische Dateien</b> (z.B. ein AGB-Dokument) an die "
603
+ "WooCommerce-E-Mails Ihrer Wahl an."
604
+
605
+ #: includes/views/wcpdf-extensions.php:29
606
+ #: includes/views/wcpdf-extensions.php:59
607
+ msgid ""
608
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
609
+ "and credit notes or utilize the main invoice numbering system"
610
+ msgstr ""
611
+ "Wendet ein <b>separates Nummerierungssystem</b> und/oder Format für Proforma "
612
+ "Rechnungen und Gutschriften oder passt das Hauptsystem der "
613
+ "Rechnungsnummerierung an"
614
+
615
+ #: includes/views/wcpdf-extensions.php:30
616
+ #: includes/views/wcpdf-extensions.php:60
617
+ msgid ""
618
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
619
+ "additional custom fields, font sizes etc. without the need to create a "
620
+ "custom template."
621
+ msgstr ""
622
+ "<b>Anpassung</b> vom <b>Liefer- & Rechnugnsadresse</b> Format um zusätzliche "
623
+ "freie Felder, Schriftgrößen, usw. einzufügen ohne ein individuellen Template "
624
+ "zu erstellen."
625
+
626
+ #: includes/views/wcpdf-extensions.php:31
627
+ #: includes/views/wcpdf-extensions.php:61
628
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
629
+ msgstr "Nutzung vom Plugin für Multisprachen <b>WPML</b> Einrichtungen"
630
+
631
+ #: includes/views/wcpdf-extensions.php:33
632
+ #: includes/views/wcpdf-extensions.php:131
633
+ msgid "Advanced, customizable templates"
634
+ msgstr "Erweiterte, anpassbare Vorlagen"
635
+
636
+ #: includes/views/wcpdf-extensions.php:35
637
+ #: includes/views/wcpdf-extensions.php:134
638
+ msgid ""
639
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
640
+ "your needs with a drag & drop customizer"
641
+ msgstr ""
642
+ "Passen Sie den Rechnungsinhalt (Preise, Steuern, Thumbnails) mit einem Drag "
643
+ "& Drop-Customizer vollständig an Ihre Bedürfnisse an."
644
+
645
+ #: includes/views/wcpdf-extensions.php:36
646
+ #: includes/views/wcpdf-extensions.php:135
647
+ msgid "Two extra stylish premade templates (Modern & Business)"
648
+ msgstr "Zwei extra stylische vorgefertigte Templates (Modern & Business)"
649
+
650
+ #: includes/views/wcpdf-extensions.php:38
651
+ msgid "Upload automatically to dropbox"
652
+ msgstr "Automatischer Upload in die Dropbox"
653
+
654
+ #: includes/views/wcpdf-extensions.php:40
655
+ #: includes/views/wcpdf-extensions.php:97
656
+ msgid ""
657
+ "This extension conveniently uploads all the invoices (and other pdf "
658
+ "documents from the professional extension) that are emailed to your "
659
+ "customers to Dropbox. The best way to keep your invoice administration up to "
660
+ "date!"
661
+ msgstr ""
662
+ "Diese Erweiterung lädt alle Rechnungen (und zusätzlich aktivieren PDF "
663
+ "Dokumente) die dem Kunden gemailt werden zur Dropbox. Die beste Weise um die "
664
+ "Rechnungsadministration aktuell zu halten!"
665
+
666
+ #: includes/views/wcpdf-extensions.php:43
667
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
668
+ msgstr "WooCommerce PDF Invoices & Packing Slips ordern"
669
+
670
+ #: includes/views/wcpdf-extensions.php:52
671
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
672
+ msgstr "Upgrade auf Pro: Proforma Rechnung, Gutschrift & mehr!"
673
+
674
+ #: includes/views/wcpdf-extensions.php:54
675
+ msgid ""
676
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
677
+ "features:"
678
+ msgstr ""
679
+ "Verbessere WooCommerce PDF Invoices & Packing Slips mit diesen Funktionen:"
680
+
681
+ #: includes/views/wcpdf-extensions.php:63
682
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
683
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips Professional!"
684
+
685
+ #: includes/views/wcpdf-extensions.php:71
686
+ msgid "Automatically send payment reminders to your customers"
687
+ msgstr "Automatisch Zahlungserinnerungen an Ihre Kunden senden"
688
+
689
+ #: includes/views/wcpdf-extensions.php:73
690
+ msgid "WooCommerce Smart Reminder emails"
691
+ msgstr "WooCommerce Smart Erinnerungsmails"
692
+
693
+ #: includes/views/wcpdf-extensions.php:75
694
+ msgid "<b>Completely automatic</b> scheduled emails"
695
+ msgstr "<b>Vollautomatische</b> geplant e-Mails"
696
+
697
+ #: includes/views/wcpdf-extensions.php:76
698
+ msgid ""
699
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
700
+ "from the order (name, order total, etc)"
701
+ msgstr ""
702
+ "<b>Rich Text Editor</b> für den E-Mail-Text, inklusive Platzhalter für Daten "
703
+ "aus der Bestellung (Name, Auftragssumme, etc.)"
704
+
705
+ #: includes/views/wcpdf-extensions.php:77
706
+ msgid ""
707
+ "Configure the exact requirements for sending an email (time after order, "
708
+ "order status, payment method)"
709
+ msgstr ""
710
+ "Konfigurieren Sie die genauen Voraussetzungen für das Versenden einer E-Mail "
711
+ "(Zeit nach der Bestellung, Bestellstatus, Zahlungsweise)."
712
+
713
+ #: includes/views/wcpdf-extensions.php:78
714
+ msgid ""
715
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
716
+ "order language."
717
+ msgstr ""
718
+ "Vollständig <b>WPML-kompatibel</b> - E-Mails werden automatisch in der "
719
+ "Bestellsprache versendet."
720
+
721
+ #: includes/views/wcpdf-extensions.php:79
722
+ msgid ""
723
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
724
+ "reminders, repeat purchases)"
725
+ msgstr ""
726
+ "<b>Super vielseitig einsetzbar!</b> Kann für jede Art von Erinnerungs-E-Mail "
727
+ "verwendet werden (Wiederholungserinnerungen, Wiederholungskäufe"
728
+
729
+ #: includes/views/wcpdf-extensions.php:80
730
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
731
+ msgstr ""
732
+ "Lässt sich nahtlos in das Plugin PDF Invoices & Packing Slips integrieren."
733
+
734
+ #: includes/views/wcpdf-extensions.php:82
735
+ msgid "Get WooCommerce Smart Reminder Emails"
736
+ msgstr "WooCommerce Smart Erinnerungsmails ordern"
737
+
738
+ #: includes/views/wcpdf-extensions.php:91
739
+ msgid "Upload all invoices automatically to your dropbox"
740
+ msgstr "Alle Rechnungen automatisch auf deine Dropbox hochladen"
741
+
742
+ #: includes/views/wcpdf-extensions.php:98
743
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
744
+ msgstr "Hole WooCommerce PDF Invoices & Packing Slips to dropbox!"
745
+
746
+ #: includes/views/wcpdf-extensions.php:110
747
+ msgid ""
748
+ "Automatically send new orders or packing slips to your printer, as soon as "
749
+ "the customer orders!"
750
+ msgstr ""
751
+ "Schicke neue Bestellungen oder Lieferscheine automatisch an deinen Drucker, "
752
+ "sobald ein Kunde bestellt."
753
+
754
+ #: includes/views/wcpdf-extensions.php:116
755
+ msgid ""
756
+ "Check out the WooCommerce Automatic Order Printing extension from our "
757
+ "partners at Simba Hosting"
758
+ msgstr ""
759
+ "Probiere die Erweiterung „WooCommerce Automatic Order Printing“ unserem "
760
+ "Partner Simba Hosting "
761
+
762
+ #: includes/views/wcpdf-extensions.php:117
763
+ msgid "WooCommerce Automatic Order Printing"
764
+ msgstr "WooCommerce Automatic Order Printing"
765
+
766
+ #: includes/views/wcpdf-extensions.php:136
767
+ #, php-format
768
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
769
+ msgstr "Schau dir die Premium PDF Invoice & Packing Slips Vorlagen an auf %s."
770
+
771
+ #: includes/views/wcpdf-extensions.php:137
772
+ #, php-format
773
+ msgid "For custom templates, contact us at %s."
774
+ msgstr "Für individuelle Vorlagen kontaktiert uns auf %s."
775
+
776
+ #: includes/views/wcpdf-extensions.php:146
777
+ msgid "Hide this message"
778
+ msgstr "Diese Nachricht ausblenden"
779
+
780
+ #: includes/views/wcpdf-settings-page.php:8
781
+ msgid "WooCommerce PDF Invoices"
782
+ msgstr "WooCommerce PDF Rechnungen"
783
+
784
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
785
+ msgid "Billing Address:"
786
+ msgstr "Rechnungsadresse:"
787
+
788
+ #: templates/Simple/invoice.php:41
789
+ msgid "Ship To:"
790
+ msgstr "Versand nach:"
791
+
792
+ #: templates/Simple/invoice.php:50
793
+ msgid "Invoice Number:"
794
+ msgstr "Rechnungsnummer:"
795
+
796
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
797
+ msgid "Order Number:"
798
+ msgstr "Bestellnummer:"
799
+
800
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
801
+ msgid "Order Date:"
802
+ msgstr "Bestelldatum:"
803
+
804
+ #: templates/Simple/invoice.php:69
805
+ msgid "Payment Method:"
806
+ msgstr "Zahlungsart:"
807
+
808
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
809
+ msgid "Product"
810
+ msgstr "Produkt"
811
+
812
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
813
+ msgid "Quantity"
814
+ msgstr "Anzahl"
815
+
816
+ #: templates/Simple/invoice.php:85
817
+ msgid "Price"
818
+ msgstr "Preis"
819
+
820
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
821
+ msgid "Description"
822
+ msgstr "Beschreibung"
823
+
824
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
825
+ msgid "SKU"
826
+ msgstr "Art.-Nr."
827
+
828
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
829
+ msgid "SKU:"
830
+ msgstr "Art.-Nr.:"
831
+
832
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
833
+ msgid "Weight:"
834
+ msgstr "Gewicht:"
835
+
836
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
837
+ msgid "Customer Notes"
838
+ msgstr "Anmerkungen"
839
+
840
+ #: templates/Simple/packing-slip.php:30
841
+ msgid "Shipping Address:"
842
+ msgstr "Lieferadresse:"
843
+
844
+ #: templates/Simple/packing-slip.php:57
845
+ msgid "Shipping Method:"
846
+ msgstr "Versandart:"
847
+
848
+ #: woocommerce-pdf-invoices-packingslips.php:229
849
+ #, php-format
850
+ msgid ""
851
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
852
+ "installed & activated!"
853
+ msgstr ""
854
+ "WooCommerce PDF Invoices & Packing Slips benötigt %sWooCommerce%s "
855
+ "installiert und aktiviert!"
856
+
857
+ #: woocommerce-pdf-invoices-packingslips.php:241
858
+ msgid ""
859
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
860
+ "higher recommended)."
861
+ msgstr ""
862
+ "WooCommerce PDF Invoices & Packing Slips erfordert PHP 5.3 oder höher (5.6 "
863
+ "oder höher empfohlen)."
864
+
865
+ #: woocommerce-pdf-invoices-packingslips.php:242
866
+ msgid "How to update your PHP version"
867
+ msgstr "So aktualisieren Sie Ihre PHP-Version"
868
+
869
+ #~ msgid "Attach invoice to:"
870
+ #~ msgstr "Rechnung anfügen zu:"
871
+
872
+ #~ msgid ""
873
+ #~ "This is the number that will be used on the next invoice that is created. "
874
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
875
+ #~ "first invoice that is created and increases for every new invoice. Note "
876
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
877
+ #~ "number, this could create double invoice numbers!"
878
+ #~ msgstr ""
879
+ #~ "Dies ist die Nummer welche für die nächste Rechnung verwendet wird. "
880
+ #~ "Vordefiniert startet die Rechnungsnummerierung mit der WooCommerce "
881
+ #~ "Bestellnummer auf der ersten generierten Rechnung und erhöht mit jeder "
882
+ #~ "neuen Rechnung. Beachte bitte das die Überschreibung der höchsten (PDF) "
883
+ #~ "Rechnungsnummer mit einer kleineren Nummer zu doppelten Rechnungsnummern "
884
+ #~ "führen kann."
885
+
886
+ #~ msgid "Invoice number format"
887
+ #~ msgstr "Rechnungsnummer"
888
+
889
+ #~ msgid "Template"
890
+ #~ msgstr "Vorlage"
891
+
892
+ #~ msgid "Admin New Order email"
893
+ #~ msgstr "Admin Neue Bestellung E-Mail"
894
+
895
+ #~ msgid "Customer Processing Order email"
896
+ #~ msgstr "Kunde In Bearbeitung E-Mail"
897
+
898
+ #~ msgid "Customer Completed Order email"
899
+ #~ msgstr "Kunde Bestellung abgeschlossen E-Mail"
900
+
901
+ #~ msgid "Customer Invoice email"
902
+ #~ msgstr "Kunde Rechnung E-Mail"
903
+
904
+ #~ msgid "PDF Template settings"
905
+ #~ msgstr "PDF Vorlageneinstellungen"
906
+
907
+ #~ msgid "Display built-in sequential invoice number"
908
+ #~ msgstr "Anzeige integrierte fortlaufende Rechnungsnummer"
909
+
910
+ #~ msgid ""
911
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
912
+ #~ "respectively"
913
+ #~ msgstr ""
914
+ #~ "um das Bestelljahr und/oder -monat zu nutzen, verwende [order_year] oder "
915
+ #~ "[order_month]"
916
+
917
+ #~ msgid "PDF Packing Slips"
918
+ #~ msgstr "PDF Lieferscheine"
919
+
920
+ #~ msgid "PDF Invoice"
921
+ #~ msgstr "PDF Rechnung"
922
+
923
+ #~ msgid "PDF Packing Slip"
924
+ #~ msgstr "PDF Lieferschein"
925
+
926
+ #~ msgid "PDF Invoice Number (unformatted!)"
927
+ #~ msgstr "PDF Rechnungsnummer (unformatiert)"
928
+
929
+ #~ msgid "More advanced templates"
930
+ #~ msgstr "Weiter entwickelte Voralgen"
931
+
932
+ #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
933
+ #~ msgstr ""
934
+ #~ "Stylisch moderne Rechnungen & Lieferscheine mit Miniaturbildern vom "
935
+ #~ "Produkt!"
936
+
937
+ #~ msgid "More tax details on the invoices!"
938
+ #~ msgstr "Zusätzliche Steuerdetails auf der Rechnung!"
939
+
940
+ #~ msgid ""
941
+ #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
942
+ #~ "to the WooCommerce emails of your choice."
943
+ #~ msgstr ""
944
+ #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
945
+ #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
languages/woocommerce-pdf-invoices-packing-slips-en_AU.po CHANGED
@@ -1,774 +1,774 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
- "Language: en_AU\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr ""
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr ""
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr ""
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr ""
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr ""
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr ""
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr ""
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr ""
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr ""
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr ""
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
-
79
- #: includes/class-wcpdf-settings-callbacks.php:36
80
- msgid ""
81
- "These are used for the (optional) footer columns in the <em>Modern "
82
- "(Premium)</em> template, but can also be used for other elements in your "
83
- "custom template"
84
- msgstr ""
85
-
86
- #: includes/class-wcpdf-settings-callbacks.php:301
87
- msgid "Image resolution"
88
- msgstr ""
89
-
90
- #: includes/class-wcpdf-settings-callbacks.php:325
91
- msgid "Save"
92
- msgstr ""
93
-
94
- #: includes/class-wcpdf-settings-debug.php:34
95
- msgid "Debug settings"
96
- msgstr ""
97
-
98
- #: includes/class-wcpdf-settings-debug.php:40
99
- msgid "Legacy mode"
100
- msgstr ""
101
-
102
- #: includes/class-wcpdf-settings-debug.php:46
103
- msgid ""
104
- "Legacy mode ensures compatibility with templates and filters from previous "
105
- "versions."
106
- msgstr ""
107
-
108
- #: includes/class-wcpdf-settings-debug.php:52
109
- msgid "Enable debug output"
110
- msgstr ""
111
-
112
- #: includes/class-wcpdf-settings-debug.php:58
113
- msgid ""
114
- "Enable this option to output plugin errors if you're getting a blank page or "
115
- "other PDF generation issues"
116
- msgstr ""
117
-
118
- #: includes/class-wcpdf-settings-debug.php:64
119
- msgid "Output to HTML"
120
- msgstr ""
121
-
122
- #: includes/class-wcpdf-settings-debug.php:70
123
- msgid ""
124
- "Send the template output as HTML to the browser instead of creating a PDF."
125
- msgstr ""
126
-
127
- #: includes/class-wcpdf-settings-documents.php:29
128
- #: includes/class-wcpdf-settings.php:84
129
- msgid "Documents"
130
- msgstr ""
131
-
132
- #: includes/class-wcpdf-settings-documents.php:45
133
- msgid ""
134
- "All available documents are listed below. Click on a document to configure "
135
- "it."
136
- msgstr ""
137
-
138
- #: includes/class-wcpdf-settings-general.php:37
139
- msgid "General settings"
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-settings-general.php:43
143
- msgid "How do you want to view the PDF?"
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-settings-general.php:50
147
- msgid "Download the PDF"
148
- msgstr ""
149
-
150
- #: includes/class-wcpdf-settings-general.php:51
151
- msgid "Open the PDF in a new browser tab/window"
152
- msgstr ""
153
-
154
- #: includes/class-wcpdf-settings-general.php:58
155
- msgid "Choose a template"
156
- msgstr ""
157
-
158
- #: includes/class-wcpdf-settings-general.php:65
159
- #, php-format
160
- msgid ""
161
- "Want to use your own template? Copy all the files from <code>%s</code> to "
162
- "your (child) theme in <code>%s</code> to customize them"
163
- msgstr ""
164
-
165
- #: includes/class-wcpdf-settings-general.php:71
166
- msgid "Paper size"
167
- msgstr ""
168
-
169
- #: includes/class-wcpdf-settings-general.php:78
170
- msgid "A4"
171
- msgstr ""
172
-
173
- #: includes/class-wcpdf-settings-general.php:79
174
- msgid "Letter"
175
- msgstr ""
176
-
177
- #: includes/class-wcpdf-settings-general.php:86
178
- msgid "Extended currency symbol support"
179
- msgstr ""
180
-
181
- #: includes/class-wcpdf-settings-general.php:92
182
- msgid "Enable this if your currency symbol is not displaying properly"
183
- msgstr ""
184
-
185
- #: includes/class-wcpdf-settings-general.php:98
186
- msgid "Shop header/logo"
187
- msgstr ""
188
-
189
- #: includes/class-wcpdf-settings-general.php:104
190
- msgid "Select or upload your invoice header/logo"
191
- msgstr ""
192
-
193
- #: includes/class-wcpdf-settings-general.php:105
194
- msgid "Set image"
195
- msgstr ""
196
-
197
- #: includes/class-wcpdf-settings-general.php:106
198
- msgid "Remove image"
199
- msgstr ""
200
-
201
- #: includes/class-wcpdf-settings-general.php:113
202
- msgid "Shop Name"
203
- msgstr ""
204
-
205
- #: includes/class-wcpdf-settings-general.php:126
206
- msgid "Shop Address"
207
- msgstr ""
208
-
209
- #: includes/class-wcpdf-settings-general.php:141
210
- msgid "Footer: terms & conditions, policies, etc."
211
- msgstr ""
212
-
213
- #: includes/class-wcpdf-settings-general.php:156
214
- msgid "Extra template fields"
215
- msgstr ""
216
-
217
- #: includes/class-wcpdf-settings-general.php:162
218
- msgid "Extra field 1"
219
- msgstr ""
220
-
221
- #: includes/class-wcpdf-settings-general.php:170
222
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
223
- msgstr ""
224
-
225
- #: includes/class-wcpdf-settings-general.php:177
226
- msgid "Extra field 2"
227
- msgstr ""
228
-
229
- #: includes/class-wcpdf-settings-general.php:185
230
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
231
- msgstr ""
232
-
233
- #: includes/class-wcpdf-settings-general.php:192
234
- msgid "Extra field 3"
235
- msgstr ""
236
-
237
- #: includes/class-wcpdf-settings-general.php:200
238
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
239
- msgstr ""
240
-
241
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
242
- msgid "PDF Invoices"
243
- msgstr ""
244
-
245
- #: includes/class-wcpdf-settings.php:58
246
- msgid "Settings"
247
- msgstr ""
248
-
249
- #: includes/class-wcpdf-settings.php:71
250
- msgid "Documentation"
251
- msgstr ""
252
-
253
- #: includes/class-wcpdf-settings.php:72
254
- msgid "Support Forum"
255
- msgstr ""
256
-
257
- #: includes/class-wcpdf-settings.php:83
258
- msgid "General"
259
- msgstr ""
260
-
261
- #: includes/class-wcpdf-settings.php:89
262
- msgid "Status"
263
- msgstr ""
264
-
265
- #: includes/compatibility/class-wc-core-compatibility.php:222
266
- msgid "WooCommerce"
267
- msgstr ""
268
-
269
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
270
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
271
- msgid "N/A"
272
- msgstr ""
273
-
274
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
275
- msgid "Payment method"
276
- msgstr ""
277
-
278
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
279
- msgid "Shipping method"
280
- msgstr ""
281
-
282
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
283
- #, php-format
284
- msgid "(includes %s)"
285
- msgstr ""
286
-
287
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
288
- #, php-format
289
- msgid "(Includes %s)"
290
- msgstr ""
291
-
292
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
293
- msgid "Subtotal"
294
- msgstr ""
295
-
296
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
297
- msgid "Shipping"
298
- msgstr ""
299
-
300
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
301
- msgid "Discount"
302
- msgstr ""
303
-
304
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
305
- msgid "VAT"
306
- msgstr "GST"
307
-
308
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
309
- msgid "Tax rate"
310
- msgstr ""
311
-
312
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
313
- msgid "Total ex. VAT"
314
- msgstr "Total ex. GST"
315
-
316
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
317
- msgid "Total"
318
- msgstr ""
319
-
320
- #: includes/documents/abstract-wcpdf-order-document.php:674
321
- msgid "Admin email"
322
- msgstr ""
323
-
324
- #: includes/documents/abstract-wcpdf-order-document.php:677
325
- msgid "Manual email"
326
- msgstr ""
327
-
328
- # This is a filename (prefix). do not use spaces or special characters!
329
- #: includes/documents/class-wcpdf-invoice.php:85
330
- msgid "invoice"
331
- msgid_plural "invoices"
332
- msgstr[0] ""
333
- msgstr[1] ""
334
-
335
- #: includes/documents/class-wcpdf-invoice.php:130
336
- #: includes/documents/class-wcpdf-packing-slip.php:94
337
- msgid "Enable"
338
- msgstr ""
339
-
340
- #: includes/documents/class-wcpdf-invoice.php:141
341
- msgid "Attach to:"
342
- msgstr ""
343
-
344
- #: includes/documents/class-wcpdf-invoice.php:148
345
- #, php-format
346
- msgid ""
347
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
348
- "permissions for this folder! Without having write access to this folder, the "
349
- "plugin will not be able to email invoices."
350
- msgstr ""
351
-
352
- #: includes/documents/class-wcpdf-invoice.php:154
353
- msgid "Display shipping address"
354
- msgstr ""
355
-
356
- #: includes/documents/class-wcpdf-invoice.php:160
357
- msgid ""
358
- "Display shipping address (in addition to the default billing address) if "
359
- "different from billing address"
360
- msgstr ""
361
-
362
- #: includes/documents/class-wcpdf-invoice.php:166
363
- #: includes/documents/class-wcpdf-packing-slip.php:117
364
- msgid "Display email address"
365
- msgstr ""
366
-
367
- #: includes/documents/class-wcpdf-invoice.php:177
368
- #: includes/documents/class-wcpdf-packing-slip.php:128
369
- msgid "Display phone number"
370
- msgstr ""
371
-
372
- #: includes/documents/class-wcpdf-invoice.php:188
373
- msgid "Display invoice date"
374
- msgstr ""
375
-
376
- #: includes/documents/class-wcpdf-invoice.php:200
377
- msgid "Display invoice number"
378
- msgstr ""
379
-
380
- #: includes/documents/class-wcpdf-invoice.php:212
381
- msgid "Next invoice number (without prefix/suffix etc.)"
382
- msgstr ""
383
-
384
- #: includes/documents/class-wcpdf-invoice.php:218
385
- msgid ""
386
- "This is the number that will be used for the next document. By default, "
387
- "numbering starts from 1 and increases for every new document. Note that if "
388
- "you override this and set it lower than the current/highest number, this "
389
- "could create duplicate numbers!"
390
- msgstr ""
391
-
392
- #: includes/documents/class-wcpdf-invoice.php:224
393
- msgid "Number format"
394
- msgstr ""
395
-
396
- #: includes/documents/class-wcpdf-invoice.php:232
397
- msgid "Prefix"
398
- msgstr ""
399
-
400
- #: includes/documents/class-wcpdf-invoice.php:234
401
- msgid ""
402
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
403
- "respectively"
404
- msgstr ""
405
-
406
- #: includes/documents/class-wcpdf-invoice.php:237
407
- msgid "Suffix"
408
- msgstr ""
409
-
410
- #: includes/documents/class-wcpdf-invoice.php:242
411
- msgid "Padding"
412
- msgstr ""
413
-
414
- #: includes/documents/class-wcpdf-invoice.php:245
415
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
416
- msgstr ""
417
-
418
- #: includes/documents/class-wcpdf-invoice.php:248
419
- msgid ""
420
- "note: if you have already created a custom invoice number format with a "
421
- "filter, the above settings will be ignored"
422
- msgstr ""
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:254
425
- msgid "Reset invoice number yearly"
426
- msgstr ""
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:265
429
- msgid "Allow My Account invoice download"
430
- msgstr ""
431
-
432
- #: includes/documents/class-wcpdf-invoice.php:272
433
- msgid "Only when an invoice is already created/emailed"
434
- msgstr ""
435
-
436
- #: includes/documents/class-wcpdf-invoice.php:273
437
- msgid "Only for specific order statuses (define below)"
438
- msgstr ""
439
-
440
- #: includes/documents/class-wcpdf-invoice.php:274
441
- msgid "Always"
442
- msgstr ""
443
-
444
- #: includes/documents/class-wcpdf-invoice.php:275
445
- msgid "Never"
446
- msgstr ""
447
-
448
- #: includes/documents/class-wcpdf-invoice.php:290
449
- msgid "Enable invoice number column in the orders list"
450
- msgstr ""
451
-
452
- #: includes/documents/class-wcpdf-invoice.php:301
453
- msgid "Disable for free products"
454
- msgstr ""
455
-
456
- #: includes/documents/class-wcpdf-invoice.php:307
457
- msgid ""
458
- "Disable automatic creation/attachment when only free products are ordered"
459
- msgstr ""
460
-
461
- #: includes/documents/class-wcpdf-invoice.php:321
462
- msgid "Invoice numbers are created by a third-party extension."
463
- msgstr ""
464
-
465
- #: includes/documents/class-wcpdf-invoice.php:323
466
- #, php-format
467
- msgid "Configure it <a href=\"%s\">here</a>."
468
- msgstr ""
469
-
470
- #: includes/documents/class-wcpdf-packing-slip.php:32
471
- #: includes/documents/class-wcpdf-packing-slip.php:41
472
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
473
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
474
- msgid "Packing Slip"
475
- msgstr ""
476
-
477
- # This is a filename (prefix). do not use spaces or special characters!
478
- #: includes/documents/class-wcpdf-packing-slip.php:53
479
- msgid "packing-slip"
480
- msgid_plural "packing-slips"
481
- msgstr[0] ""
482
- msgstr[1] ""
483
-
484
- #: includes/documents/class-wcpdf-packing-slip.php:105
485
- msgid "Display billing address"
486
- msgstr ""
487
-
488
- #: includes/documents/class-wcpdf-packing-slip.php:111
489
- msgid ""
490
- "Display billing address (in addition to the default shipping address) if "
491
- "different from shipping address"
492
- msgstr ""
493
-
494
- #: includes/legacy/class-wcpdf-legacy-document.php:32
495
- msgid "Legacy Document"
496
- msgstr ""
497
-
498
- #: includes/views/wcpdf-extensions.php:15
499
- msgid "Check out these premium extensions!"
500
- msgstr ""
501
-
502
- #: includes/views/wcpdf-extensions.php:16
503
- msgid "click items to read more"
504
- msgstr ""
505
-
506
- #: includes/views/wcpdf-extensions.php:21
507
- msgid ""
508
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
509
- "system"
510
- msgstr ""
511
-
512
- #: includes/views/wcpdf-extensions.php:23
513
- msgid ""
514
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
515
- "premium extensions:"
516
- msgstr ""
517
-
518
- #: includes/views/wcpdf-extensions.php:24
519
- msgid "Professional features:"
520
- msgstr ""
521
-
522
- #: includes/views/wcpdf-extensions.php:26
523
- #: includes/views/wcpdf-extensions.php:56
524
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
525
- msgstr ""
526
-
527
- #: includes/views/wcpdf-extensions.php:27
528
- #: includes/views/wcpdf-extensions.php:57
529
- msgid ""
530
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
531
- "packing slips, for example to a drop-shipper or a supplier."
532
- msgstr ""
533
-
534
- #: includes/views/wcpdf-extensions.php:28
535
- #: includes/views/wcpdf-extensions.php:58
536
- msgid ""
537
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
538
- "document) to the WooCommerce emails of your choice."
539
- msgstr ""
540
-
541
- #: includes/views/wcpdf-extensions.php:29
542
- #: includes/views/wcpdf-extensions.php:59
543
- msgid ""
544
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
545
- "and credit notes or utilize the main invoice numbering system"
546
- msgstr ""
547
-
548
- #: includes/views/wcpdf-extensions.php:30
549
- #: includes/views/wcpdf-extensions.php:60
550
- msgid ""
551
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
552
- "additional custom fields, font sizes etc. without the need to create a "
553
- "custom template."
554
- msgstr ""
555
-
556
- #: includes/views/wcpdf-extensions.php:31
557
- #: includes/views/wcpdf-extensions.php:61
558
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
559
- msgstr ""
560
-
561
- #: includes/views/wcpdf-extensions.php:33
562
- #: includes/views/wcpdf-extensions.php:131
563
- msgid "Advanced, customizable templates"
564
- msgstr ""
565
-
566
- #: includes/views/wcpdf-extensions.php:35
567
- #: includes/views/wcpdf-extensions.php:134
568
- msgid ""
569
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
570
- "your needs with a drag & drop customizer"
571
- msgstr ""
572
-
573
- #: includes/views/wcpdf-extensions.php:36
574
- #: includes/views/wcpdf-extensions.php:135
575
- msgid "Two extra stylish premade templates (Modern & Business)"
576
- msgstr ""
577
-
578
- #: includes/views/wcpdf-extensions.php:38
579
- msgid "Upload automatically to dropbox"
580
- msgstr ""
581
-
582
- #: includes/views/wcpdf-extensions.php:40
583
- #: includes/views/wcpdf-extensions.php:97
584
- msgid ""
585
- "This extension conveniently uploads all the invoices (and other pdf "
586
- "documents from the professional extension) that are emailed to your "
587
- "customers to Dropbox. The best way to keep your invoice administration up to "
588
- "date!"
589
- msgstr ""
590
-
591
- #: includes/views/wcpdf-extensions.php:43
592
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
593
- msgstr ""
594
-
595
- #: includes/views/wcpdf-extensions.php:52
596
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
597
- msgstr ""
598
-
599
- #: includes/views/wcpdf-extensions.php:54
600
- msgid ""
601
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
602
- "features:"
603
- msgstr ""
604
-
605
- #: includes/views/wcpdf-extensions.php:63
606
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
607
- msgstr ""
608
-
609
- #: includes/views/wcpdf-extensions.php:71
610
- msgid "Automatically send payment reminders to your customers"
611
- msgstr ""
612
-
613
- #: includes/views/wcpdf-extensions.php:73
614
- msgid "WooCommerce Smart Reminder emails"
615
- msgstr ""
616
-
617
- #: includes/views/wcpdf-extensions.php:75
618
- msgid "<b>Completely automatic</b> scheduled emails"
619
- msgstr ""
620
-
621
- #: includes/views/wcpdf-extensions.php:76
622
- msgid ""
623
- "<b>Rich text editor</b> for the email text, including placeholders for data "
624
- "from the order (name, order total, etc)"
625
- msgstr ""
626
-
627
- #: includes/views/wcpdf-extensions.php:77
628
- msgid ""
629
- "Configure the exact requirements for sending an email (time after order, "
630
- "order status, payment method)"
631
- msgstr ""
632
-
633
- #: includes/views/wcpdf-extensions.php:78
634
- msgid ""
635
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
636
- "order language."
637
- msgstr ""
638
-
639
- #: includes/views/wcpdf-extensions.php:79
640
- msgid ""
641
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
642
- "reminders, repeat purchases)"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:80
646
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
647
- msgstr ""
648
-
649
- #: includes/views/wcpdf-extensions.php:82
650
- msgid "Get WooCommerce Smart Reminder Emails"
651
- msgstr ""
652
-
653
- #: includes/views/wcpdf-extensions.php:91
654
- msgid "Upload all invoices automatically to your dropbox"
655
- msgstr ""
656
-
657
- #: includes/views/wcpdf-extensions.php:98
658
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:110
662
- msgid ""
663
- "Automatically send new orders or packing slips to your printer, as soon as "
664
- "the customer orders!"
665
- msgstr ""
666
-
667
- #: includes/views/wcpdf-extensions.php:116
668
- msgid ""
669
- "Check out the WooCommerce Automatic Order Printing extension from our "
670
- "partners at Simba Hosting"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:117
674
- msgid "WooCommerce Automatic Order Printing"
675
- msgstr ""
676
-
677
- #: includes/views/wcpdf-extensions.php:136
678
- #, php-format
679
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
680
- msgstr ""
681
-
682
- #: includes/views/wcpdf-extensions.php:137
683
- #, php-format
684
- msgid "For custom templates, contact us at %s."
685
- msgstr ""
686
-
687
- #: includes/views/wcpdf-extensions.php:146
688
- msgid "Hide this message"
689
- msgstr ""
690
-
691
- #: includes/views/wcpdf-settings-page.php:8
692
- msgid "WooCommerce PDF Invoices"
693
- msgstr ""
694
-
695
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
696
- msgid "Billing Address:"
697
- msgstr ""
698
-
699
- #: templates/Simple/invoice.php:41
700
- msgid "Ship To:"
701
- msgstr ""
702
-
703
- #: templates/Simple/invoice.php:50
704
- msgid "Invoice Number:"
705
- msgstr ""
706
-
707
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
708
- msgid "Order Number:"
709
- msgstr ""
710
-
711
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
712
- msgid "Order Date:"
713
- msgstr ""
714
-
715
- #: templates/Simple/invoice.php:69
716
- msgid "Payment Method:"
717
- msgstr ""
718
-
719
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
720
- msgid "Product"
721
- msgstr ""
722
-
723
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
724
- msgid "Quantity"
725
- msgstr ""
726
-
727
- #: templates/Simple/invoice.php:85
728
- msgid "Price"
729
- msgstr ""
730
-
731
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
732
- msgid "Description"
733
- msgstr ""
734
-
735
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
736
- msgid "SKU"
737
- msgstr ""
738
-
739
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
740
- msgid "SKU:"
741
- msgstr ""
742
-
743
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
744
- msgid "Weight:"
745
- msgstr ""
746
-
747
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
748
- msgid "Customer Notes"
749
- msgstr ""
750
-
751
- #: templates/Simple/packing-slip.php:30
752
- msgid "Shipping Address:"
753
- msgstr ""
754
-
755
- #: templates/Simple/packing-slip.php:57
756
- msgid "Shipping Method:"
757
- msgstr ""
758
-
759
- #: woocommerce-pdf-invoices-packingslips.php:231
760
- #, php-format
761
- msgid ""
762
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
763
- "installed & activated!"
764
- msgstr ""
765
-
766
- #: woocommerce-pdf-invoices-packingslips.php:243
767
- msgid ""
768
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
769
- "higher recommended)."
770
- msgstr ""
771
-
772
- #: woocommerce-pdf-invoices-packingslips.php:244
773
- msgid "How to update your PHP version"
774
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: en_AU\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr ""
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr ""
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr ""
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr ""
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr ""
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr ""
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr ""
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr ""
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr ""
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+
79
+ #: includes/class-wcpdf-settings-callbacks.php:36
80
+ msgid ""
81
+ "These are used for the (optional) footer columns in the <em>Modern "
82
+ "(Premium)</em> template, but can also be used for other elements in your "
83
+ "custom template"
84
+ msgstr ""
85
+
86
+ #: includes/class-wcpdf-settings-callbacks.php:301
87
+ msgid "Image resolution"
88
+ msgstr ""
89
+
90
+ #: includes/class-wcpdf-settings-callbacks.php:325
91
+ msgid "Save"
92
+ msgstr ""
93
+
94
+ #: includes/class-wcpdf-settings-debug.php:34
95
+ msgid "Debug settings"
96
+ msgstr ""
97
+
98
+ #: includes/class-wcpdf-settings-debug.php:40
99
+ msgid "Legacy mode"
100
+ msgstr ""
101
+
102
+ #: includes/class-wcpdf-settings-debug.php:46
103
+ msgid ""
104
+ "Legacy mode ensures compatibility with templates and filters from previous "
105
+ "versions."
106
+ msgstr ""
107
+
108
+ #: includes/class-wcpdf-settings-debug.php:52
109
+ msgid "Enable debug output"
110
+ msgstr ""
111
+
112
+ #: includes/class-wcpdf-settings-debug.php:58
113
+ msgid ""
114
+ "Enable this option to output plugin errors if you're getting a blank page or "
115
+ "other PDF generation issues"
116
+ msgstr ""
117
+
118
+ #: includes/class-wcpdf-settings-debug.php:64
119
+ msgid "Output to HTML"
120
+ msgstr ""
121
+
122
+ #: includes/class-wcpdf-settings-debug.php:70
123
+ msgid ""
124
+ "Send the template output as HTML to the browser instead of creating a PDF."
125
+ msgstr ""
126
+
127
+ #: includes/class-wcpdf-settings-documents.php:29
128
+ #: includes/class-wcpdf-settings.php:84
129
+ msgid "Documents"
130
+ msgstr ""
131
+
132
+ #: includes/class-wcpdf-settings-documents.php:45
133
+ msgid ""
134
+ "All available documents are listed below. Click on a document to configure "
135
+ "it."
136
+ msgstr ""
137
+
138
+ #: includes/class-wcpdf-settings-general.php:37
139
+ msgid "General settings"
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-settings-general.php:43
143
+ msgid "How do you want to view the PDF?"
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-settings-general.php:50
147
+ msgid "Download the PDF"
148
+ msgstr ""
149
+
150
+ #: includes/class-wcpdf-settings-general.php:51
151
+ msgid "Open the PDF in a new browser tab/window"
152
+ msgstr ""
153
+
154
+ #: includes/class-wcpdf-settings-general.php:58
155
+ msgid "Choose a template"
156
+ msgstr ""
157
+
158
+ #: includes/class-wcpdf-settings-general.php:65
159
+ #, php-format
160
+ msgid ""
161
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
162
+ "your (child) theme in <code>%s</code> to customize them"
163
+ msgstr ""
164
+
165
+ #: includes/class-wcpdf-settings-general.php:71
166
+ msgid "Paper size"
167
+ msgstr ""
168
+
169
+ #: includes/class-wcpdf-settings-general.php:78
170
+ msgid "A4"
171
+ msgstr ""
172
+
173
+ #: includes/class-wcpdf-settings-general.php:79
174
+ msgid "Letter"
175
+ msgstr ""
176
+
177
+ #: includes/class-wcpdf-settings-general.php:86
178
+ msgid "Extended currency symbol support"
179
+ msgstr ""
180
+
181
+ #: includes/class-wcpdf-settings-general.php:92
182
+ msgid "Enable this if your currency symbol is not displaying properly"
183
+ msgstr ""
184
+
185
+ #: includes/class-wcpdf-settings-general.php:98
186
+ msgid "Shop header/logo"
187
+ msgstr ""
188
+
189
+ #: includes/class-wcpdf-settings-general.php:104
190
+ msgid "Select or upload your invoice header/logo"
191
+ msgstr ""
192
+
193
+ #: includes/class-wcpdf-settings-general.php:105
194
+ msgid "Set image"
195
+ msgstr ""
196
+
197
+ #: includes/class-wcpdf-settings-general.php:106
198
+ msgid "Remove image"
199
+ msgstr ""
200
+
201
+ #: includes/class-wcpdf-settings-general.php:113
202
+ msgid "Shop Name"
203
+ msgstr ""
204
+
205
+ #: includes/class-wcpdf-settings-general.php:126
206
+ msgid "Shop Address"
207
+ msgstr ""
208
+
209
+ #: includes/class-wcpdf-settings-general.php:141
210
+ msgid "Footer: terms & conditions, policies, etc."
211
+ msgstr ""
212
+
213
+ #: includes/class-wcpdf-settings-general.php:156
214
+ msgid "Extra template fields"
215
+ msgstr ""
216
+
217
+ #: includes/class-wcpdf-settings-general.php:162
218
+ msgid "Extra field 1"
219
+ msgstr ""
220
+
221
+ #: includes/class-wcpdf-settings-general.php:170
222
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
223
+ msgstr ""
224
+
225
+ #: includes/class-wcpdf-settings-general.php:177
226
+ msgid "Extra field 2"
227
+ msgstr ""
228
+
229
+ #: includes/class-wcpdf-settings-general.php:185
230
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
231
+ msgstr ""
232
+
233
+ #: includes/class-wcpdf-settings-general.php:192
234
+ msgid "Extra field 3"
235
+ msgstr ""
236
+
237
+ #: includes/class-wcpdf-settings-general.php:200
238
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
239
+ msgstr ""
240
+
241
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
242
+ msgid "PDF Invoices"
243
+ msgstr ""
244
+
245
+ #: includes/class-wcpdf-settings.php:58
246
+ msgid "Settings"
247
+ msgstr ""
248
+
249
+ #: includes/class-wcpdf-settings.php:71
250
+ msgid "Documentation"
251
+ msgstr ""
252
+
253
+ #: includes/class-wcpdf-settings.php:72
254
+ msgid "Support Forum"
255
+ msgstr ""
256
+
257
+ #: includes/class-wcpdf-settings.php:83
258
+ msgid "General"
259
+ msgstr ""
260
+
261
+ #: includes/class-wcpdf-settings.php:89
262
+ msgid "Status"
263
+ msgstr ""
264
+
265
+ #: includes/compatibility/class-wc-core-compatibility.php:222
266
+ msgid "WooCommerce"
267
+ msgstr ""
268
+
269
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
270
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
271
+ msgid "N/A"
272
+ msgstr ""
273
+
274
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
275
+ msgid "Payment method"
276
+ msgstr ""
277
+
278
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
279
+ msgid "Shipping method"
280
+ msgstr ""
281
+
282
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
283
+ #, php-format
284
+ msgid "(includes %s)"
285
+ msgstr ""
286
+
287
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
288
+ #, php-format
289
+ msgid "(Includes %s)"
290
+ msgstr ""
291
+
292
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
293
+ msgid "Subtotal"
294
+ msgstr ""
295
+
296
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
297
+ msgid "Shipping"
298
+ msgstr ""
299
+
300
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
301
+ msgid "Discount"
302
+ msgstr ""
303
+
304
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
305
+ msgid "VAT"
306
+ msgstr "GST"
307
+
308
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
309
+ msgid "Tax rate"
310
+ msgstr ""
311
+
312
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
313
+ msgid "Total ex. VAT"
314
+ msgstr "Total ex. GST"
315
+
316
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
317
+ msgid "Total"
318
+ msgstr ""
319
+
320
+ #: includes/documents/abstract-wcpdf-order-document.php:674
321
+ msgid "Admin email"
322
+ msgstr ""
323
+
324
+ #: includes/documents/abstract-wcpdf-order-document.php:677
325
+ msgid "Manual email"
326
+ msgstr ""
327
+
328
+ # This is a filename (prefix). do not use spaces or special characters!
329
+ #: includes/documents/class-wcpdf-invoice.php:85
330
+ msgid "invoice"
331
+ msgid_plural "invoices"
332
+ msgstr[0] ""
333
+ msgstr[1] ""
334
+
335
+ #: includes/documents/class-wcpdf-invoice.php:130
336
+ #: includes/documents/class-wcpdf-packing-slip.php:94
337
+ msgid "Enable"
338
+ msgstr ""
339
+
340
+ #: includes/documents/class-wcpdf-invoice.php:141
341
+ msgid "Attach to:"
342
+ msgstr ""
343
+
344
+ #: includes/documents/class-wcpdf-invoice.php:148
345
+ #, php-format
346
+ msgid ""
347
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
348
+ "permissions for this folder! Without having write access to this folder, the "
349
+ "plugin will not be able to email invoices."
350
+ msgstr ""
351
+
352
+ #: includes/documents/class-wcpdf-invoice.php:154
353
+ msgid "Display shipping address"
354
+ msgstr ""
355
+
356
+ #: includes/documents/class-wcpdf-invoice.php:160
357
+ msgid ""
358
+ "Display shipping address (in addition to the default billing address) if "
359
+ "different from billing address"
360
+ msgstr ""
361
+
362
+ #: includes/documents/class-wcpdf-invoice.php:166
363
+ #: includes/documents/class-wcpdf-packing-slip.php:117
364
+ msgid "Display email address"
365
+ msgstr ""
366
+
367
+ #: includes/documents/class-wcpdf-invoice.php:177
368
+ #: includes/documents/class-wcpdf-packing-slip.php:128
369
+ msgid "Display phone number"
370
+ msgstr ""
371
+
372
+ #: includes/documents/class-wcpdf-invoice.php:188
373
+ msgid "Display invoice date"
374
+ msgstr ""
375
+
376
+ #: includes/documents/class-wcpdf-invoice.php:200
377
+ msgid "Display invoice number"
378
+ msgstr ""
379
+
380
+ #: includes/documents/class-wcpdf-invoice.php:212
381
+ msgid "Next invoice number (without prefix/suffix etc.)"
382
+ msgstr ""
383
+
384
+ #: includes/documents/class-wcpdf-invoice.php:218
385
+ msgid ""
386
+ "This is the number that will be used for the next document. By default, "
387
+ "numbering starts from 1 and increases for every new document. Note that if "
388
+ "you override this and set it lower than the current/highest number, this "
389
+ "could create duplicate numbers!"
390
+ msgstr ""
391
+
392
+ #: includes/documents/class-wcpdf-invoice.php:224
393
+ msgid "Number format"
394
+ msgstr ""
395
+
396
+ #: includes/documents/class-wcpdf-invoice.php:232
397
+ msgid "Prefix"
398
+ msgstr ""
399
+
400
+ #: includes/documents/class-wcpdf-invoice.php:234
401
+ msgid ""
402
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
403
+ "respectively"
404
+ msgstr ""
405
+
406
+ #: includes/documents/class-wcpdf-invoice.php:237
407
+ msgid "Suffix"
408
+ msgstr ""
409
+
410
+ #: includes/documents/class-wcpdf-invoice.php:242
411
+ msgid "Padding"
412
+ msgstr ""
413
+
414
+ #: includes/documents/class-wcpdf-invoice.php:245
415
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
416
+ msgstr ""
417
+
418
+ #: includes/documents/class-wcpdf-invoice.php:248
419
+ msgid ""
420
+ "note: if you have already created a custom invoice number format with a "
421
+ "filter, the above settings will be ignored"
422
+ msgstr ""
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:254
425
+ msgid "Reset invoice number yearly"
426
+ msgstr ""
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:265
429
+ msgid "Allow My Account invoice download"
430
+ msgstr ""
431
+
432
+ #: includes/documents/class-wcpdf-invoice.php:272
433
+ msgid "Only when an invoice is already created/emailed"
434
+ msgstr ""
435
+
436
+ #: includes/documents/class-wcpdf-invoice.php:273
437
+ msgid "Only for specific order statuses (define below)"
438
+ msgstr ""
439
+
440
+ #: includes/documents/class-wcpdf-invoice.php:274
441
+ msgid "Always"
442
+ msgstr ""
443
+
444
+ #: includes/documents/class-wcpdf-invoice.php:275
445
+ msgid "Never"
446
+ msgstr ""
447
+
448
+ #: includes/documents/class-wcpdf-invoice.php:290
449
+ msgid "Enable invoice number column in the orders list"
450
+ msgstr ""
451
+
452
+ #: includes/documents/class-wcpdf-invoice.php:301
453
+ msgid "Disable for free products"
454
+ msgstr ""
455
+
456
+ #: includes/documents/class-wcpdf-invoice.php:307
457
+ msgid ""
458
+ "Disable automatic creation/attachment when only free products are ordered"
459
+ msgstr ""
460
+
461
+ #: includes/documents/class-wcpdf-invoice.php:321
462
+ msgid "Invoice numbers are created by a third-party extension."
463
+ msgstr ""
464
+
465
+ #: includes/documents/class-wcpdf-invoice.php:323
466
+ #, php-format
467
+ msgid "Configure it <a href=\"%s\">here</a>."
468
+ msgstr ""
469
+
470
+ #: includes/documents/class-wcpdf-packing-slip.php:32
471
+ #: includes/documents/class-wcpdf-packing-slip.php:41
472
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
473
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
474
+ msgid "Packing Slip"
475
+ msgstr ""
476
+
477
+ # This is a filename (prefix). do not use spaces or special characters!
478
+ #: includes/documents/class-wcpdf-packing-slip.php:53
479
+ msgid "packing-slip"
480
+ msgid_plural "packing-slips"
481
+ msgstr[0] ""
482
+ msgstr[1] ""
483
+
484
+ #: includes/documents/class-wcpdf-packing-slip.php:105
485
+ msgid "Display billing address"
486
+ msgstr ""
487
+
488
+ #: includes/documents/class-wcpdf-packing-slip.php:111
489
+ msgid ""
490
+ "Display billing address (in addition to the default shipping address) if "
491
+ "different from shipping address"
492
+ msgstr ""
493
+
494
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
495
+ msgid "Legacy Document"
496
+ msgstr ""
497
+
498
+ #: includes/views/wcpdf-extensions.php:15
499
+ msgid "Check out these premium extensions!"
500
+ msgstr ""
501
+
502
+ #: includes/views/wcpdf-extensions.php:16
503
+ msgid "click items to read more"
504
+ msgstr ""
505
+
506
+ #: includes/views/wcpdf-extensions.php:21
507
+ msgid ""
508
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
509
+ "system"
510
+ msgstr ""
511
+
512
+ #: includes/views/wcpdf-extensions.php:23
513
+ msgid ""
514
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
515
+ "premium extensions:"
516
+ msgstr ""
517
+
518
+ #: includes/views/wcpdf-extensions.php:24
519
+ msgid "Professional features:"
520
+ msgstr ""
521
+
522
+ #: includes/views/wcpdf-extensions.php:26
523
+ #: includes/views/wcpdf-extensions.php:56
524
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
525
+ msgstr ""
526
+
527
+ #: includes/views/wcpdf-extensions.php:27
528
+ #: includes/views/wcpdf-extensions.php:57
529
+ msgid ""
530
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
531
+ "packing slips, for example to a drop-shipper or a supplier."
532
+ msgstr ""
533
+
534
+ #: includes/views/wcpdf-extensions.php:28
535
+ #: includes/views/wcpdf-extensions.php:58
536
+ msgid ""
537
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
538
+ "document) to the WooCommerce emails of your choice."
539
+ msgstr ""
540
+
541
+ #: includes/views/wcpdf-extensions.php:29
542
+ #: includes/views/wcpdf-extensions.php:59
543
+ msgid ""
544
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
545
+ "and credit notes or utilize the main invoice numbering system"
546
+ msgstr ""
547
+
548
+ #: includes/views/wcpdf-extensions.php:30
549
+ #: includes/views/wcpdf-extensions.php:60
550
+ msgid ""
551
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
552
+ "additional custom fields, font sizes etc. without the need to create a "
553
+ "custom template."
554
+ msgstr ""
555
+
556
+ #: includes/views/wcpdf-extensions.php:31
557
+ #: includes/views/wcpdf-extensions.php:61
558
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
559
+ msgstr ""
560
+
561
+ #: includes/views/wcpdf-extensions.php:33
562
+ #: includes/views/wcpdf-extensions.php:131
563
+ msgid "Advanced, customizable templates"
564
+ msgstr ""
565
+
566
+ #: includes/views/wcpdf-extensions.php:35
567
+ #: includes/views/wcpdf-extensions.php:134
568
+ msgid ""
569
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
570
+ "your needs with a drag & drop customizer"
571
+ msgstr ""
572
+
573
+ #: includes/views/wcpdf-extensions.php:36
574
+ #: includes/views/wcpdf-extensions.php:135
575
+ msgid "Two extra stylish premade templates (Modern & Business)"
576
+ msgstr ""
577
+
578
+ #: includes/views/wcpdf-extensions.php:38
579
+ msgid "Upload automatically to dropbox"
580
+ msgstr ""
581
+
582
+ #: includes/views/wcpdf-extensions.php:40
583
+ #: includes/views/wcpdf-extensions.php:97
584
+ msgid ""
585
+ "This extension conveniently uploads all the invoices (and other pdf "
586
+ "documents from the professional extension) that are emailed to your "
587
+ "customers to Dropbox. The best way to keep your invoice administration up to "
588
+ "date!"
589
+ msgstr ""
590
+
591
+ #: includes/views/wcpdf-extensions.php:43
592
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
593
+ msgstr ""
594
+
595
+ #: includes/views/wcpdf-extensions.php:52
596
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
597
+ msgstr ""
598
+
599
+ #: includes/views/wcpdf-extensions.php:54
600
+ msgid ""
601
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
602
+ "features:"
603
+ msgstr ""
604
+
605
+ #: includes/views/wcpdf-extensions.php:63
606
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
607
+ msgstr ""
608
+
609
+ #: includes/views/wcpdf-extensions.php:71
610
+ msgid "Automatically send payment reminders to your customers"
611
+ msgstr ""
612
+
613
+ #: includes/views/wcpdf-extensions.php:73
614
+ msgid "WooCommerce Smart Reminder emails"
615
+ msgstr ""
616
+
617
+ #: includes/views/wcpdf-extensions.php:75
618
+ msgid "<b>Completely automatic</b> scheduled emails"
619
+ msgstr ""
620
+
621
+ #: includes/views/wcpdf-extensions.php:76
622
+ msgid ""
623
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
624
+ "from the order (name, order total, etc)"
625
+ msgstr ""
626
+
627
+ #: includes/views/wcpdf-extensions.php:77
628
+ msgid ""
629
+ "Configure the exact requirements for sending an email (time after order, "
630
+ "order status, payment method)"
631
+ msgstr ""
632
+
633
+ #: includes/views/wcpdf-extensions.php:78
634
+ msgid ""
635
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
636
+ "order language."
637
+ msgstr ""
638
+
639
+ #: includes/views/wcpdf-extensions.php:79
640
+ msgid ""
641
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
642
+ "reminders, repeat purchases)"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:80
646
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
647
+ msgstr ""
648
+
649
+ #: includes/views/wcpdf-extensions.php:82
650
+ msgid "Get WooCommerce Smart Reminder Emails"
651
+ msgstr ""
652
+
653
+ #: includes/views/wcpdf-extensions.php:91
654
+ msgid "Upload all invoices automatically to your dropbox"
655
+ msgstr ""
656
+
657
+ #: includes/views/wcpdf-extensions.php:98
658
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:110
662
+ msgid ""
663
+ "Automatically send new orders or packing slips to your printer, as soon as "
664
+ "the customer orders!"
665
+ msgstr ""
666
+
667
+ #: includes/views/wcpdf-extensions.php:116
668
+ msgid ""
669
+ "Check out the WooCommerce Automatic Order Printing extension from our "
670
+ "partners at Simba Hosting"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:117
674
+ msgid "WooCommerce Automatic Order Printing"
675
+ msgstr ""
676
+
677
+ #: includes/views/wcpdf-extensions.php:136
678
+ #, php-format
679
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
680
+ msgstr ""
681
+
682
+ #: includes/views/wcpdf-extensions.php:137
683
+ #, php-format
684
+ msgid "For custom templates, contact us at %s."
685
+ msgstr ""
686
+
687
+ #: includes/views/wcpdf-extensions.php:146
688
+ msgid "Hide this message"
689
+ msgstr ""
690
+
691
+ #: includes/views/wcpdf-settings-page.php:8
692
+ msgid "WooCommerce PDF Invoices"
693
+ msgstr ""
694
+
695
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
696
+ msgid "Billing Address:"
697
+ msgstr ""
698
+
699
+ #: templates/Simple/invoice.php:41
700
+ msgid "Ship To:"
701
+ msgstr ""
702
+
703
+ #: templates/Simple/invoice.php:50
704
+ msgid "Invoice Number:"
705
+ msgstr ""
706
+
707
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
708
+ msgid "Order Number:"
709
+ msgstr ""
710
+
711
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
712
+ msgid "Order Date:"
713
+ msgstr ""
714
+
715
+ #: templates/Simple/invoice.php:69
716
+ msgid "Payment Method:"
717
+ msgstr ""
718
+
719
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
720
+ msgid "Product"
721
+ msgstr ""
722
+
723
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
724
+ msgid "Quantity"
725
+ msgstr ""
726
+
727
+ #: templates/Simple/invoice.php:85
728
+ msgid "Price"
729
+ msgstr ""
730
+
731
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
732
+ msgid "Description"
733
+ msgstr ""
734
+
735
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
736
+ msgid "SKU"
737
+ msgstr ""
738
+
739
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
740
+ msgid "SKU:"
741
+ msgstr ""
742
+
743
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
744
+ msgid "Weight:"
745
+ msgstr ""
746
+
747
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
748
+ msgid "Customer Notes"
749
+ msgstr ""
750
+
751
+ #: templates/Simple/packing-slip.php:30
752
+ msgid "Shipping Address:"
753
+ msgstr ""
754
+
755
+ #: templates/Simple/packing-slip.php:57
756
+ msgid "Shipping Method:"
757
+ msgstr ""
758
+
759
+ #: woocommerce-pdf-invoices-packingslips.php:231
760
+ #, php-format
761
+ msgid ""
762
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
763
+ "installed & activated!"
764
+ msgstr ""
765
+
766
+ #: woocommerce-pdf-invoices-packingslips.php:243
767
+ msgid ""
768
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
769
+ "higher recommended)."
770
+ msgstr ""
771
+
772
+ #: woocommerce-pdf-invoices-packingslips.php:244
773
+ msgid "How to update your PHP version"
774
+ msgstr ""
languages/woocommerce-pdf-invoices-packing-slips-es_ES.po CHANGED
@@ -1,949 +1,949 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
- "Language: es_ES\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Nº de la factura"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Crear PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr "Fecha de Factura PDF"
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Factura"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Fecha de la factura:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr "Número de la factura (unformatted!)"
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "H"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "H"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Descargar factura (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "No tiene suficientes permitos para acceder a esta página."
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "No se encuentran algunos de los parámetros de exportación"
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<b>Atención!</b> Los ajustes de debajo son solo para depurarción/ "
79
- "desarrollo. No usarlos en una web funcional!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Estos son usados para las columnas del pie de página (opcional) en la "
88
- "plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
89
- "plantilla personalizada:"
90
-
91
- #: includes/class-wcpdf-settings-callbacks.php:301
92
- msgid "Image resolution"
93
- msgstr "Resolución de la imagen"
94
-
95
- #: includes/class-wcpdf-settings-callbacks.php:325
96
- msgid "Save"
97
- msgstr ""
98
-
99
- #: includes/class-wcpdf-settings-debug.php:34
100
- msgid "Debug settings"
101
- msgstr "Depurar ajustes"
102
-
103
- #: includes/class-wcpdf-settings-debug.php:40
104
- msgid "Legacy mode"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-settings-debug.php:46
108
- msgid ""
109
- "Legacy mode ensures compatibility with templates and filters from previous "
110
- "versions."
111
- msgstr ""
112
-
113
- #: includes/class-wcpdf-settings-debug.php:52
114
- msgid "Enable debug output"
115
- msgstr "Activar salida de depuración"
116
-
117
- #: includes/class-wcpdf-settings-debug.php:58
118
- msgid ""
119
- "Enable this option to output plugin errors if you're getting a blank page or "
120
- "other PDF generation issues"
121
- msgstr ""
122
- "Activar esta opción para depurar errores del plugin si está generando una "
123
- "página en blanco u otros problemas con la generación de PDF"
124
-
125
- #: includes/class-wcpdf-settings-debug.php:64
126
- msgid "Output to HTML"
127
- msgstr "Salida a HTML"
128
-
129
- #: includes/class-wcpdf-settings-debug.php:70
130
- msgid ""
131
- "Send the template output as HTML to the browser instead of creating a PDF."
132
- msgstr ""
133
- "Enviar la plantilla de salida como HTML al explorador en ve de crear un PDF."
134
-
135
- #: includes/class-wcpdf-settings-documents.php:29
136
- #: includes/class-wcpdf-settings.php:84
137
- msgid "Documents"
138
- msgstr ""
139
-
140
- #: includes/class-wcpdf-settings-documents.php:45
141
- msgid ""
142
- "All available documents are listed below. Click on a document to configure "
143
- "it."
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-settings-general.php:37
147
- msgid "General settings"
148
- msgstr "Ajustes generales"
149
-
150
- #: includes/class-wcpdf-settings-general.php:43
151
- msgid "How do you want to view the PDF?"
152
- msgstr "¿Cómo desea visualizar el PDF?"
153
-
154
- #: includes/class-wcpdf-settings-general.php:50
155
- msgid "Download the PDF"
156
- msgstr "Descargándolo."
157
-
158
- #: includes/class-wcpdf-settings-general.php:51
159
- msgid "Open the PDF in a new browser tab/window"
160
- msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
161
-
162
- #: includes/class-wcpdf-settings-general.php:58
163
- msgid "Choose a template"
164
- msgstr "Elige una plantilla"
165
-
166
- #: includes/class-wcpdf-settings-general.php:65
167
- #, php-format
168
- msgid ""
169
- "Want to use your own template? Copy all the files from <code>%s</code> to "
170
- "your (child) theme in <code>%s</code> to customize them"
171
- msgstr ""
172
- "¿Quieres usar tu propia plantilla? Copia los archivos de la carpeta <code>"
173
- "%s</code> a tu \"theme\" (o child theme) en <code>%s</code> para "
174
- "personalizarlos."
175
-
176
- #: includes/class-wcpdf-settings-general.php:71
177
- msgid "Paper size"
178
- msgstr "Tamaño del papel"
179
-
180
- #: includes/class-wcpdf-settings-general.php:78
181
- msgid "A4"
182
- msgstr "A4"
183
-
184
- #: includes/class-wcpdf-settings-general.php:79
185
- msgid "Letter"
186
- msgstr "Carta"
187
-
188
- #: includes/class-wcpdf-settings-general.php:86
189
- msgid "Extended currency symbol support"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-settings-general.php:92
193
- msgid "Enable this if your currency symbol is not displaying properly"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-settings-general.php:98
197
- msgid "Shop header/logo"
198
- msgstr "Logotipo de la tienda"
199
-
200
- #: includes/class-wcpdf-settings-general.php:104
201
- msgid "Select or upload your invoice header/logo"
202
- msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
203
-
204
- #: includes/class-wcpdf-settings-general.php:105
205
- msgid "Set image"
206
- msgstr "Añadir imagen"
207
-
208
- #: includes/class-wcpdf-settings-general.php:106
209
- msgid "Remove image"
210
- msgstr "Eliminar la imagen"
211
-
212
- #: includes/class-wcpdf-settings-general.php:113
213
- msgid "Shop Name"
214
- msgstr "Nombre de la tienda"
215
-
216
- #: includes/class-wcpdf-settings-general.php:126
217
- msgid "Shop Address"
218
- msgstr "Dirección de la tienda"
219
-
220
- #: includes/class-wcpdf-settings-general.php:141
221
- msgid "Footer: terms & conditions, policies, etc."
222
- msgstr "Pie de página: Términos y condiciones, políticas, etc."
223
-
224
- #: includes/class-wcpdf-settings-general.php:156
225
- msgid "Extra template fields"
226
- msgstr "Campos extra de la plantilla"
227
-
228
- #: includes/class-wcpdf-settings-general.php:162
229
- msgid "Extra field 1"
230
- msgstr "Campo extra 1"
231
-
232
- #: includes/class-wcpdf-settings-general.php:170
233
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
- msgstr ""
235
- "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
236
- "i>."
237
-
238
- #: includes/class-wcpdf-settings-general.php:177
239
- msgid "Extra field 2"
240
- msgstr "Campo extra 2"
241
-
242
- #: includes/class-wcpdf-settings-general.php:185
243
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
244
- msgstr ""
245
- "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
246
- "i>."
247
-
248
- #: includes/class-wcpdf-settings-general.php:192
249
- msgid "Extra field 3"
250
- msgstr "Campo extra 3"
251
-
252
- #: includes/class-wcpdf-settings-general.php:200
253
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
254
- msgstr ""
255
- "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
256
- "i>."
257
-
258
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
259
- msgid "PDF Invoices"
260
- msgstr "Facturas PDF"
261
-
262
- #: includes/class-wcpdf-settings.php:58
263
- msgid "Settings"
264
- msgstr "Ajustes"
265
-
266
- #: includes/class-wcpdf-settings.php:71
267
- msgid "Documentation"
268
- msgstr ""
269
-
270
- #: includes/class-wcpdf-settings.php:72
271
- msgid "Support Forum"
272
- msgstr ""
273
-
274
- #: includes/class-wcpdf-settings.php:83
275
- msgid "General"
276
- msgstr "General"
277
-
278
- #: includes/class-wcpdf-settings.php:89
279
- msgid "Status"
280
- msgstr "Estado"
281
-
282
- #: includes/compatibility/class-wc-core-compatibility.php:222
283
- msgid "WooCommerce"
284
- msgstr ""
285
-
286
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
287
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
288
- msgid "N/A"
289
- msgstr "No disponible"
290
-
291
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
292
- msgid "Payment method"
293
- msgstr "Forma de pago"
294
-
295
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
296
- msgid "Shipping method"
297
- msgstr "Envío"
298
-
299
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
300
- #, php-format
301
- msgid "(includes %s)"
302
- msgstr ""
303
-
304
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
305
- #, php-format
306
- msgid "(Includes %s)"
307
- msgstr "(Incluye %s)"
308
-
309
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
310
- msgid "Subtotal"
311
- msgstr "Subtotal"
312
-
313
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
314
- msgid "Shipping"
315
- msgstr "Envío"
316
-
317
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
318
- msgid "Discount"
319
- msgstr "Descuento"
320
-
321
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
322
- msgid "VAT"
323
- msgstr "IVA"
324
-
325
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
326
- msgid "Tax rate"
327
- msgstr "Porcentaje del Impuesto"
328
-
329
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
330
- msgid "Total ex. VAT"
331
- msgstr "Total (Sin IVA)"
332
-
333
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
334
- msgid "Total"
335
- msgstr "Total"
336
-
337
- #: includes/documents/abstract-wcpdf-order-document.php:674
338
- msgid "Admin email"
339
- msgstr ""
340
-
341
- #: includes/documents/abstract-wcpdf-order-document.php:677
342
- msgid "Manual email"
343
- msgstr ""
344
-
345
- #: includes/documents/class-wcpdf-invoice.php:85
346
- msgid "invoice"
347
- msgid_plural "invoices"
348
- msgstr[0] "factura"
349
- msgstr[1] "facturas"
350
-
351
- #: includes/documents/class-wcpdf-invoice.php:130
352
- #: includes/documents/class-wcpdf-packing-slip.php:94
353
- msgid "Enable"
354
- msgstr ""
355
-
356
- #: includes/documents/class-wcpdf-invoice.php:141
357
- msgid "Attach to:"
358
- msgstr ""
359
-
360
- #: includes/documents/class-wcpdf-invoice.php:148
361
- #, php-format
362
- msgid ""
363
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
364
- "permissions for this folder! Without having write access to this folder, the "
365
- "plugin will not be able to email invoices."
366
- msgstr ""
367
- "Parece que la carpeta temporal (<code>% s </ code>) no es modificable, "
368
- "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
369
- "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
370
-
371
- #: includes/documents/class-wcpdf-invoice.php:154
372
- msgid "Display shipping address"
373
- msgstr "Mostrar dirección de envío"
374
-
375
- #: includes/documents/class-wcpdf-invoice.php:160
376
- msgid ""
377
- "Display shipping address (in addition to the default billing address) if "
378
- "different from billing address"
379
- msgstr ""
380
-
381
- #: includes/documents/class-wcpdf-invoice.php:166
382
- #: includes/documents/class-wcpdf-packing-slip.php:117
383
- msgid "Display email address"
384
- msgstr "Mostrar email"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:177
387
- #: includes/documents/class-wcpdf-packing-slip.php:128
388
- msgid "Display phone number"
389
- msgstr "Mostrar teléfono"
390
-
391
- #: includes/documents/class-wcpdf-invoice.php:188
392
- msgid "Display invoice date"
393
- msgstr "Mostrar fecha de la factura"
394
-
395
- #: includes/documents/class-wcpdf-invoice.php:200
396
- msgid "Display invoice number"
397
- msgstr ""
398
-
399
- #: includes/documents/class-wcpdf-invoice.php:212
400
- msgid "Next invoice number (without prefix/suffix etc.)"
401
- msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
402
-
403
- #: includes/documents/class-wcpdf-invoice.php:218
404
- msgid ""
405
- "This is the number that will be used for the next document. By default, "
406
- "numbering starts from 1 and increases for every new document. Note that if "
407
- "you override this and set it lower than the current/highest number, this "
408
- "could create duplicate numbers!"
409
- msgstr ""
410
-
411
- #: includes/documents/class-wcpdf-invoice.php:224
412
- msgid "Number format"
413
- msgstr ""
414
-
415
- #: includes/documents/class-wcpdf-invoice.php:232
416
- msgid "Prefix"
417
- msgstr "Prefijo"
418
-
419
- #: includes/documents/class-wcpdf-invoice.php:234
420
- msgid ""
421
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
422
- "respectively"
423
- msgstr ""
424
-
425
- #: includes/documents/class-wcpdf-invoice.php:237
426
- msgid "Suffix"
427
- msgstr "Sufijo"
428
-
429
- #: includes/documents/class-wcpdf-invoice.php:242
430
- msgid "Padding"
431
- msgstr "Número de dígitos"
432
-
433
- #: includes/documents/class-wcpdf-invoice.php:245
434
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
435
- msgstr ""
436
- "Introduzca el número de dígitos aquí - introduzca \"6\" para mostrar 42 como "
437
- "000042"
438
-
439
- #: includes/documents/class-wcpdf-invoice.php:248
440
- msgid ""
441
- "note: if you have already created a custom invoice number format with a "
442
- "filter, the above settings will be ignored"
443
- msgstr ""
444
- "Nota: Si ya has creado un formato personalizado de numeración de facturas "
445
- "con un filtro, los ajustes anteriores serán ignorados"
446
-
447
- #: includes/documents/class-wcpdf-invoice.php:254
448
- msgid "Reset invoice number yearly"
449
- msgstr "Resetear numeración de facturas anual"
450
-
451
- #: includes/documents/class-wcpdf-invoice.php:265
452
- msgid "Allow My Account invoice download"
453
- msgstr "Permitir descarga de facturas desde \" Mi Cuenta\""
454
-
455
- #: includes/documents/class-wcpdf-invoice.php:272
456
- msgid "Only when an invoice is already created/emailed"
457
- msgstr "Solo cuando una factura ya ha sido creada/ enviada por correo"
458
-
459
- #: includes/documents/class-wcpdf-invoice.php:273
460
- msgid "Only for specific order statuses (define below)"
461
- msgstr "Solo para estados de orden específicos ( definir debajo )"
462
-
463
- #: includes/documents/class-wcpdf-invoice.php:274
464
- msgid "Always"
465
- msgstr "Siempre"
466
-
467
- #: includes/documents/class-wcpdf-invoice.php:275
468
- msgid "Never"
469
- msgstr "Nunca"
470
-
471
- #: includes/documents/class-wcpdf-invoice.php:290
472
- msgid "Enable invoice number column in the orders list"
473
- msgstr "Activar la columna de número de factura en pedidos"
474
-
475
- #: includes/documents/class-wcpdf-invoice.php:301
476
- msgid "Disable for free products"
477
- msgstr "Deshabilitar para productos gratuitos"
478
-
479
- #: includes/documents/class-wcpdf-invoice.php:307
480
- msgid ""
481
- "Disable automatic creation/attachment when only free products are ordered"
482
- msgstr ""
483
-
484
- #: includes/documents/class-wcpdf-invoice.php:321
485
- msgid "Invoice numbers are created by a third-party extension."
486
- msgstr ""
487
-
488
- #: includes/documents/class-wcpdf-invoice.php:323
489
- #, php-format
490
- msgid "Configure it <a href=\"%s\">here</a>."
491
- msgstr ""
492
-
493
- #: includes/documents/class-wcpdf-packing-slip.php:32
494
- #: includes/documents/class-wcpdf-packing-slip.php:41
495
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
496
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
497
- msgid "Packing Slip"
498
- msgstr "Albarán de entrega"
499
-
500
- #: includes/documents/class-wcpdf-packing-slip.php:53
501
- msgid "packing-slip"
502
- msgid_plural "packing-slips"
503
- msgstr[0] "albarán de entrega"
504
- msgstr[1] "albaranes de entrega"
505
-
506
- #: includes/documents/class-wcpdf-packing-slip.php:105
507
- msgid "Display billing address"
508
- msgstr "Mostrar dirección de facturación"
509
-
510
- #: includes/documents/class-wcpdf-packing-slip.php:111
511
- msgid ""
512
- "Display billing address (in addition to the default shipping address) if "
513
- "different from shipping address"
514
- msgstr ""
515
-
516
- #: includes/legacy/class-wcpdf-legacy-document.php:32
517
- msgid "Legacy Document"
518
- msgstr ""
519
-
520
- #: includes/views/wcpdf-extensions.php:15
521
- msgid "Check out these premium extensions!"
522
- msgstr "Échale un vistazo a las extensiones premium!"
523
-
524
- #: includes/views/wcpdf-extensions.php:16
525
- msgid "click items to read more"
526
- msgstr "Haz click para leer más"
527
-
528
- #: includes/views/wcpdf-extensions.php:21
529
- msgid ""
530
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
531
- "system"
532
- msgstr ""
533
-
534
- #: includes/views/wcpdf-extensions.php:23
535
- msgid ""
536
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
537
- "premium extensions:"
538
- msgstr ""
539
-
540
- #: includes/views/wcpdf-extensions.php:24
541
- msgid "Professional features:"
542
- msgstr ""
543
-
544
- #: includes/views/wcpdf-extensions.php:26
545
- #: includes/views/wcpdf-extensions.php:56
546
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
547
- msgstr ""
548
-
549
- #: includes/views/wcpdf-extensions.php:27
550
- #: includes/views/wcpdf-extensions.php:57
551
- msgid ""
552
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
553
- "packing slips, for example to a drop-shipper or a supplier."
554
- msgstr ""
555
-
556
- #: includes/views/wcpdf-extensions.php:28
557
- #: includes/views/wcpdf-extensions.php:58
558
- msgid ""
559
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
560
- "document) to the WooCommerce emails of your choice."
561
- msgstr ""
562
-
563
- #: includes/views/wcpdf-extensions.php:29
564
- #: includes/views/wcpdf-extensions.php:59
565
- msgid ""
566
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
567
- "and credit notes or utilize the main invoice numbering system"
568
- msgstr ""
569
-
570
- #: includes/views/wcpdf-extensions.php:30
571
- #: includes/views/wcpdf-extensions.php:60
572
- msgid ""
573
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
574
- "additional custom fields, font sizes etc. without the need to create a "
575
- "custom template."
576
- msgstr ""
577
-
578
- #: includes/views/wcpdf-extensions.php:31
579
- #: includes/views/wcpdf-extensions.php:61
580
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
581
- msgstr ""
582
-
583
- #: includes/views/wcpdf-extensions.php:33
584
- #: includes/views/wcpdf-extensions.php:131
585
- msgid "Advanced, customizable templates"
586
- msgstr "Plantillas personalizables avanzadas"
587
-
588
- #: includes/views/wcpdf-extensions.php:35
589
- #: includes/views/wcpdf-extensions.php:134
590
- msgid ""
591
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
592
- "your needs with a drag & drop customizer"
593
- msgstr ""
594
- "Personaliza completamente los contenidos de la factura acorde a tus "
595
- "necesidades ( precios, impuestos, miniaturas) con drag & drop customizer"
596
-
597
- #: includes/views/wcpdf-extensions.php:36
598
- #: includes/views/wcpdf-extensions.php:135
599
- msgid "Two extra stylish premade templates (Modern & Business)"
600
- msgstr "Dos plantillas elegantes pre diseñadas extra (Modern & Business)"
601
-
602
- #: includes/views/wcpdf-extensions.php:38
603
- msgid "Upload automatically to dropbox"
604
- msgstr ""
605
-
606
- #: includes/views/wcpdf-extensions.php:40
607
- #: includes/views/wcpdf-extensions.php:97
608
- msgid ""
609
- "This extension conveniently uploads all the invoices (and other pdf "
610
- "documents from the professional extension) that are emailed to your "
611
- "customers to Dropbox. The best way to keep your invoice administration up to "
612
- "date!"
613
- msgstr ""
614
-
615
- #: includes/views/wcpdf-extensions.php:43
616
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
617
- msgstr ""
618
-
619
- #: includes/views/wcpdf-extensions.php:52
620
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
621
- msgstr "Hazte Pro: Facturas Proforma, notas de crédito (=devoluciones( y más!"
622
-
623
- #: includes/views/wcpdf-extensions.php:54
624
- msgid ""
625
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
626
- "features:"
627
- msgstr ""
628
-
629
- #: includes/views/wcpdf-extensions.php:63
630
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
631
- msgstr "Hazte con WooCommerce PDF Invoices & Packing Slips Professional!"
632
-
633
- #: includes/views/wcpdf-extensions.php:71
634
- msgid "Automatically send payment reminders to your customers"
635
- msgstr ""
636
-
637
- #: includes/views/wcpdf-extensions.php:73
638
- msgid "WooCommerce Smart Reminder emails"
639
- msgstr ""
640
-
641
- #: includes/views/wcpdf-extensions.php:75
642
- msgid "<b>Completely automatic</b> scheduled emails"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:76
646
- msgid ""
647
- "<b>Rich text editor</b> for the email text, including placeholders for data "
648
- "from the order (name, order total, etc)"
649
- msgstr ""
650
-
651
- #: includes/views/wcpdf-extensions.php:77
652
- msgid ""
653
- "Configure the exact requirements for sending an email (time after order, "
654
- "order status, payment method)"
655
- msgstr ""
656
-
657
- #: includes/views/wcpdf-extensions.php:78
658
- msgid ""
659
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
660
- "order language."
661
- msgstr ""
662
-
663
- #: includes/views/wcpdf-extensions.php:79
664
- msgid ""
665
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
666
- "reminders, repeat purchases)"
667
- msgstr ""
668
-
669
- #: includes/views/wcpdf-extensions.php:80
670
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:82
674
- msgid "Get WooCommerce Smart Reminder Emails"
675
- msgstr ""
676
-
677
- #: includes/views/wcpdf-extensions.php:91
678
- msgid "Upload all invoices automatically to your dropbox"
679
- msgstr "Sube automaticamente todas las facturas a tu dropbox"
680
-
681
- #: includes/views/wcpdf-extensions.php:98
682
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
683
- msgstr ""
684
-
685
- #: includes/views/wcpdf-extensions.php:110
686
- msgid ""
687
- "Automatically send new orders or packing slips to your printer, as soon as "
688
- "the customer orders!"
689
- msgstr ""
690
-
691
- #: includes/views/wcpdf-extensions.php:116
692
- msgid ""
693
- "Check out the WooCommerce Automatic Order Printing extension from our "
694
- "partners at Simba Hosting"
695
- msgstr ""
696
-
697
- #: includes/views/wcpdf-extensions.php:117
698
- msgid "WooCommerce Automatic Order Printing"
699
- msgstr ""
700
-
701
- #: includes/views/wcpdf-extensions.php:136
702
- #, php-format
703
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
704
- msgstr ""
705
-
706
- #: includes/views/wcpdf-extensions.php:137
707
- #, php-format
708
- msgid "For custom templates, contact us at %s."
709
- msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
710
-
711
- #: includes/views/wcpdf-extensions.php:146
712
- msgid "Hide this message"
713
- msgstr ""
714
-
715
- #: includes/views/wcpdf-settings-page.php:8
716
- msgid "WooCommerce PDF Invoices"
717
- msgstr "WooCommerce Facturas PDF"
718
-
719
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
720
- msgid "Billing Address:"
721
- msgstr "Dirección de facturación:"
722
-
723
- #: templates/Simple/invoice.php:41
724
- msgid "Ship To:"
725
- msgstr "Enviar a:"
726
-
727
- #: templates/Simple/invoice.php:50
728
- msgid "Invoice Number:"
729
- msgstr "Nº de la factura:"
730
-
731
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
732
- msgid "Order Number:"
733
- msgstr "Orden número:"
734
-
735
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
736
- msgid "Order Date:"
737
- msgstr "Fecha del pedido:"
738
-
739
- #: templates/Simple/invoice.php:69
740
- msgid "Payment Method:"
741
- msgstr "Forma de pago:"
742
-
743
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
744
- msgid "Product"
745
- msgstr "Producto"
746
-
747
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
748
- msgid "Quantity"
749
- msgstr "Cantidad"
750
-
751
- #: templates/Simple/invoice.php:85
752
- msgid "Price"
753
- msgstr "Precio"
754
-
755
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
756
- msgid "Description"
757
- msgstr "Descripción"
758
-
759
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
760
- msgid "SKU"
761
- msgstr "Nº Referencia"
762
-
763
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
764
- msgid "SKU:"
765
- msgstr "Nº Referencia:"
766
-
767
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
768
- msgid "Weight:"
769
- msgstr "Peso:"
770
-
771
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
772
- msgid "Customer Notes"
773
- msgstr "Notas del cliente"
774
-
775
- #: templates/Simple/packing-slip.php:30
776
- msgid "Shipping Address:"
777
- msgstr "Dirección de envío:"
778
-
779
- #: templates/Simple/packing-slip.php:57
780
- msgid "Shipping Method:"
781
- msgstr "Método de envío:"
782
-
783
- #: woocommerce-pdf-invoices-packingslips.php:231
784
- #, php-format
785
- msgid ""
786
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
787
- "installed & activated!"
788
- msgstr ""
789
- "¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
790
- "instalado y activado!"
791
-
792
- #: woocommerce-pdf-invoices-packingslips.php:243
793
- msgid ""
794
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
795
- "higher recommended)."
796
- msgstr ""
797
-
798
- #: woocommerce-pdf-invoices-packingslips.php:244
799
- msgid "How to update your PHP version"
800
- msgstr ""
801
-
802
- #~ msgid "Attach invoice to:"
803
- #~ msgstr "Adjuntar factura a:"
804
-
805
- #~ msgid ""
806
- #~ "Display shipping address on invoice (in addition to the default billing "
807
- #~ "address) if different from billing address"
808
- #~ msgstr ""
809
- #~ "Mostrar dirección de envío en la factura ( Además de la dirección de "
810
- #~ "facturación por defecto ) en el caso que sea diferente a la de facturación"
811
-
812
- #~ msgid ""
813
- #~ "This is the number that will be used on the next invoice that is created. "
814
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
815
- #~ "first invoice that is created and increases for every new invoice. Note "
816
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
817
- #~ "number, this could create double invoice numbers!"
818
- #~ msgstr ""
819
- #~ "Este número se utilizará al crear la siguiente factura. Por defecto, la "
820
- #~ "numeración comienza desde la WooCommerce Order Number de la primera "
821
- #~ "factura y se incrementa por cada nueva. Tenga en cuenta que si lo "
822
- #~ "reemplaza y lo ajusta a uno inferior podría crear facturas con números "
823
- #~ "duplicados."
824
-
825
- #~ msgid "Invoice number format"
826
- #~ msgstr "Fomato en la numeración de las facturas"
827
-
828
- #~ msgid ""
829
- #~ "Disable automatic creation/attachment of invoices when only free products "
830
- #~ "are ordered"
831
- #~ msgstr ""
832
- #~ "Deshabilitar creación automática/ adjuntar facturas cuando solo se "
833
- #~ "ordenen productos gratuitos"
834
-
835
- #~ msgid ""
836
- #~ "Display billing address on packing slip (in addition to the default "
837
- #~ "shipping address) if different from shipping address"
838
- #~ msgstr ""
839
- #~ "Mostrar dirección de facturación en albarán de entrega ( Además de la "
840
- #~ "dirección de facturación por defecto ) en el caso que sea diferente a la "
841
- #~ "de facturación"
842
-
843
- #~ msgid "Template"
844
- #~ msgstr "Plantilla"
845
-
846
- #~ msgid "Admin New Order email"
847
- #~ msgstr "Correo electrónico del administrador al crear un nuevo pedido."
848
-
849
- #~ msgid "Customer Processing Order email"
850
- #~ msgstr "Correo electrónico del cliente al procesar el pedido."
851
-
852
- #~ msgid "Customer Completed Order email"
853
- #~ msgstr "Correo electrónico del cliente al completar el pedido."
854
-
855
- #~ msgid "Customer Invoice email"
856
- #~ msgstr "Correo electrónico de la factura del cliente."
857
-
858
- #~ msgid "Interface"
859
- #~ msgstr "Interfaz"
860
-
861
- #~ msgid "PDF Template settings"
862
- #~ msgstr "Ajustes de la plantilla PDF"
863
-
864
- #~ msgid "Display built-in sequential invoice number"
865
- #~ msgstr "Mostrar numeración secuencial en las facturas"
866
-
867
- #~ msgid ""
868
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
869
- #~ "respectively"
870
- #~ msgstr ""
871
- #~ "Para usar el año y/o el mes de la factura, usa [order_year] o "
872
- #~ "[order_month] respectivamente"
873
-
874
- #~ msgid "Use old tmp folder"
875
- #~ msgstr "Usar la carpeta antigua tmp"
876
-
877
- #~ msgid ""
878
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
879
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
880
- #~ "not recommended on new installs!"
881
- #~ msgstr ""
882
- #~ "Antes de la versión 1.5 de Facturas PDF, los archivos temporales se "
883
- #~ "guardaban en la carpeta del plugin. Este ajuste es solo para la "
884
- #~ "compatibilidad con anteriores versiones, no recomendado para nuevas "
885
- #~ "instalaciones!"
886
-
887
- #~ msgid "PDF Packing Slips"
888
- #~ msgstr "Albaranes de entrega PDF"
889
-
890
- #~ msgid "PDF Invoice"
891
- #~ msgstr "Factura PDF"
892
-
893
- #~ msgid "PDF Packing Slip"
894
- #~ msgstr "Albarán de entrega PDF"
895
-
896
- #~ msgid ""
897
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
898
- #~ "extension."
899
- #~ msgstr ""
900
- #~ "¡Sube tus facturas automáticamente a dropbox!<br/>Visita la extensión %s."
901
-
902
- #~ msgid ""
903
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
904
- #~ "Packing Slips templates at %s."
905
- #~ msgstr ""
906
- #~ "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas "
907
- #~ "premium de PDF Invoice & Packing Slips en %s."
908
-
909
- #~ msgid "PDF Invoice Number (unformatted!)"
910
- #~ msgstr "Nº de la factura PDF (¡sin formato!)"
911
-
912
- #~ msgid "Number to display on invoice"
913
- #~ msgstr "Número a mostrar en la factura"
914
-
915
- #~ msgid "WooCommerce order number"
916
- #~ msgstr "Número de pedido de WooCommerce "
917
-
918
- #~ msgid ""
919
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
920
- #~ "the WooCommerce order number"
921
- #~ msgstr ""
922
- #~ "Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
923
- #~ "seleccione el número de pedido de WooCommerce."
924
-
925
- #~ msgid "Date to display on invoice"
926
- #~ msgstr "Fecha a mostrar en la factura"
927
-
928
- #~ msgid "Order date"
929
- #~ msgstr "Fecha del pedido"
930
-
931
- #~ msgid "PDF invoice"
932
- #~ msgstr "Factura PDF "
933
-
934
- #~ msgid ""
935
- #~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
936
- #~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
937
- #~ "\">Increasing memory allocated to PHP</a>"
938
- #~ msgstr ""
939
- #~ "Actualmente el límite de memoria de WP está fijado en %s - Se recomienda "
940
- #~ "aumentarlo al menos a 64MB (128 MB para un uso óptimo). Ver: <a href=\"%s"
941
- #~ "\">Ampliar memoria dedicada a PHP</a>"
942
-
943
- #~ msgid "..."
944
- #~ msgstr "..."
945
-
946
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
947
- #~ msgstr ""
948
- #~ "Factura por correo electrónico (adjuntar confirmación del pedido o "
949
- #~ "factura)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: es_ES\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Nº de la factura"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Crear PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr "Fecha de Factura PDF"
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Factura"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Fecha de la factura:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr "Número de la factura (unformatted!)"
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "H"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "H"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Descargar factura (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "No tiene suficientes permitos para acceder a esta página."
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "No se encuentran algunos de los parámetros de exportación"
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<b>Atención!</b> Los ajustes de debajo son solo para depurarción/ "
79
+ "desarrollo. No usarlos en una web funcional!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Estos son usados para las columnas del pie de página (opcional) en la "
88
+ "plantilla <em>Modern (Premium)</em>, pero también se pueden emplear en la "
89
+ "plantilla personalizada:"
90
+
91
+ #: includes/class-wcpdf-settings-callbacks.php:301
92
+ msgid "Image resolution"
93
+ msgstr "Resolución de la imagen"
94
+
95
+ #: includes/class-wcpdf-settings-callbacks.php:325
96
+ msgid "Save"
97
+ msgstr ""
98
+
99
+ #: includes/class-wcpdf-settings-debug.php:34
100
+ msgid "Debug settings"
101
+ msgstr "Depurar ajustes"
102
+
103
+ #: includes/class-wcpdf-settings-debug.php:40
104
+ msgid "Legacy mode"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-settings-debug.php:46
108
+ msgid ""
109
+ "Legacy mode ensures compatibility with templates and filters from previous "
110
+ "versions."
111
+ msgstr ""
112
+
113
+ #: includes/class-wcpdf-settings-debug.php:52
114
+ msgid "Enable debug output"
115
+ msgstr "Activar salida de depuración"
116
+
117
+ #: includes/class-wcpdf-settings-debug.php:58
118
+ msgid ""
119
+ "Enable this option to output plugin errors if you're getting a blank page or "
120
+ "other PDF generation issues"
121
+ msgstr ""
122
+ "Activar esta opción para depurar errores del plugin si está generando una "
123
+ "página en blanco u otros problemas con la generación de PDF"
124
+
125
+ #: includes/class-wcpdf-settings-debug.php:64
126
+ msgid "Output to HTML"
127
+ msgstr "Salida a HTML"
128
+
129
+ #: includes/class-wcpdf-settings-debug.php:70
130
+ msgid ""
131
+ "Send the template output as HTML to the browser instead of creating a PDF."
132
+ msgstr ""
133
+ "Enviar la plantilla de salida como HTML al explorador en ve de crear un PDF."
134
+
135
+ #: includes/class-wcpdf-settings-documents.php:29
136
+ #: includes/class-wcpdf-settings.php:84
137
+ msgid "Documents"
138
+ msgstr ""
139
+
140
+ #: includes/class-wcpdf-settings-documents.php:45
141
+ msgid ""
142
+ "All available documents are listed below. Click on a document to configure "
143
+ "it."
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-settings-general.php:37
147
+ msgid "General settings"
148
+ msgstr "Ajustes generales"
149
+
150
+ #: includes/class-wcpdf-settings-general.php:43
151
+ msgid "How do you want to view the PDF?"
152
+ msgstr "¿Cómo desea visualizar el PDF?"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:50
155
+ msgid "Download the PDF"
156
+ msgstr "Descargándolo."
157
+
158
+ #: includes/class-wcpdf-settings-general.php:51
159
+ msgid "Open the PDF in a new browser tab/window"
160
+ msgstr "Abriéndolo en una nueva pestaña/ventana del navegador."
161
+
162
+ #: includes/class-wcpdf-settings-general.php:58
163
+ msgid "Choose a template"
164
+ msgstr "Elige una plantilla"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:65
167
+ #, php-format
168
+ msgid ""
169
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
170
+ "your (child) theme in <code>%s</code> to customize them"
171
+ msgstr ""
172
+ "¿Quieres usar tu propia plantilla? Copia los archivos de la carpeta <code>"
173
+ "%s</code> a tu \"theme\" (o child theme) en <code>%s</code> para "
174
+ "personalizarlos."
175
+
176
+ #: includes/class-wcpdf-settings-general.php:71
177
+ msgid "Paper size"
178
+ msgstr "Tamaño del papel"
179
+
180
+ #: includes/class-wcpdf-settings-general.php:78
181
+ msgid "A4"
182
+ msgstr "A4"
183
+
184
+ #: includes/class-wcpdf-settings-general.php:79
185
+ msgid "Letter"
186
+ msgstr "Carta"
187
+
188
+ #: includes/class-wcpdf-settings-general.php:86
189
+ msgid "Extended currency symbol support"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-settings-general.php:92
193
+ msgid "Enable this if your currency symbol is not displaying properly"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-settings-general.php:98
197
+ msgid "Shop header/logo"
198
+ msgstr "Logotipo de la tienda"
199
+
200
+ #: includes/class-wcpdf-settings-general.php:104
201
+ msgid "Select or upload your invoice header/logo"
202
+ msgstr "Selecciona o sube una logotipo para la cabecera de la factura"
203
+
204
+ #: includes/class-wcpdf-settings-general.php:105
205
+ msgid "Set image"
206
+ msgstr "Añadir imagen"
207
+
208
+ #: includes/class-wcpdf-settings-general.php:106
209
+ msgid "Remove image"
210
+ msgstr "Eliminar la imagen"
211
+
212
+ #: includes/class-wcpdf-settings-general.php:113
213
+ msgid "Shop Name"
214
+ msgstr "Nombre de la tienda"
215
+
216
+ #: includes/class-wcpdf-settings-general.php:126
217
+ msgid "Shop Address"
218
+ msgstr "Dirección de la tienda"
219
+
220
+ #: includes/class-wcpdf-settings-general.php:141
221
+ msgid "Footer: terms & conditions, policies, etc."
222
+ msgstr "Pie de página: Términos y condiciones, políticas, etc."
223
+
224
+ #: includes/class-wcpdf-settings-general.php:156
225
+ msgid "Extra template fields"
226
+ msgstr "Campos extra de la plantilla"
227
+
228
+ #: includes/class-wcpdf-settings-general.php:162
229
+ msgid "Extra field 1"
230
+ msgstr "Campo extra 1"
231
+
232
+ #: includes/class-wcpdf-settings-general.php:170
233
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
+ msgstr ""
235
+ "Esta es la columna 1 del pie de página en la plantilla <i>Modern (Premium)</"
236
+ "i>."
237
+
238
+ #: includes/class-wcpdf-settings-general.php:177
239
+ msgid "Extra field 2"
240
+ msgstr "Campo extra 2"
241
+
242
+ #: includes/class-wcpdf-settings-general.php:185
243
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
244
+ msgstr ""
245
+ "Esta es la columna 2 del pie de página en la plantilla <i>Modern (Premium)</"
246
+ "i>."
247
+
248
+ #: includes/class-wcpdf-settings-general.php:192
249
+ msgid "Extra field 3"
250
+ msgstr "Campo extra 3"
251
+
252
+ #: includes/class-wcpdf-settings-general.php:200
253
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
254
+ msgstr ""
255
+ "Esta es la columna 3 del pie de página en la plantilla <i>Modern (Premium)</"
256
+ "i>."
257
+
258
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
259
+ msgid "PDF Invoices"
260
+ msgstr "Facturas PDF"
261
+
262
+ #: includes/class-wcpdf-settings.php:58
263
+ msgid "Settings"
264
+ msgstr "Ajustes"
265
+
266
+ #: includes/class-wcpdf-settings.php:71
267
+ msgid "Documentation"
268
+ msgstr ""
269
+
270
+ #: includes/class-wcpdf-settings.php:72
271
+ msgid "Support Forum"
272
+ msgstr ""
273
+
274
+ #: includes/class-wcpdf-settings.php:83
275
+ msgid "General"
276
+ msgstr "General"
277
+
278
+ #: includes/class-wcpdf-settings.php:89
279
+ msgid "Status"
280
+ msgstr "Estado"
281
+
282
+ #: includes/compatibility/class-wc-core-compatibility.php:222
283
+ msgid "WooCommerce"
284
+ msgstr ""
285
+
286
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
287
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
288
+ msgid "N/A"
289
+ msgstr "No disponible"
290
+
291
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
292
+ msgid "Payment method"
293
+ msgstr "Forma de pago"
294
+
295
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
296
+ msgid "Shipping method"
297
+ msgstr "Envío"
298
+
299
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
300
+ #, php-format
301
+ msgid "(includes %s)"
302
+ msgstr ""
303
+
304
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
305
+ #, php-format
306
+ msgid "(Includes %s)"
307
+ msgstr "(Incluye %s)"
308
+
309
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
310
+ msgid "Subtotal"
311
+ msgstr "Subtotal"
312
+
313
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
314
+ msgid "Shipping"
315
+ msgstr "Envío"
316
+
317
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
318
+ msgid "Discount"
319
+ msgstr "Descuento"
320
+
321
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
322
+ msgid "VAT"
323
+ msgstr "IVA"
324
+
325
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
326
+ msgid "Tax rate"
327
+ msgstr "Porcentaje del Impuesto"
328
+
329
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
330
+ msgid "Total ex. VAT"
331
+ msgstr "Total (Sin IVA)"
332
+
333
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
334
+ msgid "Total"
335
+ msgstr "Total"
336
+
337
+ #: includes/documents/abstract-wcpdf-order-document.php:674
338
+ msgid "Admin email"
339
+ msgstr ""
340
+
341
+ #: includes/documents/abstract-wcpdf-order-document.php:677
342
+ msgid "Manual email"
343
+ msgstr ""
344
+
345
+ #: includes/documents/class-wcpdf-invoice.php:85
346
+ msgid "invoice"
347
+ msgid_plural "invoices"
348
+ msgstr[0] "factura"
349
+ msgstr[1] "facturas"
350
+
351
+ #: includes/documents/class-wcpdf-invoice.php:130
352
+ #: includes/documents/class-wcpdf-packing-slip.php:94
353
+ msgid "Enable"
354
+ msgstr ""
355
+
356
+ #: includes/documents/class-wcpdf-invoice.php:141
357
+ msgid "Attach to:"
358
+ msgstr ""
359
+
360
+ #: includes/documents/class-wcpdf-invoice.php:148
361
+ #, php-format
362
+ msgid ""
363
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
364
+ "permissions for this folder! Without having write access to this folder, the "
365
+ "plugin will not be able to email invoices."
366
+ msgstr ""
367
+ "Parece que la carpeta temporal (<code>% s </ code>) no es modificable, "
368
+ "¡compruebe los permisos para esta carpeta! Sin acceso de escritura a esta "
369
+ "carpeta, el plugin no será capaz de enviar facturas por correo electrónico."
370
+
371
+ #: includes/documents/class-wcpdf-invoice.php:154
372
+ msgid "Display shipping address"
373
+ msgstr "Mostrar dirección de envío"
374
+
375
+ #: includes/documents/class-wcpdf-invoice.php:160
376
+ msgid ""
377
+ "Display shipping address (in addition to the default billing address) if "
378
+ "different from billing address"
379
+ msgstr ""
380
+
381
+ #: includes/documents/class-wcpdf-invoice.php:166
382
+ #: includes/documents/class-wcpdf-packing-slip.php:117
383
+ msgid "Display email address"
384
+ msgstr "Mostrar email"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:177
387
+ #: includes/documents/class-wcpdf-packing-slip.php:128
388
+ msgid "Display phone number"
389
+ msgstr "Mostrar teléfono"
390
+
391
+ #: includes/documents/class-wcpdf-invoice.php:188
392
+ msgid "Display invoice date"
393
+ msgstr "Mostrar fecha de la factura"
394
+
395
+ #: includes/documents/class-wcpdf-invoice.php:200
396
+ msgid "Display invoice number"
397
+ msgstr ""
398
+
399
+ #: includes/documents/class-wcpdf-invoice.php:212
400
+ msgid "Next invoice number (without prefix/suffix etc.)"
401
+ msgstr "Siguiente número de la factura (sin prefijo/sufijo, etc.)"
402
+
403
+ #: includes/documents/class-wcpdf-invoice.php:218
404
+ msgid ""
405
+ "This is the number that will be used for the next document. By default, "
406
+ "numbering starts from 1 and increases for every new document. Note that if "
407
+ "you override this and set it lower than the current/highest number, this "
408
+ "could create duplicate numbers!"
409
+ msgstr ""
410
+
411
+ #: includes/documents/class-wcpdf-invoice.php:224
412
+ msgid "Number format"
413
+ msgstr ""
414
+
415
+ #: includes/documents/class-wcpdf-invoice.php:232
416
+ msgid "Prefix"
417
+ msgstr "Prefijo"
418
+
419
+ #: includes/documents/class-wcpdf-invoice.php:234
420
+ msgid ""
421
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
422
+ "respectively"
423
+ msgstr ""
424
+
425
+ #: includes/documents/class-wcpdf-invoice.php:237
426
+ msgid "Suffix"
427
+ msgstr "Sufijo"
428
+
429
+ #: includes/documents/class-wcpdf-invoice.php:242
430
+ msgid "Padding"
431
+ msgstr "Número de dígitos"
432
+
433
+ #: includes/documents/class-wcpdf-invoice.php:245
434
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
435
+ msgstr ""
436
+ "Introduzca el número de dígitos aquí - introduzca \"6\" para mostrar 42 como "
437
+ "000042"
438
+
439
+ #: includes/documents/class-wcpdf-invoice.php:248
440
+ msgid ""
441
+ "note: if you have already created a custom invoice number format with a "
442
+ "filter, the above settings will be ignored"
443
+ msgstr ""
444
+ "Nota: Si ya has creado un formato personalizado de numeración de facturas "
445
+ "con un filtro, los ajustes anteriores serán ignorados"
446
+
447
+ #: includes/documents/class-wcpdf-invoice.php:254
448
+ msgid "Reset invoice number yearly"
449
+ msgstr "Resetear numeración de facturas anual"
450
+
451
+ #: includes/documents/class-wcpdf-invoice.php:265
452
+ msgid "Allow My Account invoice download"
453
+ msgstr "Permitir descarga de facturas desde \" Mi Cuenta\""
454
+
455
+ #: includes/documents/class-wcpdf-invoice.php:272
456
+ msgid "Only when an invoice is already created/emailed"
457
+ msgstr "Solo cuando una factura ya ha sido creada/ enviada por correo"
458
+
459
+ #: includes/documents/class-wcpdf-invoice.php:273
460
+ msgid "Only for specific order statuses (define below)"
461
+ msgstr "Solo para estados de orden específicos ( definir debajo )"
462
+
463
+ #: includes/documents/class-wcpdf-invoice.php:274
464
+ msgid "Always"
465
+ msgstr "Siempre"
466
+
467
+ #: includes/documents/class-wcpdf-invoice.php:275
468
+ msgid "Never"
469
+ msgstr "Nunca"
470
+
471
+ #: includes/documents/class-wcpdf-invoice.php:290
472
+ msgid "Enable invoice number column in the orders list"
473
+ msgstr "Activar la columna de número de factura en pedidos"
474
+
475
+ #: includes/documents/class-wcpdf-invoice.php:301
476
+ msgid "Disable for free products"
477
+ msgstr "Deshabilitar para productos gratuitos"
478
+
479
+ #: includes/documents/class-wcpdf-invoice.php:307
480
+ msgid ""
481
+ "Disable automatic creation/attachment when only free products are ordered"
482
+ msgstr ""
483
+
484
+ #: includes/documents/class-wcpdf-invoice.php:321
485
+ msgid "Invoice numbers are created by a third-party extension."
486
+ msgstr ""
487
+
488
+ #: includes/documents/class-wcpdf-invoice.php:323
489
+ #, php-format
490
+ msgid "Configure it <a href=\"%s\">here</a>."
491
+ msgstr ""
492
+
493
+ #: includes/documents/class-wcpdf-packing-slip.php:32
494
+ #: includes/documents/class-wcpdf-packing-slip.php:41
495
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
496
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
497
+ msgid "Packing Slip"
498
+ msgstr "Albarán de entrega"
499
+
500
+ #: includes/documents/class-wcpdf-packing-slip.php:53
501
+ msgid "packing-slip"
502
+ msgid_plural "packing-slips"
503
+ msgstr[0] "albarán de entrega"
504
+ msgstr[1] "albaranes de entrega"
505
+
506
+ #: includes/documents/class-wcpdf-packing-slip.php:105
507
+ msgid "Display billing address"
508
+ msgstr "Mostrar dirección de facturación"
509
+
510
+ #: includes/documents/class-wcpdf-packing-slip.php:111
511
+ msgid ""
512
+ "Display billing address (in addition to the default shipping address) if "
513
+ "different from shipping address"
514
+ msgstr ""
515
+
516
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
517
+ msgid "Legacy Document"
518
+ msgstr ""
519
+
520
+ #: includes/views/wcpdf-extensions.php:15
521
+ msgid "Check out these premium extensions!"
522
+ msgstr "Échale un vistazo a las extensiones premium!"
523
+
524
+ #: includes/views/wcpdf-extensions.php:16
525
+ msgid "click items to read more"
526
+ msgstr "Haz click para leer más"
527
+
528
+ #: includes/views/wcpdf-extensions.php:21
529
+ msgid ""
530
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
531
+ "system"
532
+ msgstr ""
533
+
534
+ #: includes/views/wcpdf-extensions.php:23
535
+ msgid ""
536
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
537
+ "premium extensions:"
538
+ msgstr ""
539
+
540
+ #: includes/views/wcpdf-extensions.php:24
541
+ msgid "Professional features:"
542
+ msgstr ""
543
+
544
+ #: includes/views/wcpdf-extensions.php:26
545
+ #: includes/views/wcpdf-extensions.php:56
546
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
547
+ msgstr ""
548
+
549
+ #: includes/views/wcpdf-extensions.php:27
550
+ #: includes/views/wcpdf-extensions.php:57
551
+ msgid ""
552
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
553
+ "packing slips, for example to a drop-shipper or a supplier."
554
+ msgstr ""
555
+
556
+ #: includes/views/wcpdf-extensions.php:28
557
+ #: includes/views/wcpdf-extensions.php:58
558
+ msgid ""
559
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
560
+ "document) to the WooCommerce emails of your choice."
561
+ msgstr ""
562
+
563
+ #: includes/views/wcpdf-extensions.php:29
564
+ #: includes/views/wcpdf-extensions.php:59
565
+ msgid ""
566
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
567
+ "and credit notes or utilize the main invoice numbering system"
568
+ msgstr ""
569
+
570
+ #: includes/views/wcpdf-extensions.php:30
571
+ #: includes/views/wcpdf-extensions.php:60
572
+ msgid ""
573
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
574
+ "additional custom fields, font sizes etc. without the need to create a "
575
+ "custom template."
576
+ msgstr ""
577
+
578
+ #: includes/views/wcpdf-extensions.php:31
579
+ #: includes/views/wcpdf-extensions.php:61
580
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
581
+ msgstr ""
582
+
583
+ #: includes/views/wcpdf-extensions.php:33
584
+ #: includes/views/wcpdf-extensions.php:131
585
+ msgid "Advanced, customizable templates"
586
+ msgstr "Plantillas personalizables avanzadas"
587
+
588
+ #: includes/views/wcpdf-extensions.php:35
589
+ #: includes/views/wcpdf-extensions.php:134
590
+ msgid ""
591
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
592
+ "your needs with a drag & drop customizer"
593
+ msgstr ""
594
+ "Personaliza completamente los contenidos de la factura acorde a tus "
595
+ "necesidades ( precios, impuestos, miniaturas) con drag & drop customizer"
596
+
597
+ #: includes/views/wcpdf-extensions.php:36
598
+ #: includes/views/wcpdf-extensions.php:135
599
+ msgid "Two extra stylish premade templates (Modern & Business)"
600
+ msgstr "Dos plantillas elegantes pre diseñadas extra (Modern & Business)"
601
+
602
+ #: includes/views/wcpdf-extensions.php:38
603
+ msgid "Upload automatically to dropbox"
604
+ msgstr ""
605
+
606
+ #: includes/views/wcpdf-extensions.php:40
607
+ #: includes/views/wcpdf-extensions.php:97
608
+ msgid ""
609
+ "This extension conveniently uploads all the invoices (and other pdf "
610
+ "documents from the professional extension) that are emailed to your "
611
+ "customers to Dropbox. The best way to keep your invoice administration up to "
612
+ "date!"
613
+ msgstr ""
614
+
615
+ #: includes/views/wcpdf-extensions.php:43
616
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
617
+ msgstr ""
618
+
619
+ #: includes/views/wcpdf-extensions.php:52
620
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
621
+ msgstr "Hazte Pro: Facturas Proforma, notas de crédito (=devoluciones( y más!"
622
+
623
+ #: includes/views/wcpdf-extensions.php:54
624
+ msgid ""
625
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
626
+ "features:"
627
+ msgstr ""
628
+
629
+ #: includes/views/wcpdf-extensions.php:63
630
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
631
+ msgstr "Hazte con WooCommerce PDF Invoices & Packing Slips Professional!"
632
+
633
+ #: includes/views/wcpdf-extensions.php:71
634
+ msgid "Automatically send payment reminders to your customers"
635
+ msgstr ""
636
+
637
+ #: includes/views/wcpdf-extensions.php:73
638
+ msgid "WooCommerce Smart Reminder emails"
639
+ msgstr ""
640
+
641
+ #: includes/views/wcpdf-extensions.php:75
642
+ msgid "<b>Completely automatic</b> scheduled emails"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:76
646
+ msgid ""
647
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
648
+ "from the order (name, order total, etc)"
649
+ msgstr ""
650
+
651
+ #: includes/views/wcpdf-extensions.php:77
652
+ msgid ""
653
+ "Configure the exact requirements for sending an email (time after order, "
654
+ "order status, payment method)"
655
+ msgstr ""
656
+
657
+ #: includes/views/wcpdf-extensions.php:78
658
+ msgid ""
659
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
660
+ "order language."
661
+ msgstr ""
662
+
663
+ #: includes/views/wcpdf-extensions.php:79
664
+ msgid ""
665
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
666
+ "reminders, repeat purchases)"
667
+ msgstr ""
668
+
669
+ #: includes/views/wcpdf-extensions.php:80
670
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:82
674
+ msgid "Get WooCommerce Smart Reminder Emails"
675
+ msgstr ""
676
+
677
+ #: includes/views/wcpdf-extensions.php:91
678
+ msgid "Upload all invoices automatically to your dropbox"
679
+ msgstr "Sube automaticamente todas las facturas a tu dropbox"
680
+
681
+ #: includes/views/wcpdf-extensions.php:98
682
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
683
+ msgstr ""
684
+
685
+ #: includes/views/wcpdf-extensions.php:110
686
+ msgid ""
687
+ "Automatically send new orders or packing slips to your printer, as soon as "
688
+ "the customer orders!"
689
+ msgstr ""
690
+
691
+ #: includes/views/wcpdf-extensions.php:116
692
+ msgid ""
693
+ "Check out the WooCommerce Automatic Order Printing extension from our "
694
+ "partners at Simba Hosting"
695
+ msgstr ""
696
+
697
+ #: includes/views/wcpdf-extensions.php:117
698
+ msgid "WooCommerce Automatic Order Printing"
699
+ msgstr ""
700
+
701
+ #: includes/views/wcpdf-extensions.php:136
702
+ #, php-format
703
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
704
+ msgstr ""
705
+
706
+ #: includes/views/wcpdf-extensions.php:137
707
+ #, php-format
708
+ msgid "For custom templates, contact us at %s."
709
+ msgstr "Para plantillas personalizadas, contacte con nosotros en %s."
710
+
711
+ #: includes/views/wcpdf-extensions.php:146
712
+ msgid "Hide this message"
713
+ msgstr ""
714
+
715
+ #: includes/views/wcpdf-settings-page.php:8
716
+ msgid "WooCommerce PDF Invoices"
717
+ msgstr "WooCommerce Facturas PDF"
718
+
719
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
720
+ msgid "Billing Address:"
721
+ msgstr "Dirección de facturación:"
722
+
723
+ #: templates/Simple/invoice.php:41
724
+ msgid "Ship To:"
725
+ msgstr "Enviar a:"
726
+
727
+ #: templates/Simple/invoice.php:50
728
+ msgid "Invoice Number:"
729
+ msgstr "Nº de la factura:"
730
+
731
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
732
+ msgid "Order Number:"
733
+ msgstr "Orden número:"
734
+
735
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
736
+ msgid "Order Date:"
737
+ msgstr "Fecha del pedido:"
738
+
739
+ #: templates/Simple/invoice.php:69
740
+ msgid "Payment Method:"
741
+ msgstr "Forma de pago:"
742
+
743
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
744
+ msgid "Product"
745
+ msgstr "Producto"
746
+
747
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
748
+ msgid "Quantity"
749
+ msgstr "Cantidad"
750
+
751
+ #: templates/Simple/invoice.php:85
752
+ msgid "Price"
753
+ msgstr "Precio"
754
+
755
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
756
+ msgid "Description"
757
+ msgstr "Descripción"
758
+
759
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
760
+ msgid "SKU"
761
+ msgstr "Nº Referencia"
762
+
763
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
764
+ msgid "SKU:"
765
+ msgstr "Nº Referencia:"
766
+
767
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
768
+ msgid "Weight:"
769
+ msgstr "Peso:"
770
+
771
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
772
+ msgid "Customer Notes"
773
+ msgstr "Notas del cliente"
774
+
775
+ #: templates/Simple/packing-slip.php:30
776
+ msgid "Shipping Address:"
777
+ msgstr "Dirección de envío:"
778
+
779
+ #: templates/Simple/packing-slip.php:57
780
+ msgid "Shipping Method:"
781
+ msgstr "Método de envío:"
782
+
783
+ #: woocommerce-pdf-invoices-packingslips.php:231
784
+ #, php-format
785
+ msgid ""
786
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
787
+ "installed & activated!"
788
+ msgstr ""
789
+ "¡WooCommerce PDF Invoices & Packing Slips requiere que %sWooCommerce%s esté "
790
+ "instalado y activado!"
791
+
792
+ #: woocommerce-pdf-invoices-packingslips.php:243
793
+ msgid ""
794
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
795
+ "higher recommended)."
796
+ msgstr ""
797
+
798
+ #: woocommerce-pdf-invoices-packingslips.php:244
799
+ msgid "How to update your PHP version"
800
+ msgstr ""
801
+
802
+ #~ msgid "Attach invoice to:"
803
+ #~ msgstr "Adjuntar factura a:"
804
+
805
+ #~ msgid ""
806
+ #~ "Display shipping address on invoice (in addition to the default billing "
807
+ #~ "address) if different from billing address"
808
+ #~ msgstr ""
809
+ #~ "Mostrar dirección de envío en la factura ( Además de la dirección de "
810
+ #~ "facturación por defecto ) en el caso que sea diferente a la de facturación"
811
+
812
+ #~ msgid ""
813
+ #~ "This is the number that will be used on the next invoice that is created. "
814
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
815
+ #~ "first invoice that is created and increases for every new invoice. Note "
816
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
817
+ #~ "number, this could create double invoice numbers!"
818
+ #~ msgstr ""
819
+ #~ "Este número se utilizará al crear la siguiente factura. Por defecto, la "
820
+ #~ "numeración comienza desde la WooCommerce Order Number de la primera "
821
+ #~ "factura y se incrementa por cada nueva. Tenga en cuenta que si lo "
822
+ #~ "reemplaza y lo ajusta a uno inferior podría crear facturas con números "
823
+ #~ "duplicados."
824
+
825
+ #~ msgid "Invoice number format"
826
+ #~ msgstr "Fomato en la numeración de las facturas"
827
+
828
+ #~ msgid ""
829
+ #~ "Disable automatic creation/attachment of invoices when only free products "
830
+ #~ "are ordered"
831
+ #~ msgstr ""
832
+ #~ "Deshabilitar creación automática/ adjuntar facturas cuando solo se "
833
+ #~ "ordenen productos gratuitos"
834
+
835
+ #~ msgid ""
836
+ #~ "Display billing address on packing slip (in addition to the default "
837
+ #~ "shipping address) if different from shipping address"
838
+ #~ msgstr ""
839
+ #~ "Mostrar dirección de facturación en albarán de entrega ( Además de la "
840
+ #~ "dirección de facturación por defecto ) en el caso que sea diferente a la "
841
+ #~ "de facturación"
842
+
843
+ #~ msgid "Template"
844
+ #~ msgstr "Plantilla"
845
+
846
+ #~ msgid "Admin New Order email"
847
+ #~ msgstr "Correo electrónico del administrador al crear un nuevo pedido."
848
+
849
+ #~ msgid "Customer Processing Order email"
850
+ #~ msgstr "Correo electrónico del cliente al procesar el pedido."
851
+
852
+ #~ msgid "Customer Completed Order email"
853
+ #~ msgstr "Correo electrónico del cliente al completar el pedido."
854
+
855
+ #~ msgid "Customer Invoice email"
856
+ #~ msgstr "Correo electrónico de la factura del cliente."
857
+
858
+ #~ msgid "Interface"
859
+ #~ msgstr "Interfaz"
860
+
861
+ #~ msgid "PDF Template settings"
862
+ #~ msgstr "Ajustes de la plantilla PDF"
863
+
864
+ #~ msgid "Display built-in sequential invoice number"
865
+ #~ msgstr "Mostrar numeración secuencial en las facturas"
866
+
867
+ #~ msgid ""
868
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
869
+ #~ "respectively"
870
+ #~ msgstr ""
871
+ #~ "Para usar el año y/o el mes de la factura, usa [order_year] o "
872
+ #~ "[order_month] respectivamente"
873
+
874
+ #~ msgid "Use old tmp folder"
875
+ #~ msgstr "Usar la carpeta antigua tmp"
876
+
877
+ #~ msgid ""
878
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
879
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
880
+ #~ "not recommended on new installs!"
881
+ #~ msgstr ""
882
+ #~ "Antes de la versión 1.5 de Facturas PDF, los archivos temporales se "
883
+ #~ "guardaban en la carpeta del plugin. Este ajuste es solo para la "
884
+ #~ "compatibilidad con anteriores versiones, no recomendado para nuevas "
885
+ #~ "instalaciones!"
886
+
887
+ #~ msgid "PDF Packing Slips"
888
+ #~ msgstr "Albaranes de entrega PDF"
889
+
890
+ #~ msgid "PDF Invoice"
891
+ #~ msgstr "Factura PDF"
892
+
893
+ #~ msgid "PDF Packing Slip"
894
+ #~ msgstr "Albarán de entrega PDF"
895
+
896
+ #~ msgid ""
897
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
898
+ #~ "extension."
899
+ #~ msgstr ""
900
+ #~ "¡Sube tus facturas automáticamente a dropbox!<br/>Visita la extensión %s."
901
+
902
+ #~ msgid ""
903
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
904
+ #~ "Packing Slips templates at %s."
905
+ #~ msgstr ""
906
+ #~ "¿Buscando plantillas más avanzadas? Echa un vistazo a las plantillas "
907
+ #~ "premium de PDF Invoice & Packing Slips en %s."
908
+
909
+ #~ msgid "PDF Invoice Number (unformatted!)"
910
+ #~ msgstr "Nº de la factura PDF (¡sin formato!)"
911
+
912
+ #~ msgid "Number to display on invoice"
913
+ #~ msgstr "Número a mostrar en la factura"
914
+
915
+ #~ msgid "WooCommerce order number"
916
+ #~ msgstr "Número de pedido de WooCommerce "
917
+
918
+ #~ msgid ""
919
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
920
+ #~ "the WooCommerce order number"
921
+ #~ msgstr ""
922
+ #~ "Si está utilizando el plugin WooCommerce Sequential Order Numbers, "
923
+ #~ "seleccione el número de pedido de WooCommerce."
924
+
925
+ #~ msgid "Date to display on invoice"
926
+ #~ msgstr "Fecha a mostrar en la factura"
927
+
928
+ #~ msgid "Order date"
929
+ #~ msgstr "Fecha del pedido"
930
+
931
+ #~ msgid "PDF invoice"
932
+ #~ msgstr "Factura PDF "
933
+
934
+ #~ msgid ""
935
+ #~ "Your WP Memory Limit is currently set to %s - We recommend setting it to "
936
+ #~ "at least 64MB (128MB for optimal performance). See: <a href=\"%s"
937
+ #~ "\">Increasing memory allocated to PHP</a>"
938
+ #~ msgstr ""
939
+ #~ "Actualmente el límite de memoria de WP está fijado en %s - Se recomienda "
940
+ #~ "aumentarlo al menos a 64MB (128 MB para un uso óptimo). Ver: <a href=\"%s"
941
+ #~ "\">Ampliar memoria dedicada a PHP</a>"
942
+
943
+ #~ msgid "..."
944
+ #~ msgstr "..."
945
+
946
+ #~ msgid "Email invoice (attach to order confirmation or invoice email)"
947
+ #~ msgstr ""
948
+ #~ "Factura por correo electrónico (adjuntar confirmación del pedido o "
949
+ #~ "factura)"
languages/woocommerce-pdf-invoices-packing-slips-et.po CHANGED
@@ -1,899 +1,899 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: Tanel Jüris <tanel.juris@marketingsharks.ee>\n"
7
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
- "Language: et\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Arve number"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Loo PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr "PDF arve andmed"
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Arve"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Arve kuupäev:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr "Arve number (vorminguta)"
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "h"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "m"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Lae arve alla (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "Sul ei ole selle lehe vaatamiseks piisavalt õigusi."
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "Mõned eksportimise parameetrid on puudu."
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<b>Hoiatus!</b> Allolevad sätted on mõeldud ainult veaotsinguks/arenduseks. "
79
- "Ära kasuta neid rakenduskeskkonnas!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Neid kasutatakse <em>Modern (Preemium)</em> mallis (valikuliste) "
88
- "jalusetulpade jaoks, kuid on kasutatavad ka muude elementide jaoks sinu "
89
- "kohandatud mallis."
90
-
91
- #: includes/class-wcpdf-settings-callbacks.php:301
92
- msgid "Image resolution"
93
- msgstr "Pildi resolutsioon"
94
-
95
- #: includes/class-wcpdf-settings-callbacks.php:325
96
- msgid "Save"
97
- msgstr ""
98
-
99
- #: includes/class-wcpdf-settings-debug.php:34
100
- msgid "Debug settings"
101
- msgstr "Veaotsingu sätted"
102
-
103
- #: includes/class-wcpdf-settings-debug.php:40
104
- msgid "Legacy mode"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-settings-debug.php:46
108
- msgid ""
109
- "Legacy mode ensures compatibility with templates and filters from previous "
110
- "versions."
111
- msgstr ""
112
-
113
- #: includes/class-wcpdf-settings-debug.php:52
114
- msgid "Enable debug output"
115
- msgstr "Lülita sisse veaotsingu väljund"
116
-
117
- #: includes/class-wcpdf-settings-debug.php:58
118
- msgid ""
119
- "Enable this option to output plugin errors if you're getting a blank page or "
120
- "other PDF generation issues"
121
- msgstr ""
122
- "Lülita see valik sisse, et väljastada plugina veateateid, kui näed tühja "
123
- "lehte või PDF genereerimisel esineb mõni muu probleem"
124
-
125
- #: includes/class-wcpdf-settings-debug.php:64
126
- msgid "Output to HTML"
127
- msgstr "Väljasta HTML kujul"
128
-
129
- #: includes/class-wcpdf-settings-debug.php:70
130
- msgid ""
131
- "Send the template output as HTML to the browser instead of creating a PDF."
132
- msgstr ""
133
- "PDF faili loomise asemel saada malli väljund HTML kujul veebilehitsejasse."
134
-
135
- #: includes/class-wcpdf-settings-documents.php:29
136
- #: includes/class-wcpdf-settings.php:84
137
- msgid "Documents"
138
- msgstr ""
139
-
140
- #: includes/class-wcpdf-settings-documents.php:45
141
- msgid ""
142
- "All available documents are listed below. Click on a document to configure "
143
- "it."
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-settings-general.php:37
147
- msgid "General settings"
148
- msgstr "Üldised sätted"
149
-
150
- #: includes/class-wcpdf-settings-general.php:43
151
- msgid "How do you want to view the PDF?"
152
- msgstr "Kuidas sa soovid PDF-i vaadata?"
153
-
154
- #: includes/class-wcpdf-settings-general.php:50
155
- msgid "Download the PDF"
156
- msgstr "Lae PDF alla"
157
-
158
- #: includes/class-wcpdf-settings-general.php:51
159
- msgid "Open the PDF in a new browser tab/window"
160
- msgstr "Ava PDF uues veebilehitseja sakis/aknas"
161
-
162
- #: includes/class-wcpdf-settings-general.php:58
163
- msgid "Choose a template"
164
- msgstr "Vali mall"
165
-
166
- #: includes/class-wcpdf-settings-general.php:65
167
- #, php-format
168
- msgid ""
169
- "Want to use your own template? Copy all the files from <code>%s</code> to "
170
- "your (child) theme in <code>%s</code> to customize them"
171
- msgstr ""
172
- "Tahad kasutada enda malli? Kopeeri kõik failid kaustast <code>%s</code> oma "
173
- "(laps)teema kausta <code>%s</code> kohanduste tegemiseks."
174
-
175
- #: includes/class-wcpdf-settings-general.php:71
176
- msgid "Paper size"
177
- msgstr "Paberi suurus"
178
-
179
- #: includes/class-wcpdf-settings-general.php:78
180
- msgid "A4"
181
- msgstr "A4"
182
-
183
- #: includes/class-wcpdf-settings-general.php:79
184
- msgid "Letter"
185
- msgstr "Ümbrik"
186
-
187
- #: includes/class-wcpdf-settings-general.php:86
188
- msgid "Extended currency symbol support"
189
- msgstr ""
190
-
191
- #: includes/class-wcpdf-settings-general.php:92
192
- msgid "Enable this if your currency symbol is not displaying properly"
193
- msgstr ""
194
-
195
- #: includes/class-wcpdf-settings-general.php:98
196
- msgid "Shop header/logo"
197
- msgstr "Poe päis/logo"
198
-
199
- #: includes/class-wcpdf-settings-general.php:104
200
- msgid "Select or upload your invoice header/logo"
201
- msgstr "Vali või lae üles oma arve päis/logo"
202
-
203
- #: includes/class-wcpdf-settings-general.php:105
204
- msgid "Set image"
205
- msgstr "Määra pilt"
206
-
207
- #: includes/class-wcpdf-settings-general.php:106
208
- msgid "Remove image"
209
- msgstr "Eemalda pilt"
210
-
211
- #: includes/class-wcpdf-settings-general.php:113
212
- msgid "Shop Name"
213
- msgstr "Poe nimi"
214
-
215
- #: includes/class-wcpdf-settings-general.php:126
216
- msgid "Shop Address"
217
- msgstr "Poe aadress"
218
-
219
- #: includes/class-wcpdf-settings-general.php:141
220
- msgid "Footer: terms & conditions, policies, etc."
221
- msgstr "Jalus: tingimused, poliisid jne"
222
-
223
- #: includes/class-wcpdf-settings-general.php:156
224
- msgid "Extra template fields"
225
- msgstr "Malli lisaväljad"
226
-
227
- #: includes/class-wcpdf-settings-general.php:162
228
- msgid "Extra field 1"
229
- msgstr "Lisaväli 1"
230
-
231
- #: includes/class-wcpdf-settings-general.php:170
232
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
233
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 1"
234
-
235
- #: includes/class-wcpdf-settings-general.php:177
236
- msgid "Extra field 2"
237
- msgstr "Lisaväli 2"
238
-
239
- #: includes/class-wcpdf-settings-general.php:185
240
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
241
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 2"
242
-
243
- #: includes/class-wcpdf-settings-general.php:192
244
- msgid "Extra field 3"
245
- msgstr "Lisaväli 3"
246
-
247
- #: includes/class-wcpdf-settings-general.php:200
248
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
249
- msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 3"
250
-
251
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
252
- msgid "PDF Invoices"
253
- msgstr "PDF Arved"
254
-
255
- #: includes/class-wcpdf-settings.php:58
256
- msgid "Settings"
257
- msgstr "Sätted"
258
-
259
- #: includes/class-wcpdf-settings.php:71
260
- msgid "Documentation"
261
- msgstr ""
262
-
263
- #: includes/class-wcpdf-settings.php:72
264
- msgid "Support Forum"
265
- msgstr ""
266
-
267
- #: includes/class-wcpdf-settings.php:83
268
- msgid "General"
269
- msgstr "Üldine"
270
-
271
- #: includes/class-wcpdf-settings.php:89
272
- msgid "Status"
273
- msgstr "Staatus"
274
-
275
- #: includes/compatibility/class-wc-core-compatibility.php:222
276
- msgid "WooCommerce"
277
- msgstr ""
278
-
279
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
280
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
281
- msgid "N/A"
282
- msgstr "N/A"
283
-
284
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
285
- msgid "Payment method"
286
- msgstr "Makseviis"
287
-
288
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
289
- msgid "Shipping method"
290
- msgstr "Tarneviis"
291
-
292
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
293
- #, php-format
294
- msgid "(includes %s)"
295
- msgstr ""
296
-
297
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
298
- #, php-format
299
- msgid "(Includes %s)"
300
- msgstr ""
301
-
302
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
303
- msgid "Subtotal"
304
- msgstr "Vahesumma"
305
-
306
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
307
- msgid "Shipping"
308
- msgstr "Tarne"
309
-
310
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
311
- msgid "Discount"
312
- msgstr "Allahindlus"
313
-
314
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
315
- msgid "VAT"
316
- msgstr "KM"
317
-
318
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
319
- msgid "Tax rate"
320
- msgstr "Maksumäär"
321
-
322
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
323
- msgid "Total ex. VAT"
324
- msgstr "Summa ilma KM-ta"
325
-
326
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
327
- msgid "Total"
328
- msgstr "Kogusumma"
329
-
330
- #: includes/documents/abstract-wcpdf-order-document.php:674
331
- msgid "Admin email"
332
- msgstr ""
333
-
334
- #: includes/documents/abstract-wcpdf-order-document.php:677
335
- msgid "Manual email"
336
- msgstr ""
337
-
338
- #: includes/documents/class-wcpdf-invoice.php:85
339
- msgid "invoice"
340
- msgid_plural "invoices"
341
- msgstr[0] "arve"
342
- msgstr[1] "arved"
343
-
344
- #: includes/documents/class-wcpdf-invoice.php:130
345
- #: includes/documents/class-wcpdf-packing-slip.php:94
346
- msgid "Enable"
347
- msgstr ""
348
-
349
- #: includes/documents/class-wcpdf-invoice.php:141
350
- msgid "Attach to:"
351
- msgstr ""
352
-
353
- #: includes/documents/class-wcpdf-invoice.php:148
354
- #, php-format
355
- msgid ""
356
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
357
- "permissions for this folder! Without having write access to this folder, the "
358
- "plugin will not be able to email invoices."
359
- msgstr ""
360
- "Paistab, et ajutine kaust (<code>%s</code) ei ole kirjutatav, kontrolli "
361
- "selle kausta õiguseid! Ilma kirjutusõigusteta ei saa see plugin arveid saata."
362
-
363
- #: includes/documents/class-wcpdf-invoice.php:154
364
- msgid "Display shipping address"
365
- msgstr "Näita tarne aadressi"
366
-
367
- #: includes/documents/class-wcpdf-invoice.php:160
368
- msgid ""
369
- "Display shipping address (in addition to the default billing address) if "
370
- "different from billing address"
371
- msgstr ""
372
-
373
- #: includes/documents/class-wcpdf-invoice.php:166
374
- #: includes/documents/class-wcpdf-packing-slip.php:117
375
- msgid "Display email address"
376
- msgstr "Näita e-posti aadressi"
377
-
378
- #: includes/documents/class-wcpdf-invoice.php:177
379
- #: includes/documents/class-wcpdf-packing-slip.php:128
380
- msgid "Display phone number"
381
- msgstr "Näita telefoninumbrit"
382
-
383
- #: includes/documents/class-wcpdf-invoice.php:188
384
- msgid "Display invoice date"
385
- msgstr "Näita arve kuupäeva"
386
-
387
- #: includes/documents/class-wcpdf-invoice.php:200
388
- msgid "Display invoice number"
389
- msgstr ""
390
-
391
- #: includes/documents/class-wcpdf-invoice.php:212
392
- msgid "Next invoice number (without prefix/suffix etc.)"
393
- msgstr "Järgmine arvenumber (ilma ees-/järelliiteta vms)"
394
-
395
- #: includes/documents/class-wcpdf-invoice.php:218
396
- msgid ""
397
- "This is the number that will be used for the next document. By default, "
398
- "numbering starts from 1 and increases for every new document. Note that if "
399
- "you override this and set it lower than the current/highest number, this "
400
- "could create duplicate numbers!"
401
- msgstr ""
402
-
403
- #: includes/documents/class-wcpdf-invoice.php:224
404
- msgid "Number format"
405
- msgstr ""
406
-
407
- #: includes/documents/class-wcpdf-invoice.php:232
408
- msgid "Prefix"
409
- msgstr "Eesliide"
410
-
411
- #: includes/documents/class-wcpdf-invoice.php:234
412
- msgid ""
413
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
414
- "respectively"
415
- msgstr ""
416
-
417
- #: includes/documents/class-wcpdf-invoice.php:237
418
- msgid "Suffix"
419
- msgstr "Järelliide"
420
-
421
- #: includes/documents/class-wcpdf-invoice.php:242
422
- msgid "Padding"
423
- msgstr "Polster"
424
-
425
- #: includes/documents/class-wcpdf-invoice.php:245
426
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
427
- msgstr ""
428
- "sisesta siia numbrikohtade arv - näiteks \"6\", et näidata 42 kujul 000042"
429
-
430
- #: includes/documents/class-wcpdf-invoice.php:248
431
- msgid ""
432
- "note: if you have already created a custom invoice number format with a "
433
- "filter, the above settings will be ignored"
434
- msgstr ""
435
- "märkus: kui oled juba loonud enda arvenumbri formaadi filtri abil, "
436
- "ignoreeritakse ülalolevaid sätteid"
437
-
438
- #: includes/documents/class-wcpdf-invoice.php:254
439
- msgid "Reset invoice number yearly"
440
- msgstr ""
441
-
442
- #: includes/documents/class-wcpdf-invoice.php:265
443
- msgid "Allow My Account invoice download"
444
- msgstr "Luba \"minu konto\" lehel arveid alla laadida"
445
-
446
- #: includes/documents/class-wcpdf-invoice.php:272
447
- msgid "Only when an invoice is already created/emailed"
448
- msgstr "Ainult siis, kui arve on juba loodud/saadetud"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:273
451
- msgid "Only for specific order statuses (define below)"
452
- msgstr "Ainult kindlate tellimuse staatuste korral (määra allpool)"
453
-
454
- #: includes/documents/class-wcpdf-invoice.php:274
455
- msgid "Always"
456
- msgstr "Alati"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:275
459
- msgid "Never"
460
- msgstr ""
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:290
463
- msgid "Enable invoice number column in the orders list"
464
- msgstr "Näita tellimuste nimekirjas arve numbri tulpa"
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:301
467
- msgid "Disable for free products"
468
- msgstr "Lülita tasuta toodete puhul välja"
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:307
471
- msgid ""
472
- "Disable automatic creation/attachment when only free products are ordered"
473
- msgstr ""
474
-
475
- #: includes/documents/class-wcpdf-invoice.php:321
476
- msgid "Invoice numbers are created by a third-party extension."
477
- msgstr ""
478
-
479
- #: includes/documents/class-wcpdf-invoice.php:323
480
- #, php-format
481
- msgid "Configure it <a href=\"%s\">here</a>."
482
- msgstr ""
483
-
484
- #: includes/documents/class-wcpdf-packing-slip.php:32
485
- #: includes/documents/class-wcpdf-packing-slip.php:41
486
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
487
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
488
- msgid "Packing Slip"
489
- msgstr "Saateleht"
490
-
491
- #: includes/documents/class-wcpdf-packing-slip.php:53
492
- msgid "packing-slip"
493
- msgid_plural "packing-slips"
494
- msgstr[0] "saateleht"
495
- msgstr[1] "saatelehed"
496
-
497
- #: includes/documents/class-wcpdf-packing-slip.php:105
498
- msgid "Display billing address"
499
- msgstr "Näita arveaadressi"
500
-
501
- #: includes/documents/class-wcpdf-packing-slip.php:111
502
- msgid ""
503
- "Display billing address (in addition to the default shipping address) if "
504
- "different from shipping address"
505
- msgstr ""
506
-
507
- #: includes/legacy/class-wcpdf-legacy-document.php:32
508
- msgid "Legacy Document"
509
- msgstr ""
510
-
511
- #: includes/views/wcpdf-extensions.php:15
512
- msgid "Check out these premium extensions!"
513
- msgstr "Tutvu preemium laiendustega!"
514
-
515
- #: includes/views/wcpdf-extensions.php:16
516
- msgid "click items to read more"
517
- msgstr "lisainfo lugemiseks vajuta elemendile"
518
-
519
- #: includes/views/wcpdf-extensions.php:21
520
- msgid ""
521
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
522
- "system"
523
- msgstr ""
524
-
525
- #: includes/views/wcpdf-extensions.php:23
526
- msgid ""
527
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
528
- "premium extensions:"
529
- msgstr ""
530
-
531
- #: includes/views/wcpdf-extensions.php:24
532
- msgid "Professional features:"
533
- msgstr ""
534
-
535
- #: includes/views/wcpdf-extensions.php:26
536
- #: includes/views/wcpdf-extensions.php:56
537
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
538
- msgstr "Emaili/prindi/lae alla <b>PDF Credit Notes & Proforma Invoices</b>"
539
-
540
- #: includes/views/wcpdf-extensions.php:27
541
- #: includes/views/wcpdf-extensions.php:57
542
- msgid ""
543
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
544
- "packing slips, for example to a drop-shipper or a supplier."
545
- msgstr ""
546
- "Saada eraldi <b>teavituse e-kiri</b> koos (või ilma) PDF arve/saatelehega, "
547
- "näiteks maaletoojale või varustajale."
548
-
549
- #: includes/views/wcpdf-extensions.php:28
550
- #: includes/views/wcpdf-extensions.php:58
551
- msgid ""
552
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
553
- "document) to the WooCommerce emails of your choice."
554
- msgstr ""
555
- "Manusta <b>kuni 3 staatilist faili</b> (näiteks müügitingimuste document) "
556
- "enda valitud WooCommerce e-kirjade külge."
557
-
558
- #: includes/views/wcpdf-extensions.php:29
559
- #: includes/views/wcpdf-extensions.php:59
560
- msgid ""
561
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
562
- "and credit notes or utilize the main invoice numbering system"
563
- msgstr ""
564
- "Kasuta <b>eraldi numbreid</b> ja/või formaati proforma arvete ning krediidi "
565
- "märkuste jaoks või kasuta põhilist arvete numbrisüsteemi."
566
-
567
- #: includes/views/wcpdf-extensions.php:30
568
- #: includes/views/wcpdf-extensions.php:60
569
- msgid ""
570
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
571
- "additional custom fields, font sizes etc. without the need to create a "
572
- "custom template."
573
- msgstr ""
574
- "<b>Kohanda tarne & arve aadresside</b> formaati lisaväljade, fondisuuruste "
575
- "ja muu taolisega ilma kohandatud malli loomise vajaduseta."
576
-
577
- #: includes/views/wcpdf-extensions.php:31
578
- #: includes/views/wcpdf-extensions.php:61
579
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
580
- msgstr "Kasuta pluginat mitmekeelses <b>WPML</b> keskkonnas"
581
-
582
- #: includes/views/wcpdf-extensions.php:33
583
- #: includes/views/wcpdf-extensions.php:131
584
- msgid "Advanced, customizable templates"
585
- msgstr "Keerukad, kohandatavad mallid"
586
-
587
- #: includes/views/wcpdf-extensions.php:35
588
- #: includes/views/wcpdf-extensions.php:134
589
- msgid ""
590
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
591
- "your needs with a drag & drop customizer"
592
- msgstr ""
593
- "Kohanda kogu arve sisu (hinnad, maksud, pisipildid) vastavalt oma "
594
- "vajadustele lohistamismeetodil."
595
-
596
- #: includes/views/wcpdf-extensions.php:36
597
- #: includes/views/wcpdf-extensions.php:135
598
- msgid "Two extra stylish premade templates (Modern & Business)"
599
- msgstr "Kaks eriti stiilset valmismalli (Modern & Business)"
600
-
601
- #: includes/views/wcpdf-extensions.php:38
602
- msgid "Upload automatically to dropbox"
603
- msgstr ""
604
-
605
- #: includes/views/wcpdf-extensions.php:40
606
- #: includes/views/wcpdf-extensions.php:97
607
- msgid ""
608
- "This extension conveniently uploads all the invoices (and other pdf "
609
- "documents from the professional extension) that are emailed to your "
610
- "customers to Dropbox. The best way to keep your invoice administration up to "
611
- "date!"
612
- msgstr ""
613
- "See laiendus laeb kõik kliendile saadetavad arved (ja muud pdf dokumendid "
614
- "professionaali laiendusest) Dropboxi. Parim viis hoida arvete haldamine "
615
- "ajakohane!"
616
-
617
- #: includes/views/wcpdf-extensions.php:43
618
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
619
- msgstr ""
620
-
621
- #: includes/views/wcpdf-extensions.php:52
622
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
623
- msgstr ""
624
- "Hakka profiks: proforma arved, krediidi märkused (=tagasimaksed) & muud!"
625
-
626
- #: includes/views/wcpdf-extensions.php:54
627
- msgid ""
628
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
629
- "features:"
630
- msgstr ""
631
- "Lae WooCommerce PDF Invoices & Packing Slips üle järgnevate omadustega:"
632
-
633
- #: includes/views/wcpdf-extensions.php:63
634
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
635
- msgstr "Hangi WooCommerce PDF Invoices & Packing Slips Professional!"
636
-
637
- #: includes/views/wcpdf-extensions.php:71
638
- msgid "Automatically send payment reminders to your customers"
639
- msgstr ""
640
-
641
- #: includes/views/wcpdf-extensions.php:73
642
- msgid "WooCommerce Smart Reminder emails"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:75
646
- msgid "<b>Completely automatic</b> scheduled emails"
647
- msgstr ""
648
-
649
- #: includes/views/wcpdf-extensions.php:76
650
- msgid ""
651
- "<b>Rich text editor</b> for the email text, including placeholders for data "
652
- "from the order (name, order total, etc)"
653
- msgstr ""
654
-
655
- #: includes/views/wcpdf-extensions.php:77
656
- msgid ""
657
- "Configure the exact requirements for sending an email (time after order, "
658
- "order status, payment method)"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:78
662
- msgid ""
663
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
664
- "order language."
665
- msgstr ""
666
-
667
- #: includes/views/wcpdf-extensions.php:79
668
- msgid ""
669
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
670
- "reminders, repeat purchases)"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:80
674
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
675
- msgstr ""
676
-
677
- #: includes/views/wcpdf-extensions.php:82
678
- msgid "Get WooCommerce Smart Reminder Emails"
679
- msgstr ""
680
-
681
- #: includes/views/wcpdf-extensions.php:91
682
- msgid "Upload all invoices automatically to your dropbox"
683
- msgstr "Lae kõik arved automaatselt oma dropboxi"
684
-
685
- #: includes/views/wcpdf-extensions.php:98
686
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
687
- msgstr "Vii WooCommerce PDF Invoices & Packing Slips dropboxi!"
688
-
689
- #: includes/views/wcpdf-extensions.php:110
690
- msgid ""
691
- "Automatically send new orders or packing slips to your printer, as soon as "
692
- "the customer orders!"
693
- msgstr ""
694
- "Saada uued tellimused või saatelehed automaatselt printerisse, niipea kui "
695
- "klient tellib!"
696
-
697
- #: includes/views/wcpdf-extensions.php:116
698
- msgid ""
699
- "Check out the WooCommerce Automatic Order Printing extension from our "
700
- "partners at Simba Hosting"
701
- msgstr ""
702
- "Tutvu laiendusega WooCommerce Automatic Order Printing meie partnerfirmalt "
703
- "Simba Hosting"
704
-
705
- #: includes/views/wcpdf-extensions.php:117
706
- msgid "WooCommerce Automatic Order Printing"
707
- msgstr "automaatne WooCommerce tellimuste printimine"
708
-
709
- #: includes/views/wcpdf-extensions.php:136
710
- #, php-format
711
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
712
- msgstr "Tutvu PDF Invoice & Packing Slips preemium mallidega lehel %s."
713
-
714
- #: includes/views/wcpdf-extensions.php:137
715
- #, php-format
716
- msgid "For custom templates, contact us at %s."
717
- msgstr "Kohandatud mallide jaoks võta meiega ühendust: %s."
718
-
719
- #: includes/views/wcpdf-extensions.php:146
720
- msgid "Hide this message"
721
- msgstr ""
722
-
723
- #: includes/views/wcpdf-settings-page.php:8
724
- msgid "WooCommerce PDF Invoices"
725
- msgstr "WooCommerce PDF Arved"
726
-
727
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
728
- msgid "Billing Address:"
729
- msgstr "Arve aadress:"
730
-
731
- #: templates/Simple/invoice.php:41
732
- msgid "Ship To:"
733
- msgstr "Vastuvõtja:"
734
-
735
- #: templates/Simple/invoice.php:50
736
- msgid "Invoice Number:"
737
- msgstr "Arve number:"
738
-
739
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
740
- msgid "Order Number:"
741
- msgstr "Tellimuse number:"
742
-
743
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
744
- msgid "Order Date:"
745
- msgstr "Tellimuse kuupäev"
746
-
747
- #: templates/Simple/invoice.php:69
748
- msgid "Payment Method:"
749
- msgstr "Makseviis:"
750
-
751
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
752
- msgid "Product"
753
- msgstr "Toode"
754
-
755
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
756
- msgid "Quantity"
757
- msgstr "Kogus"
758
-
759
- #: templates/Simple/invoice.php:85
760
- msgid "Price"
761
- msgstr "Hind"
762
-
763
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
764
- msgid "Description"
765
- msgstr "Kirjeldus"
766
-
767
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
768
- msgid "SKU"
769
- msgstr "Tootekood"
770
-
771
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
772
- msgid "SKU:"
773
- msgstr "Tootekood:"
774
-
775
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
776
- msgid "Weight:"
777
- msgstr "Kaal:"
778
-
779
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
780
- msgid "Customer Notes"
781
- msgstr "Kliendi märkused"
782
-
783
- #: templates/Simple/packing-slip.php:30
784
- msgid "Shipping Address:"
785
- msgstr "Tarne aadress:"
786
-
787
- #: templates/Simple/packing-slip.php:57
788
- msgid "Shipping Method:"
789
- msgstr "Tarneviis:"
790
-
791
- #: woocommerce-pdf-invoices-packingslips.php:231
792
- #, php-format
793
- msgid ""
794
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
795
- "installed & activated!"
796
- msgstr ""
797
- "WooCommerce PDF Invoices & Packing Slips vajab, et %sWooCommerce%s oleks "
798
- "paigaldatud ja aktiveeritud!"
799
-
800
- #: woocommerce-pdf-invoices-packingslips.php:243
801
- msgid ""
802
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
803
- "higher recommended)."
804
- msgstr ""
805
-
806
- #: woocommerce-pdf-invoices-packingslips.php:244
807
- msgid "How to update your PHP version"
808
- msgstr ""
809
-
810
- #~ msgid "Attach invoice to:"
811
- #~ msgstr "Lisa arve järgnevatele:"
812
-
813
- #~ msgid ""
814
- #~ "Display shipping address on invoice (in addition to the default billing "
815
- #~ "address) if different from billing address"
816
- #~ msgstr ""
817
- #~ "Näita arvel tarneaadressi (lisaks vaikimisi näidatavale arveaadressile), "
818
- #~ "kui see erineb arve aadressist."
819
-
820
- #~ msgid ""
821
- #~ "This is the number that will be used on the next invoice that is created. "
822
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
823
- #~ "first invoice that is created and increases for every new invoice. Note "
824
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
825
- #~ "number, this could create double invoice numbers!"
826
- #~ msgstr ""
827
- #~ "Seda numbrit kasutatakse järgmise arve loomisel. Vaikimisi alustatakse "
828
- #~ "esimese loodava arve WooCommerce tellimuse numbrist ning suurendatakse "
829
- #~ "seda iga järgneva arve jaoks. Pane tähele, et kui seda käsitsi väiksemaks "
830
- #~ "muudad, siis võib esineda korduvaid arvenumbreid!"
831
-
832
- #~ msgid "Invoice number format"
833
- #~ msgstr "Arve numbriformaat"
834
-
835
- #~ msgid ""
836
- #~ "Disable automatic creation/attachment of invoices when only free products "
837
- #~ "are ordered"
838
- #~ msgstr ""
839
- #~ "Ära loo ega manusta arveid automaatselt, kui tellimuses on kõik tooted "
840
- #~ "tasuta."
841
-
842
- #~ msgid ""
843
- #~ "Display billing address on packing slip (in addition to the default "
844
- #~ "shipping address) if different from shipping address"
845
- #~ msgstr ""
846
- #~ "Näita arveaadressi saatelehel (lisaks vaikimisi tarneaadressile), kui see "
847
- #~ "erineb tarneaadressist"
848
-
849
- #~ msgid "Template"
850
- #~ msgstr "Mall"
851
-
852
- #~ msgid "Admin New Order email"
853
- #~ msgstr "Halduri \"uus tellimus\" e-kiri"
854
-
855
- #~ msgid "Customer Processing Order email"
856
- #~ msgstr "Kliendi \"tellimus töötluses\" e-kiri"
857
-
858
- #~ msgid "Customer Completed Order email"
859
- #~ msgstr "Kliendi \"tellimus täidetud\" e-kiri"
860
-
861
- #~ msgid "Customer Invoice email"
862
- #~ msgstr "Kliendi \"arve\" e-kiri"
863
-
864
- #~ msgid "Interface"
865
- #~ msgstr "Liides"
866
-
867
- #~ msgid "PDF Template settings"
868
- #~ msgstr "PDF malli sätted"
869
-
870
- #~ msgid "Display built-in sequential invoice number"
871
- #~ msgstr "Näita sisseehitatud järjestikust arvenumbrit"
872
-
873
- #~ msgid ""
874
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
875
- #~ "respectively"
876
- #~ msgstr ""
877
- #~ "tellimuse aasta ja/või kuu kasutamiseks on vastavalt [order_year] ning "
878
- #~ "[order_month]"
879
-
880
- #~ msgid "Use old tmp folder"
881
- #~ msgstr "Kasuta vana ajutist kausta"
882
-
883
- #~ msgid ""
884
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
885
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
886
- #~ "not recommended on new installs!"
887
- #~ msgstr ""
888
- #~ "Enne PDF arvete versiooni 1.5 hoiti ajutisi faile pluginate kaustas. See "
889
- #~ "säte on mõeldud tagasiulatuva ühilduvuse jaoks, uutele paigaldustele "
890
- #~ "mittesoovitatav!"
891
-
892
- #~ msgid "PDF Packing Slips"
893
- #~ msgstr "PDF saatelehed"
894
-
895
- #~ msgid "PDF Invoice"
896
- #~ msgstr "PDF arve"
897
-
898
- #~ msgid "PDF Packing Slip"
899
- #~ msgstr "PDF saateleht"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: Tanel Jüris <tanel.juris@marketingsharks.ee>\n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: et\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Arve number"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Loo PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr "PDF arve andmed"
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Arve"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Arve kuupäev:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr "Arve number (vorminguta)"
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "h"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "m"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Lae arve alla (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "Sul ei ole selle lehe vaatamiseks piisavalt õigusi."
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "Mõned eksportimise parameetrid on puudu."
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<b>Hoiatus!</b> Allolevad sätted on mõeldud ainult veaotsinguks/arenduseks. "
79
+ "Ära kasuta neid rakenduskeskkonnas!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Neid kasutatakse <em>Modern (Preemium)</em> mallis (valikuliste) "
88
+ "jalusetulpade jaoks, kuid on kasutatavad ka muude elementide jaoks sinu "
89
+ "kohandatud mallis."
90
+
91
+ #: includes/class-wcpdf-settings-callbacks.php:301
92
+ msgid "Image resolution"
93
+ msgstr "Pildi resolutsioon"
94
+
95
+ #: includes/class-wcpdf-settings-callbacks.php:325
96
+ msgid "Save"
97
+ msgstr ""
98
+
99
+ #: includes/class-wcpdf-settings-debug.php:34
100
+ msgid "Debug settings"
101
+ msgstr "Veaotsingu sätted"
102
+
103
+ #: includes/class-wcpdf-settings-debug.php:40
104
+ msgid "Legacy mode"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-settings-debug.php:46
108
+ msgid ""
109
+ "Legacy mode ensures compatibility with templates and filters from previous "
110
+ "versions."
111
+ msgstr ""
112
+
113
+ #: includes/class-wcpdf-settings-debug.php:52
114
+ msgid "Enable debug output"
115
+ msgstr "Lülita sisse veaotsingu väljund"
116
+
117
+ #: includes/class-wcpdf-settings-debug.php:58
118
+ msgid ""
119
+ "Enable this option to output plugin errors if you're getting a blank page or "
120
+ "other PDF generation issues"
121
+ msgstr ""
122
+ "Lülita see valik sisse, et väljastada plugina veateateid, kui näed tühja "
123
+ "lehte või PDF genereerimisel esineb mõni muu probleem"
124
+
125
+ #: includes/class-wcpdf-settings-debug.php:64
126
+ msgid "Output to HTML"
127
+ msgstr "Väljasta HTML kujul"
128
+
129
+ #: includes/class-wcpdf-settings-debug.php:70
130
+ msgid ""
131
+ "Send the template output as HTML to the browser instead of creating a PDF."
132
+ msgstr ""
133
+ "PDF faili loomise asemel saada malli väljund HTML kujul veebilehitsejasse."
134
+
135
+ #: includes/class-wcpdf-settings-documents.php:29
136
+ #: includes/class-wcpdf-settings.php:84
137
+ msgid "Documents"
138
+ msgstr ""
139
+
140
+ #: includes/class-wcpdf-settings-documents.php:45
141
+ msgid ""
142
+ "All available documents are listed below. Click on a document to configure "
143
+ "it."
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-settings-general.php:37
147
+ msgid "General settings"
148
+ msgstr "Üldised sätted"
149
+
150
+ #: includes/class-wcpdf-settings-general.php:43
151
+ msgid "How do you want to view the PDF?"
152
+ msgstr "Kuidas sa soovid PDF-i vaadata?"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:50
155
+ msgid "Download the PDF"
156
+ msgstr "Lae PDF alla"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:51
159
+ msgid "Open the PDF in a new browser tab/window"
160
+ msgstr "Ava PDF uues veebilehitseja sakis/aknas"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:58
163
+ msgid "Choose a template"
164
+ msgstr "Vali mall"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:65
167
+ #, php-format
168
+ msgid ""
169
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
170
+ "your (child) theme in <code>%s</code> to customize them"
171
+ msgstr ""
172
+ "Tahad kasutada enda malli? Kopeeri kõik failid kaustast <code>%s</code> oma "
173
+ "(laps)teema kausta <code>%s</code> kohanduste tegemiseks."
174
+
175
+ #: includes/class-wcpdf-settings-general.php:71
176
+ msgid "Paper size"
177
+ msgstr "Paberi suurus"
178
+
179
+ #: includes/class-wcpdf-settings-general.php:78
180
+ msgid "A4"
181
+ msgstr "A4"
182
+
183
+ #: includes/class-wcpdf-settings-general.php:79
184
+ msgid "Letter"
185
+ msgstr "Ümbrik"
186
+
187
+ #: includes/class-wcpdf-settings-general.php:86
188
+ msgid "Extended currency symbol support"
189
+ msgstr ""
190
+
191
+ #: includes/class-wcpdf-settings-general.php:92
192
+ msgid "Enable this if your currency symbol is not displaying properly"
193
+ msgstr ""
194
+
195
+ #: includes/class-wcpdf-settings-general.php:98
196
+ msgid "Shop header/logo"
197
+ msgstr "Poe päis/logo"
198
+
199
+ #: includes/class-wcpdf-settings-general.php:104
200
+ msgid "Select or upload your invoice header/logo"
201
+ msgstr "Vali või lae üles oma arve päis/logo"
202
+
203
+ #: includes/class-wcpdf-settings-general.php:105
204
+ msgid "Set image"
205
+ msgstr "Määra pilt"
206
+
207
+ #: includes/class-wcpdf-settings-general.php:106
208
+ msgid "Remove image"
209
+ msgstr "Eemalda pilt"
210
+
211
+ #: includes/class-wcpdf-settings-general.php:113
212
+ msgid "Shop Name"
213
+ msgstr "Poe nimi"
214
+
215
+ #: includes/class-wcpdf-settings-general.php:126
216
+ msgid "Shop Address"
217
+ msgstr "Poe aadress"
218
+
219
+ #: includes/class-wcpdf-settings-general.php:141
220
+ msgid "Footer: terms & conditions, policies, etc."
221
+ msgstr "Jalus: tingimused, poliisid jne"
222
+
223
+ #: includes/class-wcpdf-settings-general.php:156
224
+ msgid "Extra template fields"
225
+ msgstr "Malli lisaväljad"
226
+
227
+ #: includes/class-wcpdf-settings-general.php:162
228
+ msgid "Extra field 1"
229
+ msgstr "Lisaväli 1"
230
+
231
+ #: includes/class-wcpdf-settings-general.php:170
232
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
233
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 1"
234
+
235
+ #: includes/class-wcpdf-settings-general.php:177
236
+ msgid "Extra field 2"
237
+ msgstr "Lisaväli 2"
238
+
239
+ #: includes/class-wcpdf-settings-general.php:185
240
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
241
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 2"
242
+
243
+ #: includes/class-wcpdf-settings-general.php:192
244
+ msgid "Extra field 3"
245
+ msgstr "Lisaväli 3"
246
+
247
+ #: includes/class-wcpdf-settings-general.php:200
248
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
249
+ msgstr "<i>Modern (Preemium)</i> mallis on see jaluse tulp 3"
250
+
251
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
252
+ msgid "PDF Invoices"
253
+ msgstr "PDF Arved"
254
+
255
+ #: includes/class-wcpdf-settings.php:58
256
+ msgid "Settings"
257
+ msgstr "Sätted"
258
+
259
+ #: includes/class-wcpdf-settings.php:71
260
+ msgid "Documentation"
261
+ msgstr ""
262
+
263
+ #: includes/class-wcpdf-settings.php:72
264
+ msgid "Support Forum"
265
+ msgstr ""
266
+
267
+ #: includes/class-wcpdf-settings.php:83
268
+ msgid "General"
269
+ msgstr "Üldine"
270
+
271
+ #: includes/class-wcpdf-settings.php:89
272
+ msgid "Status"
273
+ msgstr "Staatus"
274
+
275
+ #: includes/compatibility/class-wc-core-compatibility.php:222
276
+ msgid "WooCommerce"
277
+ msgstr ""
278
+
279
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
280
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
281
+ msgid "N/A"
282
+ msgstr "N/A"
283
+
284
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
285
+ msgid "Payment method"
286
+ msgstr "Makseviis"
287
+
288
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
289
+ msgid "Shipping method"
290
+ msgstr "Tarneviis"
291
+
292
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
293
+ #, php-format
294
+ msgid "(includes %s)"
295
+ msgstr ""
296
+
297
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
298
+ #, php-format
299
+ msgid "(Includes %s)"
300
+ msgstr ""
301
+
302
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
303
+ msgid "Subtotal"
304
+ msgstr "Vahesumma"
305
+
306
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
307
+ msgid "Shipping"
308
+ msgstr "Tarne"
309
+
310
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
311
+ msgid "Discount"
312
+ msgstr "Allahindlus"
313
+
314
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
315
+ msgid "VAT"
316
+ msgstr "KM"
317
+
318
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
319
+ msgid "Tax rate"
320
+ msgstr "Maksumäär"
321
+
322
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
323
+ msgid "Total ex. VAT"
324
+ msgstr "Summa ilma KM-ta"
325
+
326
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
327
+ msgid "Total"
328
+ msgstr "Kogusumma"
329
+
330
+ #: includes/documents/abstract-wcpdf-order-document.php:674
331
+ msgid "Admin email"
332
+ msgstr ""
333
+
334
+ #: includes/documents/abstract-wcpdf-order-document.php:677
335
+ msgid "Manual email"
336
+ msgstr ""
337
+
338
+ #: includes/documents/class-wcpdf-invoice.php:85
339
+ msgid "invoice"
340
+ msgid_plural "invoices"
341
+ msgstr[0] "arve"
342
+ msgstr[1] "arved"
343
+
344
+ #: includes/documents/class-wcpdf-invoice.php:130
345
+ #: includes/documents/class-wcpdf-packing-slip.php:94
346
+ msgid "Enable"
347
+ msgstr ""
348
+
349
+ #: includes/documents/class-wcpdf-invoice.php:141
350
+ msgid "Attach to:"
351
+ msgstr ""
352
+
353
+ #: includes/documents/class-wcpdf-invoice.php:148
354
+ #, php-format
355
+ msgid ""
356
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
357
+ "permissions for this folder! Without having write access to this folder, the "
358
+ "plugin will not be able to email invoices."
359
+ msgstr ""
360
+ "Paistab, et ajutine kaust (<code>%s</code) ei ole kirjutatav, kontrolli "
361
+ "selle kausta õiguseid! Ilma kirjutusõigusteta ei saa see plugin arveid saata."
362
+
363
+ #: includes/documents/class-wcpdf-invoice.php:154
364
+ msgid "Display shipping address"
365
+ msgstr "Näita tarne aadressi"
366
+
367
+ #: includes/documents/class-wcpdf-invoice.php:160
368
+ msgid ""
369
+ "Display shipping address (in addition to the default billing address) if "
370
+ "different from billing address"
371
+ msgstr ""
372
+
373
+ #: includes/documents/class-wcpdf-invoice.php:166
374
+ #: includes/documents/class-wcpdf-packing-slip.php:117
375
+ msgid "Display email address"
376
+ msgstr "Näita e-posti aadressi"
377
+
378
+ #: includes/documents/class-wcpdf-invoice.php:177
379
+ #: includes/documents/class-wcpdf-packing-slip.php:128
380
+ msgid "Display phone number"
381
+ msgstr "Näita telefoninumbrit"
382
+
383
+ #: includes/documents/class-wcpdf-invoice.php:188
384
+ msgid "Display invoice date"
385
+ msgstr "Näita arve kuupäeva"
386
+
387
+ #: includes/documents/class-wcpdf-invoice.php:200
388
+ msgid "Display invoice number"
389
+ msgstr ""
390
+
391
+ #: includes/documents/class-wcpdf-invoice.php:212
392
+ msgid "Next invoice number (without prefix/suffix etc.)"
393
+ msgstr "Järgmine arvenumber (ilma ees-/järelliiteta vms)"
394
+
395
+ #: includes/documents/class-wcpdf-invoice.php:218
396
+ msgid ""
397
+ "This is the number that will be used for the next document. By default, "
398
+ "numbering starts from 1 and increases for every new document. Note that if "
399
+ "you override this and set it lower than the current/highest number, this "
400
+ "could create duplicate numbers!"
401
+ msgstr ""
402
+
403
+ #: includes/documents/class-wcpdf-invoice.php:224
404
+ msgid "Number format"
405
+ msgstr ""
406
+
407
+ #: includes/documents/class-wcpdf-invoice.php:232
408
+ msgid "Prefix"
409
+ msgstr "Eesliide"
410
+
411
+ #: includes/documents/class-wcpdf-invoice.php:234
412
+ msgid ""
413
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
414
+ "respectively"
415
+ msgstr ""
416
+
417
+ #: includes/documents/class-wcpdf-invoice.php:237
418
+ msgid "Suffix"
419
+ msgstr "Järelliide"
420
+
421
+ #: includes/documents/class-wcpdf-invoice.php:242
422
+ msgid "Padding"
423
+ msgstr "Polster"
424
+
425
+ #: includes/documents/class-wcpdf-invoice.php:245
426
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
427
+ msgstr ""
428
+ "sisesta siia numbrikohtade arv - näiteks \"6\", et näidata 42 kujul 000042"
429
+
430
+ #: includes/documents/class-wcpdf-invoice.php:248
431
+ msgid ""
432
+ "note: if you have already created a custom invoice number format with a "
433
+ "filter, the above settings will be ignored"
434
+ msgstr ""
435
+ "märkus: kui oled juba loonud enda arvenumbri formaadi filtri abil, "
436
+ "ignoreeritakse ülalolevaid sätteid"
437
+
438
+ #: includes/documents/class-wcpdf-invoice.php:254
439
+ msgid "Reset invoice number yearly"
440
+ msgstr ""
441
+
442
+ #: includes/documents/class-wcpdf-invoice.php:265
443
+ msgid "Allow My Account invoice download"
444
+ msgstr "Luba \"minu konto\" lehel arveid alla laadida"
445
+
446
+ #: includes/documents/class-wcpdf-invoice.php:272
447
+ msgid "Only when an invoice is already created/emailed"
448
+ msgstr "Ainult siis, kui arve on juba loodud/saadetud"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:273
451
+ msgid "Only for specific order statuses (define below)"
452
+ msgstr "Ainult kindlate tellimuse staatuste korral (määra allpool)"
453
+
454
+ #: includes/documents/class-wcpdf-invoice.php:274
455
+ msgid "Always"
456
+ msgstr "Alati"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:275
459
+ msgid "Never"
460
+ msgstr ""
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:290
463
+ msgid "Enable invoice number column in the orders list"
464
+ msgstr "Näita tellimuste nimekirjas arve numbri tulpa"
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:301
467
+ msgid "Disable for free products"
468
+ msgstr "Lülita tasuta toodete puhul välja"
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:307
471
+ msgid ""
472
+ "Disable automatic creation/attachment when only free products are ordered"
473
+ msgstr ""
474
+
475
+ #: includes/documents/class-wcpdf-invoice.php:321
476
+ msgid "Invoice numbers are created by a third-party extension."
477
+ msgstr ""
478
+
479
+ #: includes/documents/class-wcpdf-invoice.php:323
480
+ #, php-format
481
+ msgid "Configure it <a href=\"%s\">here</a>."
482
+ msgstr ""
483
+
484
+ #: includes/documents/class-wcpdf-packing-slip.php:32
485
+ #: includes/documents/class-wcpdf-packing-slip.php:41
486
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
487
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
488
+ msgid "Packing Slip"
489
+ msgstr "Saateleht"
490
+
491
+ #: includes/documents/class-wcpdf-packing-slip.php:53
492
+ msgid "packing-slip"
493
+ msgid_plural "packing-slips"
494
+ msgstr[0] "saateleht"
495
+ msgstr[1] "saatelehed"
496
+
497
+ #: includes/documents/class-wcpdf-packing-slip.php:105
498
+ msgid "Display billing address"
499
+ msgstr "Näita arveaadressi"
500
+
501
+ #: includes/documents/class-wcpdf-packing-slip.php:111
502
+ msgid ""
503
+ "Display billing address (in addition to the default shipping address) if "
504
+ "different from shipping address"
505
+ msgstr ""
506
+
507
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
508
+ msgid "Legacy Document"
509
+ msgstr ""
510
+
511
+ #: includes/views/wcpdf-extensions.php:15
512
+ msgid "Check out these premium extensions!"
513
+ msgstr "Tutvu preemium laiendustega!"
514
+
515
+ #: includes/views/wcpdf-extensions.php:16
516
+ msgid "click items to read more"
517
+ msgstr "lisainfo lugemiseks vajuta elemendile"
518
+
519
+ #: includes/views/wcpdf-extensions.php:21
520
+ msgid ""
521
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
522
+ "system"
523
+ msgstr ""
524
+
525
+ #: includes/views/wcpdf-extensions.php:23
526
+ msgid ""
527
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
528
+ "premium extensions:"
529
+ msgstr ""
530
+
531
+ #: includes/views/wcpdf-extensions.php:24
532
+ msgid "Professional features:"
533
+ msgstr ""
534
+
535
+ #: includes/views/wcpdf-extensions.php:26
536
+ #: includes/views/wcpdf-extensions.php:56
537
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
538
+ msgstr "Emaili/prindi/lae alla <b>PDF Credit Notes & Proforma Invoices</b>"
539
+
540
+ #: includes/views/wcpdf-extensions.php:27
541
+ #: includes/views/wcpdf-extensions.php:57
542
+ msgid ""
543
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
544
+ "packing slips, for example to a drop-shipper or a supplier."
545
+ msgstr ""
546
+ "Saada eraldi <b>teavituse e-kiri</b> koos (või ilma) PDF arve/saatelehega, "
547
+ "näiteks maaletoojale või varustajale."
548
+
549
+ #: includes/views/wcpdf-extensions.php:28
550
+ #: includes/views/wcpdf-extensions.php:58
551
+ msgid ""
552
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
553
+ "document) to the WooCommerce emails of your choice."
554
+ msgstr ""
555
+ "Manusta <b>kuni 3 staatilist faili</b> (näiteks müügitingimuste document) "
556
+ "enda valitud WooCommerce e-kirjade külge."
557
+
558
+ #: includes/views/wcpdf-extensions.php:29
559
+ #: includes/views/wcpdf-extensions.php:59
560
+ msgid ""
561
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
562
+ "and credit notes or utilize the main invoice numbering system"
563
+ msgstr ""
564
+ "Kasuta <b>eraldi numbreid</b> ja/või formaati proforma arvete ning krediidi "
565
+ "märkuste jaoks või kasuta põhilist arvete numbrisüsteemi."
566
+
567
+ #: includes/views/wcpdf-extensions.php:30
568
+ #: includes/views/wcpdf-extensions.php:60
569
+ msgid ""
570
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
571
+ "additional custom fields, font sizes etc. without the need to create a "
572
+ "custom template."
573
+ msgstr ""
574
+ "<b>Kohanda tarne & arve aadresside</b> formaati lisaväljade, fondisuuruste "
575
+ "ja muu taolisega ilma kohandatud malli loomise vajaduseta."
576
+
577
+ #: includes/views/wcpdf-extensions.php:31
578
+ #: includes/views/wcpdf-extensions.php:61
579
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
580
+ msgstr "Kasuta pluginat mitmekeelses <b>WPML</b> keskkonnas"
581
+
582
+ #: includes/views/wcpdf-extensions.php:33
583
+ #: includes/views/wcpdf-extensions.php:131
584
+ msgid "Advanced, customizable templates"
585
+ msgstr "Keerukad, kohandatavad mallid"
586
+
587
+ #: includes/views/wcpdf-extensions.php:35
588
+ #: includes/views/wcpdf-extensions.php:134
589
+ msgid ""
590
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
591
+ "your needs with a drag & drop customizer"
592
+ msgstr ""
593
+ "Kohanda kogu arve sisu (hinnad, maksud, pisipildid) vastavalt oma "
594
+ "vajadustele lohistamismeetodil."
595
+
596
+ #: includes/views/wcpdf-extensions.php:36
597
+ #: includes/views/wcpdf-extensions.php:135
598
+ msgid "Two extra stylish premade templates (Modern & Business)"
599
+ msgstr "Kaks eriti stiilset valmismalli (Modern & Business)"
600
+
601
+ #: includes/views/wcpdf-extensions.php:38
602
+ msgid "Upload automatically to dropbox"
603
+ msgstr ""
604
+
605
+ #: includes/views/wcpdf-extensions.php:40
606
+ #: includes/views/wcpdf-extensions.php:97
607
+ msgid ""
608
+ "This extension conveniently uploads all the invoices (and other pdf "
609
+ "documents from the professional extension) that are emailed to your "
610
+ "customers to Dropbox. The best way to keep your invoice administration up to "
611
+ "date!"
612
+ msgstr ""
613
+ "See laiendus laeb kõik kliendile saadetavad arved (ja muud pdf dokumendid "
614
+ "professionaali laiendusest) Dropboxi. Parim viis hoida arvete haldamine "
615
+ "ajakohane!"
616
+
617
+ #: includes/views/wcpdf-extensions.php:43
618
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
619
+ msgstr ""
620
+
621
+ #: includes/views/wcpdf-extensions.php:52
622
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
623
+ msgstr ""
624
+ "Hakka profiks: proforma arved, krediidi märkused (=tagasimaksed) & muud!"
625
+
626
+ #: includes/views/wcpdf-extensions.php:54
627
+ msgid ""
628
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
629
+ "features:"
630
+ msgstr ""
631
+ "Lae WooCommerce PDF Invoices & Packing Slips üle järgnevate omadustega:"
632
+
633
+ #: includes/views/wcpdf-extensions.php:63
634
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
635
+ msgstr "Hangi WooCommerce PDF Invoices & Packing Slips Professional!"
636
+
637
+ #: includes/views/wcpdf-extensions.php:71
638
+ msgid "Automatically send payment reminders to your customers"
639
+ msgstr ""
640
+
641
+ #: includes/views/wcpdf-extensions.php:73
642
+ msgid "WooCommerce Smart Reminder emails"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:75
646
+ msgid "<b>Completely automatic</b> scheduled emails"
647
+ msgstr ""
648
+
649
+ #: includes/views/wcpdf-extensions.php:76
650
+ msgid ""
651
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
652
+ "from the order (name, order total, etc)"
653
+ msgstr ""
654
+
655
+ #: includes/views/wcpdf-extensions.php:77
656
+ msgid ""
657
+ "Configure the exact requirements for sending an email (time after order, "
658
+ "order status, payment method)"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:78
662
+ msgid ""
663
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
664
+ "order language."
665
+ msgstr ""
666
+
667
+ #: includes/views/wcpdf-extensions.php:79
668
+ msgid ""
669
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
670
+ "reminders, repeat purchases)"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:80
674
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
675
+ msgstr ""
676
+
677
+ #: includes/views/wcpdf-extensions.php:82
678
+ msgid "Get WooCommerce Smart Reminder Emails"
679
+ msgstr ""
680
+
681
+ #: includes/views/wcpdf-extensions.php:91
682
+ msgid "Upload all invoices automatically to your dropbox"
683
+ msgstr "Lae kõik arved automaatselt oma dropboxi"
684
+
685
+ #: includes/views/wcpdf-extensions.php:98
686
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
687
+ msgstr "Vii WooCommerce PDF Invoices & Packing Slips dropboxi!"
688
+
689
+ #: includes/views/wcpdf-extensions.php:110
690
+ msgid ""
691
+ "Automatically send new orders or packing slips to your printer, as soon as "
692
+ "the customer orders!"
693
+ msgstr ""
694
+ "Saada uued tellimused või saatelehed automaatselt printerisse, niipea kui "
695
+ "klient tellib!"
696
+
697
+ #: includes/views/wcpdf-extensions.php:116
698
+ msgid ""
699
+ "Check out the WooCommerce Automatic Order Printing extension from our "
700
+ "partners at Simba Hosting"
701
+ msgstr ""
702
+ "Tutvu laiendusega WooCommerce Automatic Order Printing meie partnerfirmalt "
703
+ "Simba Hosting"
704
+
705
+ #: includes/views/wcpdf-extensions.php:117
706
+ msgid "WooCommerce Automatic Order Printing"
707
+ msgstr "automaatne WooCommerce tellimuste printimine"
708
+
709
+ #: includes/views/wcpdf-extensions.php:136
710
+ #, php-format
711
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
712
+ msgstr "Tutvu PDF Invoice & Packing Slips preemium mallidega lehel %s."
713
+
714
+ #: includes/views/wcpdf-extensions.php:137
715
+ #, php-format
716
+ msgid "For custom templates, contact us at %s."
717
+ msgstr "Kohandatud mallide jaoks võta meiega ühendust: %s."
718
+
719
+ #: includes/views/wcpdf-extensions.php:146
720
+ msgid "Hide this message"
721
+ msgstr ""
722
+
723
+ #: includes/views/wcpdf-settings-page.php:8
724
+ msgid "WooCommerce PDF Invoices"
725
+ msgstr "WooCommerce PDF Arved"
726
+
727
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
728
+ msgid "Billing Address:"
729
+ msgstr "Arve aadress:"
730
+
731
+ #: templates/Simple/invoice.php:41
732
+ msgid "Ship To:"
733
+ msgstr "Vastuvõtja:"
734
+
735
+ #: templates/Simple/invoice.php:50
736
+ msgid "Invoice Number:"
737
+ msgstr "Arve number:"
738
+
739
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
740
+ msgid "Order Number:"
741
+ msgstr "Tellimuse number:"
742
+
743
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
744
+ msgid "Order Date:"
745
+ msgstr "Tellimuse kuupäev"
746
+
747
+ #: templates/Simple/invoice.php:69
748
+ msgid "Payment Method:"
749
+ msgstr "Makseviis:"
750
+
751
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
752
+ msgid "Product"
753
+ msgstr "Toode"
754
+
755
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
756
+ msgid "Quantity"
757
+ msgstr "Kogus"
758
+
759
+ #: templates/Simple/invoice.php:85
760
+ msgid "Price"
761
+ msgstr "Hind"
762
+
763
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
764
+ msgid "Description"
765
+ msgstr "Kirjeldus"
766
+
767
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
768
+ msgid "SKU"
769
+ msgstr "Tootekood"
770
+
771
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
772
+ msgid "SKU:"
773
+ msgstr "Tootekood:"
774
+
775
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
776
+ msgid "Weight:"
777
+ msgstr "Kaal:"
778
+
779
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
780
+ msgid "Customer Notes"
781
+ msgstr "Kliendi märkused"
782
+
783
+ #: templates/Simple/packing-slip.php:30
784
+ msgid "Shipping Address:"
785
+ msgstr "Tarne aadress:"
786
+
787
+ #: templates/Simple/packing-slip.php:57
788
+ msgid "Shipping Method:"
789
+ msgstr "Tarneviis:"
790
+
791
+ #: woocommerce-pdf-invoices-packingslips.php:231
792
+ #, php-format
793
+ msgid ""
794
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
795
+ "installed & activated!"
796
+ msgstr ""
797
+ "WooCommerce PDF Invoices & Packing Slips vajab, et %sWooCommerce%s oleks "
798
+ "paigaldatud ja aktiveeritud!"
799
+
800
+ #: woocommerce-pdf-invoices-packingslips.php:243
801
+ msgid ""
802
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
803
+ "higher recommended)."
804
+ msgstr ""
805
+
806
+ #: woocommerce-pdf-invoices-packingslips.php:244
807
+ msgid "How to update your PHP version"
808
+ msgstr ""
809
+
810
+ #~ msgid "Attach invoice to:"
811
+ #~ msgstr "Lisa arve järgnevatele:"
812
+
813
+ #~ msgid ""
814
+ #~ "Display shipping address on invoice (in addition to the default billing "
815
+ #~ "address) if different from billing address"
816
+ #~ msgstr ""
817
+ #~ "Näita arvel tarneaadressi (lisaks vaikimisi näidatavale arveaadressile), "
818
+ #~ "kui see erineb arve aadressist."
819
+
820
+ #~ msgid ""
821
+ #~ "This is the number that will be used on the next invoice that is created. "
822
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
823
+ #~ "first invoice that is created and increases for every new invoice. Note "
824
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
825
+ #~ "number, this could create double invoice numbers!"
826
+ #~ msgstr ""
827
+ #~ "Seda numbrit kasutatakse järgmise arve loomisel. Vaikimisi alustatakse "
828
+ #~ "esimese loodava arve WooCommerce tellimuse numbrist ning suurendatakse "
829
+ #~ "seda iga järgneva arve jaoks. Pane tähele, et kui seda käsitsi väiksemaks "
830
+ #~ "muudad, siis võib esineda korduvaid arvenumbreid!"
831
+
832
+ #~ msgid "Invoice number format"
833
+ #~ msgstr "Arve numbriformaat"
834
+
835
+ #~ msgid ""
836
+ #~ "Disable automatic creation/attachment of invoices when only free products "
837
+ #~ "are ordered"
838
+ #~ msgstr ""
839
+ #~ "Ära loo ega manusta arveid automaatselt, kui tellimuses on kõik tooted "
840
+ #~ "tasuta."
841
+
842
+ #~ msgid ""
843
+ #~ "Display billing address on packing slip (in addition to the default "
844
+ #~ "shipping address) if different from shipping address"
845
+ #~ msgstr ""
846
+ #~ "Näita arveaadressi saatelehel (lisaks vaikimisi tarneaadressile), kui see "
847
+ #~ "erineb tarneaadressist"
848
+
849
+ #~ msgid "Template"
850
+ #~ msgstr "Mall"
851
+
852
+ #~ msgid "Admin New Order email"
853
+ #~ msgstr "Halduri \"uus tellimus\" e-kiri"
854
+
855
+ #~ msgid "Customer Processing Order email"
856
+ #~ msgstr "Kliendi \"tellimus töötluses\" e-kiri"
857
+
858
+ #~ msgid "Customer Completed Order email"
859
+ #~ msgstr "Kliendi \"tellimus täidetud\" e-kiri"
860
+
861
+ #~ msgid "Customer Invoice email"
862
+ #~ msgstr "Kliendi \"arve\" e-kiri"
863
+
864
+ #~ msgid "Interface"
865
+ #~ msgstr "Liides"
866
+
867
+ #~ msgid "PDF Template settings"
868
+ #~ msgstr "PDF malli sätted"
869
+
870
+ #~ msgid "Display built-in sequential invoice number"
871
+ #~ msgstr "Näita sisseehitatud järjestikust arvenumbrit"
872
+
873
+ #~ msgid ""
874
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
875
+ #~ "respectively"
876
+ #~ msgstr ""
877
+ #~ "tellimuse aasta ja/või kuu kasutamiseks on vastavalt [order_year] ning "
878
+ #~ "[order_month]"
879
+
880
+ #~ msgid "Use old tmp folder"
881
+ #~ msgstr "Kasuta vana ajutist kausta"
882
+
883
+ #~ msgid ""
884
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
885
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
886
+ #~ "not recommended on new installs!"
887
+ #~ msgstr ""
888
+ #~ "Enne PDF arvete versiooni 1.5 hoiti ajutisi faile pluginate kaustas. See "
889
+ #~ "säte on mõeldud tagasiulatuva ühilduvuse jaoks, uutele paigaldustele "
890
+ #~ "mittesoovitatav!"
891
+
892
+ #~ msgid "PDF Packing Slips"
893
+ #~ msgstr "PDF saatelehed"
894
+
895
+ #~ msgid "PDF Invoice"
896
+ #~ msgstr "PDF arve"
897
+
898
+ #~ msgid "PDF Packing Slip"
899
+ #~ msgstr "PDF saateleht"
languages/woocommerce-pdf-invoices-packing-slips-fi.po CHANGED
@@ -1,948 +1,948 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: \n"
7
- "Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
8
- "Language: fi_FI\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Laskun numero"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Luo PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr "PDF laskun tiedot"
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Lasku"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Laskun Päiväys:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr "Laskun numero (ei muotoiltu)"
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "t"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "m"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Lataa lasku (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "Osa vientiparametreistä on puutteellisia."
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<b>Huom!</b> Nämä asetukset on tarkoitettu vain vianetsintään! Älä käytä "
79
- "niitä tuotantokäytössä!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Nämä asetukset koskevat alapalkin kolumneja <em>Modern (Premium)</em> -"
88
- "sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
89
- "sivupohjissasi."
90
-
91
- #: includes/class-wcpdf-settings-callbacks.php:301
92
- msgid "Image resolution"
93
- msgstr "Kuvan resoluutio"
94
-
95
- #: includes/class-wcpdf-settings-callbacks.php:325
96
- msgid "Save"
97
- msgstr ""
98
-
99
- #: includes/class-wcpdf-settings-debug.php:34
100
- msgid "Debug settings"
101
- msgstr "Vian paikannnus asetukset"
102
-
103
- #: includes/class-wcpdf-settings-debug.php:40
104
- msgid "Legacy mode"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-settings-debug.php:46
108
- msgid ""
109
- "Legacy mode ensures compatibility with templates and filters from previous "
110
- "versions."
111
- msgstr ""
112
-
113
- #: includes/class-wcpdf-settings-debug.php:52
114
- msgid "Enable debug output"
115
- msgstr "Ota käyttöön vikalogi"
116
-
117
- #: includes/class-wcpdf-settings-debug.php:58
118
- msgid ""
119
- "Enable this option to output plugin errors if you're getting a blank page or "
120
- "other PDF generation issues"
121
- msgstr ""
122
- "Ota käyttöön tämä toiminto näyttääksesi lisäosan virheilmoitukset jos "
123
- "lisäosa näyttää pelkän tyhjän sivun tai saat muita virheilmoituksia"
124
-
125
- #: includes/class-wcpdf-settings-debug.php:64
126
- msgid "Output to HTML"
127
- msgstr "HTML muotoilu"
128
-
129
- #: includes/class-wcpdf-settings-debug.php:70
130
- msgid ""
131
- "Send the template output as HTML to the browser instead of creating a PDF."
132
- msgstr ""
133
- "Lähetä sivupohja HTML muodossa selaimeen, sen sijaan että luotaisiin PDF "
134
- "tiedosto"
135
-
136
- #: includes/class-wcpdf-settings-documents.php:29
137
- #: includes/class-wcpdf-settings.php:84
138
- msgid "Documents"
139
- msgstr ""
140
-
141
- #: includes/class-wcpdf-settings-documents.php:45
142
- msgid ""
143
- "All available documents are listed below. Click on a document to configure "
144
- "it."
145
- msgstr ""
146
-
147
- #: includes/class-wcpdf-settings-general.php:37
148
- msgid "General settings"
149
- msgstr "Yleiset asetukset"
150
-
151
- #: includes/class-wcpdf-settings-general.php:43
152
- msgid "How do you want to view the PDF?"
153
- msgstr "Miten haluat esittää PDF-tiedoston?"
154
-
155
- #: includes/class-wcpdf-settings-general.php:50
156
- msgid "Download the PDF"
157
- msgstr "Lataa PDF-tiedosto"
158
-
159
- #: includes/class-wcpdf-settings-general.php:51
160
- msgid "Open the PDF in a new browser tab/window"
161
- msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
162
-
163
- #: includes/class-wcpdf-settings-general.php:58
164
- msgid "Choose a template"
165
- msgstr "Valitse sivupohja"
166
-
167
- #: includes/class-wcpdf-settings-general.php:65
168
- #, php-format
169
- msgid ""
170
- "Want to use your own template? Copy all the files from <code>%s</code> to "
171
- "your (child) theme in <code>%s</code> to customize them"
172
- msgstr ""
173
- "Haluatko käyttää omaa sivupohjaa? Kopioi kaikki tiedostot <code>%s</code> "
174
- "oman teemasi hakemistoon <code>%s</code> muokataksesi tiedostoja"
175
-
176
- #: includes/class-wcpdf-settings-general.php:71
177
- msgid "Paper size"
178
- msgstr "Paperin koko"
179
-
180
- #: includes/class-wcpdf-settings-general.php:78
181
- msgid "A4"
182
- msgstr "A4"
183
-
184
- #: includes/class-wcpdf-settings-general.php:79
185
- msgid "Letter"
186
- msgstr "Kirje"
187
-
188
- #: includes/class-wcpdf-settings-general.php:86
189
- msgid "Extended currency symbol support"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-settings-general.php:92
193
- msgid "Enable this if your currency symbol is not displaying properly"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-settings-general.php:98
197
- msgid "Shop header/logo"
198
- msgstr "Kaupan logo"
199
-
200
- #: includes/class-wcpdf-settings-general.php:104
201
- msgid "Select or upload your invoice header/logo"
202
- msgstr "Valitse tai lataa laskun logo"
203
-
204
- #: includes/class-wcpdf-settings-general.php:105
205
- msgid "Set image"
206
- msgstr "Aseta kuva"
207
-
208
- #: includes/class-wcpdf-settings-general.php:106
209
- msgid "Remove image"
210
- msgstr "Poista kuva"
211
-
212
- #: includes/class-wcpdf-settings-general.php:113
213
- msgid "Shop Name"
214
- msgstr "Kaupan nimi"
215
-
216
- #: includes/class-wcpdf-settings-general.php:126
217
- msgid "Shop Address"
218
- msgstr "Kaupan osoite"
219
-
220
- #: includes/class-wcpdf-settings-general.php:141
221
- msgid "Footer: terms & conditions, policies, etc."
222
- msgstr "Alapalkki: ehdot, periaatteet jne…"
223
-
224
- #: includes/class-wcpdf-settings-general.php:156
225
- msgid "Extra template fields"
226
- msgstr "Lisäkentät"
227
-
228
- #: includes/class-wcpdf-settings-general.php:162
229
- msgid "Extra field 1"
230
- msgstr "Lisäkenttä 1"
231
-
232
- #: includes/class-wcpdf-settings-general.php:170
233
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
- msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
235
-
236
- #: includes/class-wcpdf-settings-general.php:177
237
- msgid "Extra field 2"
238
- msgstr "Lisäkenttä 2"
239
-
240
- #: includes/class-wcpdf-settings-general.php:185
241
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
242
- msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
243
-
244
- #: includes/class-wcpdf-settings-general.php:192
245
- msgid "Extra field 3"
246
- msgstr "Lisäkenttä 3"
247
-
248
- #: includes/class-wcpdf-settings-general.php:200
249
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
250
- msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
251
-
252
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
253
- msgid "PDF Invoices"
254
- msgstr "PDF-laskut"
255
-
256
- #: includes/class-wcpdf-settings.php:58
257
- msgid "Settings"
258
- msgstr "Asetukset"
259
-
260
- #: includes/class-wcpdf-settings.php:71
261
- msgid "Documentation"
262
- msgstr ""
263
-
264
- #: includes/class-wcpdf-settings.php:72
265
- msgid "Support Forum"
266
- msgstr ""
267
-
268
- #: includes/class-wcpdf-settings.php:83
269
- msgid "General"
270
- msgstr "Yleiset"
271
-
272
- #: includes/class-wcpdf-settings.php:89
273
- msgid "Status"
274
- msgstr "Tila"
275
-
276
- #: includes/compatibility/class-wc-core-compatibility.php:222
277
- msgid "WooCommerce"
278
- msgstr ""
279
-
280
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
281
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
282
- msgid "N/A"
283
- msgstr "-"
284
-
285
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
286
- msgid "Payment method"
287
- msgstr "Maksutapa"
288
-
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
290
- msgid "Shipping method"
291
- msgstr "Toimitustapa"
292
-
293
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
294
- #, php-format
295
- msgid "(includes %s)"
296
- msgstr ""
297
-
298
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
299
- #, php-format
300
- msgid "(Includes %s)"
301
- msgstr "(Sisältää %s)"
302
-
303
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
304
- msgid "Subtotal"
305
- msgstr "Välisumma"
306
-
307
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
308
- msgid "Shipping"
309
- msgstr "Toimitus"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
312
- msgid "Discount"
313
- msgstr "Alennus"
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
316
- msgid "VAT"
317
- msgstr "Arvonlisävero"
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
320
- msgid "Tax rate"
321
- msgstr "Veroprosentti"
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
324
- msgid "Total ex. VAT"
325
- msgstr "Yhteensä (ei sis. Alv)"
326
-
327
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
328
- msgid "Total"
329
- msgstr "Yhteensä"
330
-
331
- #: includes/documents/abstract-wcpdf-order-document.php:674
332
- msgid "Admin email"
333
- msgstr ""
334
-
335
- #: includes/documents/abstract-wcpdf-order-document.php:677
336
- msgid "Manual email"
337
- msgstr ""
338
-
339
- # This is a filename (prefix). do not use spaces or special characters!
340
- #: includes/documents/class-wcpdf-invoice.php:85
341
- msgid "invoice"
342
- msgid_plural "invoices"
343
- msgstr[0] "lasku"
344
- msgstr[1] "laskut"
345
-
346
- #: includes/documents/class-wcpdf-invoice.php:130
347
- #: includes/documents/class-wcpdf-packing-slip.php:94
348
- msgid "Enable"
349
- msgstr ""
350
-
351
- #: includes/documents/class-wcpdf-invoice.php:141
352
- msgid "Attach to:"
353
- msgstr ""
354
-
355
- #: includes/documents/class-wcpdf-invoice.php:148
356
- #, php-format
357
- msgid ""
358
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
359
- "permissions for this folder! Without having write access to this folder, the "
360
- "plugin will not be able to email invoices."
361
- msgstr ""
362
- "Näyttää siltä, että temp-tiedosto (<code>%s</code>) on kirjoitussuojattu, "
363
- "tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
364
- "lisäosa ei pysty lähettämään laskuja sähköpostilla."
365
-
366
- #: includes/documents/class-wcpdf-invoice.php:154
367
- msgid "Display shipping address"
368
- msgstr "Näytä toimitusosoite"
369
-
370
- #: includes/documents/class-wcpdf-invoice.php:160
371
- msgid ""
372
- "Display shipping address (in addition to the default billing address) if "
373
- "different from billing address"
374
- msgstr ""
375
-
376
- #: includes/documents/class-wcpdf-invoice.php:166
377
- #: includes/documents/class-wcpdf-packing-slip.php:117
378
- msgid "Display email address"
379
- msgstr "Näytä sähköpostiosoite"
380
-
381
- #: includes/documents/class-wcpdf-invoice.php:177
382
- #: includes/documents/class-wcpdf-packing-slip.php:128
383
- msgid "Display phone number"
384
- msgstr "Näytä puhelinnumero"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:188
387
- msgid "Display invoice date"
388
- msgstr "Näytä laskun päivämäärä"
389
-
390
- #: includes/documents/class-wcpdf-invoice.php:200
391
- msgid "Display invoice number"
392
- msgstr ""
393
-
394
- #: includes/documents/class-wcpdf-invoice.php:212
395
- msgid "Next invoice number (without prefix/suffix etc.)"
396
- msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
397
-
398
- #: includes/documents/class-wcpdf-invoice.php:218
399
- msgid ""
400
- "This is the number that will be used for the next document. By default, "
401
- "numbering starts from 1 and increases for every new document. Note that if "
402
- "you override this and set it lower than the current/highest number, this "
403
- "could create duplicate numbers!"
404
- msgstr ""
405
-
406
- #: includes/documents/class-wcpdf-invoice.php:224
407
- msgid "Number format"
408
- msgstr ""
409
-
410
- #: includes/documents/class-wcpdf-invoice.php:232
411
- msgid "Prefix"
412
- msgstr "Etuliite"
413
-
414
- #: includes/documents/class-wcpdf-invoice.php:234
415
- msgid ""
416
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
417
- "respectively"
418
- msgstr ""
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:237
421
- msgid "Suffix"
422
- msgstr "Takaliite"
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:242
425
- msgid "Padding"
426
- msgstr "Padding"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:245
429
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
430
- msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
431
-
432
- #: includes/documents/class-wcpdf-invoice.php:248
433
- msgid ""
434
- "note: if you have already created a custom invoice number format with a "
435
- "filter, the above settings will be ignored"
436
- msgstr ""
437
- "huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
438
- "yllä olevat asetukset ohitetaan"
439
-
440
- #: includes/documents/class-wcpdf-invoice.php:254
441
- msgid "Reset invoice number yearly"
442
- msgstr "Nollaa laskun numero vuosittain"
443
-
444
- #: includes/documents/class-wcpdf-invoice.php:265
445
- msgid "Allow My Account invoice download"
446
- msgstr "Salli laskun lataaminen oman tilin kautta"
447
-
448
- #: includes/documents/class-wcpdf-invoice.php:272
449
- msgid "Only when an invoice is already created/emailed"
450
- msgstr "Ainoastaan kun lasku on luotu/lähetetty"
451
-
452
- #: includes/documents/class-wcpdf-invoice.php:273
453
- msgid "Only for specific order statuses (define below)"
454
- msgstr "Ainoastaan tietyille tilauksen tiloille (määrittele alla)"
455
-
456
- #: includes/documents/class-wcpdf-invoice.php:274
457
- msgid "Always"
458
- msgstr "Aina"
459
-
460
- #: includes/documents/class-wcpdf-invoice.php:275
461
- msgid "Never"
462
- msgstr "Ei koskaan"
463
-
464
- #: includes/documents/class-wcpdf-invoice.php:290
465
- msgid "Enable invoice number column in the orders list"
466
- msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
467
-
468
- #: includes/documents/class-wcpdf-invoice.php:301
469
- msgid "Disable for free products"
470
- msgstr "Poista käytöstä ilmaisille tuotteille"
471
-
472
- #: includes/documents/class-wcpdf-invoice.php:307
473
- msgid ""
474
- "Disable automatic creation/attachment when only free products are ordered"
475
- msgstr ""
476
-
477
- #: includes/documents/class-wcpdf-invoice.php:321
478
- msgid "Invoice numbers are created by a third-party extension."
479
- msgstr ""
480
-
481
- #: includes/documents/class-wcpdf-invoice.php:323
482
- #, php-format
483
- msgid "Configure it <a href=\"%s\">here</a>."
484
- msgstr ""
485
-
486
- #: includes/documents/class-wcpdf-packing-slip.php:32
487
- #: includes/documents/class-wcpdf-packing-slip.php:41
488
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
489
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
490
- msgid "Packing Slip"
491
- msgstr "Lähetyslista"
492
-
493
- # This is a filename (prefix). do not use spaces or special characters!
494
- #: includes/documents/class-wcpdf-packing-slip.php:53
495
- msgid "packing-slip"
496
- msgid_plural "packing-slips"
497
- msgstr[0] "lähetyslista"
498
- msgstr[1] "lähetyslistat"
499
-
500
- #: includes/documents/class-wcpdf-packing-slip.php:105
501
- msgid "Display billing address"
502
- msgstr "Näytä laskutusosoite"
503
-
504
- #: includes/documents/class-wcpdf-packing-slip.php:111
505
- msgid ""
506
- "Display billing address (in addition to the default shipping address) if "
507
- "different from shipping address"
508
- msgstr ""
509
-
510
- #: includes/legacy/class-wcpdf-legacy-document.php:32
511
- msgid "Legacy Document"
512
- msgstr ""
513
-
514
- #: includes/views/wcpdf-extensions.php:15
515
- msgid "Check out these premium extensions!"
516
- msgstr "Tarkastele Premium laajennuksia"
517
-
518
- #: includes/views/wcpdf-extensions.php:16
519
- msgid "click items to read more"
520
- msgstr "Klikkaa lisätietoja"
521
-
522
- #: includes/views/wcpdf-extensions.php:21
523
- msgid ""
524
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
525
- "system"
526
- msgstr ""
527
-
528
- #: includes/views/wcpdf-extensions.php:23
529
- msgid ""
530
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
531
- "premium extensions:"
532
- msgstr ""
533
-
534
- #: includes/views/wcpdf-extensions.php:24
535
- msgid "Professional features:"
536
- msgstr ""
537
-
538
- #: includes/views/wcpdf-extensions.php:26
539
- #: includes/views/wcpdf-extensions.php:56
540
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
541
- msgstr "Sähköposti/tulosta/lataa <b>PDF hyvityslaskut & Pro forma laskut</b>"
542
-
543
- #: includes/views/wcpdf-extensions.php:27
544
- #: includes/views/wcpdf-extensions.php:57
545
- msgid ""
546
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
547
- "packing slips, for example to a drop-shipper or a supplier."
548
- msgstr ""
549
- "Lähetä erillinen huomautussähköposti joko PDF laskulla/lähetyslistalla tai "
550
- "ilman, esim. tavarantoimittajalle."
551
-
552
- #: includes/views/wcpdf-extensions.php:28
553
- #: includes/views/wcpdf-extensions.php:58
554
- msgid ""
555
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
556
- "document) to the WooCommerce emails of your choice."
557
- msgstr ""
558
- "Lisää korkeintaan 3 staattista tiedostoa (kuten esim. toimitusehdot) "
559
- "WooCommercen sähköposteihin, jotka voit itse valita."
560
-
561
- #: includes/views/wcpdf-extensions.php:29
562
- #: includes/views/wcpdf-extensions.php:59
563
- msgid ""
564
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
565
- "and credit notes or utilize the main invoice numbering system"
566
- msgstr ""
567
- "Käytä erillistä numerointia ja/tai formaattia pro forma laskuille ja "
568
- "hyvityslaskuille tai määrittele päätoiminen numerointijärjestelmä"
569
-
570
- #: includes/views/wcpdf-extensions.php:30
571
- #: includes/views/wcpdf-extensions.php:60
572
- msgid ""
573
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
574
- "additional custom fields, font sizes etc. without the need to create a "
575
- "custom template."
576
- msgstr ""
577
- "Muokkaa toimitus- ja laskutusosoitetta lisätäksesi lisäkenttiä tai fontin "
578
- "kokoa suoraan ilman erillisen sivupohjan luomista."
579
-
580
- #: includes/views/wcpdf-extensions.php:31
581
- #: includes/views/wcpdf-extensions.php:61
582
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
583
- msgstr "Käytä lisäosaa monikielisenä"
584
-
585
- #: includes/views/wcpdf-extensions.php:33
586
- #: includes/views/wcpdf-extensions.php:131
587
- msgid "Advanced, customizable templates"
588
- msgstr "Kehittyneet, muokattavat sivupohjat"
589
-
590
- #: includes/views/wcpdf-extensions.php:35
591
- #: includes/views/wcpdf-extensions.php:134
592
- msgid ""
593
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
594
- "your needs with a drag & drop customizer"
595
- msgstr ""
596
- "Muokkaa täydellisesti laskun sisältöä tarpeitasi varten drag & drop "
597
- "muokkaimella"
598
-
599
- #: includes/views/wcpdf-extensions.php:36
600
- #: includes/views/wcpdf-extensions.php:135
601
- msgid "Two extra stylish premade templates (Modern & Business)"
602
- msgstr "Kaksi tyylikästä valmista sivupohjaa (Moderni ja Business)"
603
-
604
- #: includes/views/wcpdf-extensions.php:38
605
- msgid "Upload automatically to dropbox"
606
- msgstr ""
607
-
608
- #: includes/views/wcpdf-extensions.php:40
609
- #: includes/views/wcpdf-extensions.php:97
610
- msgid ""
611
- "This extension conveniently uploads all the invoices (and other pdf "
612
- "documents from the professional extension) that are emailed to your "
613
- "customers to Dropbox. The best way to keep your invoice administration up to "
614
- "date!"
615
- msgstr "Tämä laajennus lähettää kaikki laskusi Dropbox tilillesi."
616
-
617
- #: includes/views/wcpdf-extensions.php:43
618
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
619
- msgstr ""
620
-
621
- #: includes/views/wcpdf-extensions.php:52
622
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
623
- msgstr "Valitse Pro versio: Pro forma laskut, hyvityslaskut ja paljon muuta!"
624
-
625
- #: includes/views/wcpdf-extensions.php:54
626
- msgid ""
627
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
628
- "features:"
629
- msgstr ""
630
- "Täydennä WooCommerce PDF laskut & lähetyslistat seuraavilla ominaisuuksilla:"
631
-
632
- #: includes/views/wcpdf-extensions.php:63
633
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
634
- msgstr "Hanki WooCommerce laskut & lähetyslistat Pro versio!"
635
-
636
- #: includes/views/wcpdf-extensions.php:71
637
- msgid "Automatically send payment reminders to your customers"
638
- msgstr ""
639
-
640
- #: includes/views/wcpdf-extensions.php:73
641
- msgid "WooCommerce Smart Reminder emails"
642
- msgstr ""
643
-
644
- #: includes/views/wcpdf-extensions.php:75
645
- msgid "<b>Completely automatic</b> scheduled emails"
646
- msgstr ""
647
-
648
- #: includes/views/wcpdf-extensions.php:76
649
- msgid ""
650
- "<b>Rich text editor</b> for the email text, including placeholders for data "
651
- "from the order (name, order total, etc)"
652
- msgstr ""
653
-
654
- #: includes/views/wcpdf-extensions.php:77
655
- msgid ""
656
- "Configure the exact requirements for sending an email (time after order, "
657
- "order status, payment method)"
658
- msgstr ""
659
-
660
- #: includes/views/wcpdf-extensions.php:78
661
- msgid ""
662
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
663
- "order language."
664
- msgstr ""
665
-
666
- #: includes/views/wcpdf-extensions.php:79
667
- msgid ""
668
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
669
- "reminders, repeat purchases)"
670
- msgstr ""
671
-
672
- #: includes/views/wcpdf-extensions.php:80
673
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
674
- msgstr ""
675
-
676
- #: includes/views/wcpdf-extensions.php:82
677
- msgid "Get WooCommerce Smart Reminder Emails"
678
- msgstr ""
679
-
680
- #: includes/views/wcpdf-extensions.php:91
681
- msgid "Upload all invoices automatically to your dropbox"
682
- msgstr "Lähetä kaikki laskut automaattisesti dropbox tilillesi"
683
-
684
- #: includes/views/wcpdf-extensions.php:98
685
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
686
- msgstr "Hanki WooCommerce PDF laskut & lähetyslistat Dropbox laajennus!"
687
-
688
- #: includes/views/wcpdf-extensions.php:110
689
- msgid ""
690
- "Automatically send new orders or packing slips to your printer, as soon as "
691
- "the customer orders!"
692
- msgstr "Lähetä automaattisesti tilaukset tai lähetyslistat tulostimelle."
693
-
694
- #: includes/views/wcpdf-extensions.php:116
695
- msgid ""
696
- "Check out the WooCommerce Automatic Order Printing extension from our "
697
- "partners at Simba Hosting"
698
- msgstr ""
699
- "Katso WooCommerce Automaattinen Tulostus laajennus yhteistyökumppaniltamme "
700
- "Simba Hostingilla"
701
-
702
- #: includes/views/wcpdf-extensions.php:117
703
- msgid "WooCommerce Automatic Order Printing"
704
- msgstr "WooCommerce Automaattinen Tilauksen Tulostus"
705
-
706
- #: includes/views/wcpdf-extensions.php:136
707
- #, php-format
708
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
709
- msgstr "Katso Premium PDF lasku & lähetyslistat sivupohjat osoitteessa: %s."
710
-
711
- #: includes/views/wcpdf-extensions.php:137
712
- #, php-format
713
- msgid "For custom templates, contact us at %s."
714
- msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
715
-
716
- #: includes/views/wcpdf-extensions.php:146
717
- msgid "Hide this message"
718
- msgstr ""
719
-
720
- #: includes/views/wcpdf-settings-page.php:8
721
- msgid "WooCommerce PDF Invoices"
722
- msgstr "WooCommerce PDF-laskut"
723
-
724
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
725
- msgid "Billing Address:"
726
- msgstr "Laskutusosoite:"
727
-
728
- #: templates/Simple/invoice.php:41
729
- msgid "Ship To:"
730
- msgstr "Toimitetaan:"
731
-
732
- #: templates/Simple/invoice.php:50
733
- msgid "Invoice Number:"
734
- msgstr "Laskun numero:"
735
-
736
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
737
- msgid "Order Number:"
738
- msgstr "Tilauksen numero:"
739
-
740
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
741
- msgid "Order Date:"
742
- msgstr "Tilauksen päiväys:"
743
-
744
- #: templates/Simple/invoice.php:69
745
- msgid "Payment Method:"
746
- msgstr "Maksutapa:"
747
-
748
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
749
- msgid "Product"
750
- msgstr "Tuote"
751
-
752
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
753
- msgid "Quantity"
754
- msgstr "Määrä"
755
-
756
- #: templates/Simple/invoice.php:85
757
- msgid "Price"
758
- msgstr "Hinta"
759
-
760
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
761
- msgid "Description"
762
- msgstr "Kuvaus"
763
-
764
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
765
- msgid "SKU"
766
- msgstr "Tuotekoodi"
767
-
768
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
769
- msgid "SKU:"
770
- msgstr "Tuotekoodi:"
771
-
772
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
773
- msgid "Weight:"
774
- msgstr "Paino:"
775
-
776
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
777
- msgid "Customer Notes"
778
- msgstr "Asiakkaan huomiot"
779
-
780
- #: templates/Simple/packing-slip.php:30
781
- msgid "Shipping Address:"
782
- msgstr "Toimitusosoite:"
783
-
784
- #: templates/Simple/packing-slip.php:57
785
- msgid "Shipping Method:"
786
- msgstr "Toimitustapa:"
787
-
788
- #: woocommerce-pdf-invoices-packingslips.php:231
789
- #, php-format
790
- msgid ""
791
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
792
- "installed & activated!"
793
- msgstr ""
794
- "WooCommerce PDF Invoices & Packing Slips edellyttää %sWooCommerce%s -"
795
- "asennusta ja aktivointia!"
796
-
797
- #: woocommerce-pdf-invoices-packingslips.php:243
798
- msgid ""
799
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
800
- "higher recommended)."
801
- msgstr ""
802
-
803
- #: woocommerce-pdf-invoices-packingslips.php:244
804
- msgid "How to update your PHP version"
805
- msgstr ""
806
-
807
- #~ msgid "Attach invoice to:"
808
- #~ msgstr "Liitä lasku:"
809
-
810
- #~ msgid ""
811
- #~ "Display shipping address on invoice (in addition to the default billing "
812
- #~ "address) if different from billing address"
813
- #~ msgstr "Näytä toimitusosoite laskulla, jos eri kuin laskutusosoite"
814
-
815
- #~ msgid ""
816
- #~ "This is the number that will be used on the next invoice that is created. "
817
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
818
- #~ "first invoice that is created and increases for every new invoice. Note "
819
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
820
- #~ "number, this could create double invoice numbers!"
821
- #~ msgstr ""
822
- #~ "Tmä numero näytetään seuraavassa laskussa, joka luodaan. Oletusarvoisesti "
823
- #~ "numerointi alkaa ensimmäisen tilauksen, jolle lasku luodaan, WooCommercen "
824
- #~ "tilausnumerosta. Laskunumerot jatkuvat tästä eteenpäin juoksevasti, eli "
825
- #~ "kasvavat aina yhdellä. Huomioithan, että jos ohitat tämän asetukset ja "
826
- #~ "asetat sen alemmaksi kuin ylin (PDF) laskunumero, saattaa esiintyä kaksi "
827
- #~ "identtistä laskunnumeroa. Suosittelemme, että asetukseen ei kosketa."
828
-
829
- #~ msgid "Invoice number format"
830
- #~ msgstr "Laskun numeron muoto"
831
-
832
- #~ msgid ""
833
- #~ "Disable automatic creation/attachment of invoices when only free products "
834
- #~ "are ordered"
835
- #~ msgstr ""
836
- #~ "Poista käytöstä automaattinen laskujen luonti kun tilauksessa on "
837
- #~ "ainoastaan ilmaisia tuotteita"
838
-
839
- #~ msgid ""
840
- #~ "Display billing address on packing slip (in addition to the default "
841
- #~ "shipping address) if different from shipping address"
842
- #~ msgstr ""
843
- #~ "Näytä laskutusosoite lähetyslistassa jos osoite poikkeaa "
844
- #~ "toimitusosoitteesta"
845
-
846
- #~ msgid "Template"
847
- #~ msgstr "Sivupohja"
848
-
849
- #~ msgid "Admin New Order email"
850
- #~ msgstr "Ylläpitäjän ‘Uusi tilaus’-viesti"
851
-
852
- #~ msgid "Customer Processing Order email"
853
- #~ msgstr "Asiakkaan ‘Tilaus on käsittelyssä’-sähköposti"
854
-
855
- #~ msgid "Customer Completed Order email"
856
- #~ msgstr "Asiakkaan ‘Tilaus valmis’-sähköposti"
857
-
858
- #~ msgid "Customer Invoice email"
859
- #~ msgstr "Asiakkaan ‘Lasku’-sähköposti"
860
-
861
- #~ msgid "Interface"
862
- #~ msgstr "Ulkoasu"
863
-
864
- #~ msgid "PDF Template settings"
865
- #~ msgstr "PDF-sivupohjan asetukset"
866
-
867
- #~ msgid "Display built-in sequential invoice number"
868
- #~ msgstr "Näytä sisäänrakennettu peräkkäinen laskun numero"
869
-
870
- #~ msgid ""
871
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
872
- #~ "respectively"
873
- #~ msgstr ""
874
- #~ "käyttääksesi vuotta ja/tai kuukautta, käytä [order_year] tai "
875
- #~ "[order_month] tarvittaessa"
876
-
877
- #~ msgid "Use old tmp folder"
878
- #~ msgstr "Käytä vanhaa tilapäishakemistoa"
879
-
880
- #~ msgid ""
881
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
882
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
883
- #~ "not recommended on new installs!"
884
- #~ msgstr ""
885
- #~ "Ennen versiota 1.5 väliaikaistiedostot säilöttiin lisäosan hakemistoon. "
886
- #~ "Tämä asetus on tarkoitettu yhteensopivuus tarkoituksessa vanhoille "
887
- #~ "versioille, ei uusille versiolle!"
888
-
889
- #~ msgid "PDF Packing Slips"
890
- #~ msgstr "PDF-lähetyslistat"
891
-
892
- #~ msgid "PDF Invoice"
893
- #~ msgstr "PDF lasku"
894
-
895
- #~ msgid "PDF Packing Slip"
896
- #~ msgstr "PDF-lähetyslista"
897
-
898
- #~ msgid ""
899
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
900
- #~ "extension."
901
- #~ msgstr ""
902
- #~ "Lataa kaikki laskut automaattisesti Dropbox-tiliisi!<br/>Tutustu %s -"
903
- #~ "lisäosaan."
904
-
905
- #~ msgid ""
906
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
907
- #~ "Packing Slips templates at %s."
908
- #~ msgstr ""
909
- #~ "Etsitkö edistyneempiä sivupohjia? Tutustu Premium PDF Invoice & Packing "
910
- #~ "Slips -sivupohjiin osoitteessa %s."
911
-
912
- #~ msgid ""
913
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
914
- #~ "<code>%s</code> to customize them"
915
- #~ msgstr ""
916
- #~ "Haluatko käyttää omaa sivupohjaasi? Kopioi kaikki tiedostot kansiosta, "
917
- #~ "<code>%s</code> kansioon, <code>%s</code> muokataksesi niitä."
918
-
919
- #~ msgid "Number to display on invoice"
920
- #~ msgstr "Laskun numero"
921
-
922
- #~ msgid "WooCommerce order number"
923
- #~ msgstr "WooCommerce tilausnumero"
924
-
925
- #~ msgid "Built-in sequential invoice number"
926
- #~ msgstr "Sisäänrakennettu juokseva laskunnumero"
927
-
928
- #~ msgid ""
929
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
930
- #~ "the WooCommerce order number"
931
- #~ msgstr ""
932
- #~ "Jos käytät WooCommerce Sequential Order Numbers -lisäosaa, valitse "
933
- #~ "WooCommerce tilausnumero."
934
-
935
- #~ msgid "Date to display on invoice"
936
- #~ msgstr "Laskulla näytettävä päivämäärä"
937
-
938
- #~ msgid "Order date"
939
- #~ msgstr "Tilauksen päiväys"
940
-
941
- #~ msgid "Invoice date"
942
- #~ msgstr "Laskun päiväys"
943
-
944
- #~ msgid "PDF invoice"
945
- #~ msgstr "PDF-laskut"
946
-
947
- #~ msgid "PDF Invoice Number (unformatted!)"
948
- #~ msgstr "PDF laskunnumero (ei muotoiltu!)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Contrast Digital Oy <hello@contrast.fi>\n"
8
+ "Language: fi_FI\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Laskun numero"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Luo PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr "PDF laskun tiedot"
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Lasku"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Laskun Päiväys:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr "Laskun numero (ei muotoiltu)"
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "t"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "m"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Lataa lasku (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivulle."
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "Osa vientiparametreistä on puutteellisia."
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<b>Huom!</b> Nämä asetukset on tarkoitettu vain vianetsintään! Älä käytä "
79
+ "niitä tuotantokäytössä!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Nämä asetukset koskevat alapalkin kolumneja <em>Modern (Premium)</em> -"
88
+ "sivupohjassa, mutta niitä voidaan myös käyttää muissa elementeissä omissa "
89
+ "sivupohjissasi."
90
+
91
+ #: includes/class-wcpdf-settings-callbacks.php:301
92
+ msgid "Image resolution"
93
+ msgstr "Kuvan resoluutio"
94
+
95
+ #: includes/class-wcpdf-settings-callbacks.php:325
96
+ msgid "Save"
97
+ msgstr ""
98
+
99
+ #: includes/class-wcpdf-settings-debug.php:34
100
+ msgid "Debug settings"
101
+ msgstr "Vian paikannnus asetukset"
102
+
103
+ #: includes/class-wcpdf-settings-debug.php:40
104
+ msgid "Legacy mode"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-settings-debug.php:46
108
+ msgid ""
109
+ "Legacy mode ensures compatibility with templates and filters from previous "
110
+ "versions."
111
+ msgstr ""
112
+
113
+ #: includes/class-wcpdf-settings-debug.php:52
114
+ msgid "Enable debug output"
115
+ msgstr "Ota käyttöön vikalogi"
116
+
117
+ #: includes/class-wcpdf-settings-debug.php:58
118
+ msgid ""
119
+ "Enable this option to output plugin errors if you're getting a blank page or "
120
+ "other PDF generation issues"
121
+ msgstr ""
122
+ "Ota käyttöön tämä toiminto näyttääksesi lisäosan virheilmoitukset jos "
123
+ "lisäosa näyttää pelkän tyhjän sivun tai saat muita virheilmoituksia"
124
+
125
+ #: includes/class-wcpdf-settings-debug.php:64
126
+ msgid "Output to HTML"
127
+ msgstr "HTML muotoilu"
128
+
129
+ #: includes/class-wcpdf-settings-debug.php:70
130
+ msgid ""
131
+ "Send the template output as HTML to the browser instead of creating a PDF."
132
+ msgstr ""
133
+ "Lähetä sivupohja HTML muodossa selaimeen, sen sijaan että luotaisiin PDF "
134
+ "tiedosto"
135
+
136
+ #: includes/class-wcpdf-settings-documents.php:29
137
+ #: includes/class-wcpdf-settings.php:84
138
+ msgid "Documents"
139
+ msgstr ""
140
+
141
+ #: includes/class-wcpdf-settings-documents.php:45
142
+ msgid ""
143
+ "All available documents are listed below. Click on a document to configure "
144
+ "it."
145
+ msgstr ""
146
+
147
+ #: includes/class-wcpdf-settings-general.php:37
148
+ msgid "General settings"
149
+ msgstr "Yleiset asetukset"
150
+
151
+ #: includes/class-wcpdf-settings-general.php:43
152
+ msgid "How do you want to view the PDF?"
153
+ msgstr "Miten haluat esittää PDF-tiedoston?"
154
+
155
+ #: includes/class-wcpdf-settings-general.php:50
156
+ msgid "Download the PDF"
157
+ msgstr "Lataa PDF-tiedosto"
158
+
159
+ #: includes/class-wcpdf-settings-general.php:51
160
+ msgid "Open the PDF in a new browser tab/window"
161
+ msgstr "Avaa PDF-tiedosto uudessa selainikkunassa/välilehdellä"
162
+
163
+ #: includes/class-wcpdf-settings-general.php:58
164
+ msgid "Choose a template"
165
+ msgstr "Valitse sivupohja"
166
+
167
+ #: includes/class-wcpdf-settings-general.php:65
168
+ #, php-format
169
+ msgid ""
170
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
171
+ "your (child) theme in <code>%s</code> to customize them"
172
+ msgstr ""
173
+ "Haluatko käyttää omaa sivupohjaa? Kopioi kaikki tiedostot <code>%s</code> "
174
+ "oman teemasi hakemistoon <code>%s</code> muokataksesi tiedostoja"
175
+
176
+ #: includes/class-wcpdf-settings-general.php:71
177
+ msgid "Paper size"
178
+ msgstr "Paperin koko"
179
+
180
+ #: includes/class-wcpdf-settings-general.php:78
181
+ msgid "A4"
182
+ msgstr "A4"
183
+
184
+ #: includes/class-wcpdf-settings-general.php:79
185
+ msgid "Letter"
186
+ msgstr "Kirje"
187
+
188
+ #: includes/class-wcpdf-settings-general.php:86
189
+ msgid "Extended currency symbol support"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-settings-general.php:92
193
+ msgid "Enable this if your currency symbol is not displaying properly"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-settings-general.php:98
197
+ msgid "Shop header/logo"
198
+ msgstr "Kaupan logo"
199
+
200
+ #: includes/class-wcpdf-settings-general.php:104
201
+ msgid "Select or upload your invoice header/logo"
202
+ msgstr "Valitse tai lataa laskun logo"
203
+
204
+ #: includes/class-wcpdf-settings-general.php:105
205
+ msgid "Set image"
206
+ msgstr "Aseta kuva"
207
+
208
+ #: includes/class-wcpdf-settings-general.php:106
209
+ msgid "Remove image"
210
+ msgstr "Poista kuva"
211
+
212
+ #: includes/class-wcpdf-settings-general.php:113
213
+ msgid "Shop Name"
214
+ msgstr "Kaupan nimi"
215
+
216
+ #: includes/class-wcpdf-settings-general.php:126
217
+ msgid "Shop Address"
218
+ msgstr "Kaupan osoite"
219
+
220
+ #: includes/class-wcpdf-settings-general.php:141
221
+ msgid "Footer: terms & conditions, policies, etc."
222
+ msgstr "Alapalkki: ehdot, periaatteet jne…"
223
+
224
+ #: includes/class-wcpdf-settings-general.php:156
225
+ msgid "Extra template fields"
226
+ msgstr "Lisäkentät"
227
+
228
+ #: includes/class-wcpdf-settings-general.php:162
229
+ msgid "Extra field 1"
230
+ msgstr "Lisäkenttä 1"
231
+
232
+ #: includes/class-wcpdf-settings-general.php:170
233
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
+ msgstr "Tämä on alapalkin sarake 1 <i>Modern (Premium)</i> -sivupohjassa."
235
+
236
+ #: includes/class-wcpdf-settings-general.php:177
237
+ msgid "Extra field 2"
238
+ msgstr "Lisäkenttä 2"
239
+
240
+ #: includes/class-wcpdf-settings-general.php:185
241
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
242
+ msgstr "Tämä on alapalkin sarake 2 <i>Modern (Premium)</i> -sivupohjassa."
243
+
244
+ #: includes/class-wcpdf-settings-general.php:192
245
+ msgid "Extra field 3"
246
+ msgstr "Lisäkenttä 3"
247
+
248
+ #: includes/class-wcpdf-settings-general.php:200
249
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
250
+ msgstr "Tämä on alapalkin sarake 3 <i>Modern (Premium)</i> -sivupohjassa."
251
+
252
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
253
+ msgid "PDF Invoices"
254
+ msgstr "PDF-laskut"
255
+
256
+ #: includes/class-wcpdf-settings.php:58
257
+ msgid "Settings"
258
+ msgstr "Asetukset"
259
+
260
+ #: includes/class-wcpdf-settings.php:71
261
+ msgid "Documentation"
262
+ msgstr ""
263
+
264
+ #: includes/class-wcpdf-settings.php:72
265
+ msgid "Support Forum"
266
+ msgstr ""
267
+
268
+ #: includes/class-wcpdf-settings.php:83
269
+ msgid "General"
270
+ msgstr "Yleiset"
271
+
272
+ #: includes/class-wcpdf-settings.php:89
273
+ msgid "Status"
274
+ msgstr "Tila"
275
+
276
+ #: includes/compatibility/class-wc-core-compatibility.php:222
277
+ msgid "WooCommerce"
278
+ msgstr ""
279
+
280
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
281
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
282
+ msgid "N/A"
283
+ msgstr "-"
284
+
285
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
286
+ msgid "Payment method"
287
+ msgstr "Maksutapa"
288
+
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
290
+ msgid "Shipping method"
291
+ msgstr "Toimitustapa"
292
+
293
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
294
+ #, php-format
295
+ msgid "(includes %s)"
296
+ msgstr ""
297
+
298
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
299
+ #, php-format
300
+ msgid "(Includes %s)"
301
+ msgstr "(Sisältää %s)"
302
+
303
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
304
+ msgid "Subtotal"
305
+ msgstr "Välisumma"
306
+
307
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
308
+ msgid "Shipping"
309
+ msgstr "Toimitus"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
312
+ msgid "Discount"
313
+ msgstr "Alennus"
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
316
+ msgid "VAT"
317
+ msgstr "Arvonlisävero"
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
320
+ msgid "Tax rate"
321
+ msgstr "Veroprosentti"
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
324
+ msgid "Total ex. VAT"
325
+ msgstr "Yhteensä (ei sis. Alv)"
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
328
+ msgid "Total"
329
+ msgstr "Yhteensä"
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document.php:674
332
+ msgid "Admin email"
333
+ msgstr ""
334
+
335
+ #: includes/documents/abstract-wcpdf-order-document.php:677
336
+ msgid "Manual email"
337
+ msgstr ""
338
+
339
+ # This is a filename (prefix). do not use spaces or special characters!
340
+ #: includes/documents/class-wcpdf-invoice.php:85
341
+ msgid "invoice"
342
+ msgid_plural "invoices"
343
+ msgstr[0] "lasku"
344
+ msgstr[1] "laskut"
345
+
346
+ #: includes/documents/class-wcpdf-invoice.php:130
347
+ #: includes/documents/class-wcpdf-packing-slip.php:94
348
+ msgid "Enable"
349
+ msgstr ""
350
+
351
+ #: includes/documents/class-wcpdf-invoice.php:141
352
+ msgid "Attach to:"
353
+ msgstr ""
354
+
355
+ #: includes/documents/class-wcpdf-invoice.php:148
356
+ #, php-format
357
+ msgid ""
358
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
359
+ "permissions for this folder! Without having write access to this folder, the "
360
+ "plugin will not be able to email invoices."
361
+ msgstr ""
362
+ "Näyttää siltä, että temp-tiedosto (<code>%s</code>) on kirjoitussuojattu, "
363
+ "tarkista tiedosto-oikeudet tälle kensiolle. Ilman kirjoitusoikeutta tämä "
364
+ "lisäosa ei pysty lähettämään laskuja sähköpostilla."
365
+
366
+ #: includes/documents/class-wcpdf-invoice.php:154
367
+ msgid "Display shipping address"
368
+ msgstr "Näytä toimitusosoite"
369
+
370
+ #: includes/documents/class-wcpdf-invoice.php:160
371
+ msgid ""
372
+ "Display shipping address (in addition to the default billing address) if "
373
+ "different from billing address"
374
+ msgstr ""
375
+
376
+ #: includes/documents/class-wcpdf-invoice.php:166
377
+ #: includes/documents/class-wcpdf-packing-slip.php:117
378
+ msgid "Display email address"
379
+ msgstr "Näytä sähköpostiosoite"
380
+
381
+ #: includes/documents/class-wcpdf-invoice.php:177
382
+ #: includes/documents/class-wcpdf-packing-slip.php:128
383
+ msgid "Display phone number"
384
+ msgstr "Näytä puhelinnumero"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:188
387
+ msgid "Display invoice date"
388
+ msgstr "Näytä laskun päivämäärä"
389
+
390
+ #: includes/documents/class-wcpdf-invoice.php:200
391
+ msgid "Display invoice number"
392
+ msgstr ""
393
+
394
+ #: includes/documents/class-wcpdf-invoice.php:212
395
+ msgid "Next invoice number (without prefix/suffix etc.)"
396
+ msgstr "Seuraavan laskun numero (ilman etu/takaliitteitä tms.)"
397
+
398
+ #: includes/documents/class-wcpdf-invoice.php:218
399
+ msgid ""
400
+ "This is the number that will be used for the next document. By default, "
401
+ "numbering starts from 1 and increases for every new document. Note that if "
402
+ "you override this and set it lower than the current/highest number, this "
403
+ "could create duplicate numbers!"
404
+ msgstr ""
405
+
406
+ #: includes/documents/class-wcpdf-invoice.php:224
407
+ msgid "Number format"
408
+ msgstr ""
409
+
410
+ #: includes/documents/class-wcpdf-invoice.php:232
411
+ msgid "Prefix"
412
+ msgstr "Etuliite"
413
+
414
+ #: includes/documents/class-wcpdf-invoice.php:234
415
+ msgid ""
416
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
417
+ "respectively"
418
+ msgstr ""
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:237
421
+ msgid "Suffix"
422
+ msgstr "Takaliite"
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:242
425
+ msgid "Padding"
426
+ msgstr "Padding"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:245
429
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
430
+ msgstr "syötä lukujen määrä tähän - syötä 6 näyttääksesi 42 seuraavasti 000042"
431
+
432
+ #: includes/documents/class-wcpdf-invoice.php:248
433
+ msgid ""
434
+ "note: if you have already created a custom invoice number format with a "
435
+ "filter, the above settings will be ignored"
436
+ msgstr ""
437
+ "huomio: jos olet jo luonut räätälöidyn laskun numeron muodon filtterillä, "
438
+ "yllä olevat asetukset ohitetaan"
439
+
440
+ #: includes/documents/class-wcpdf-invoice.php:254
441
+ msgid "Reset invoice number yearly"
442
+ msgstr "Nollaa laskun numero vuosittain"
443
+
444
+ #: includes/documents/class-wcpdf-invoice.php:265
445
+ msgid "Allow My Account invoice download"
446
+ msgstr "Salli laskun lataaminen oman tilin kautta"
447
+
448
+ #: includes/documents/class-wcpdf-invoice.php:272
449
+ msgid "Only when an invoice is already created/emailed"
450
+ msgstr "Ainoastaan kun lasku on luotu/lähetetty"
451
+
452
+ #: includes/documents/class-wcpdf-invoice.php:273
453
+ msgid "Only for specific order statuses (define below)"
454
+ msgstr "Ainoastaan tietyille tilauksen tiloille (määrittele alla)"
455
+
456
+ #: includes/documents/class-wcpdf-invoice.php:274
457
+ msgid "Always"
458
+ msgstr "Aina"
459
+
460
+ #: includes/documents/class-wcpdf-invoice.php:275
461
+ msgid "Never"
462
+ msgstr "Ei koskaan"
463
+
464
+ #: includes/documents/class-wcpdf-invoice.php:290
465
+ msgid "Enable invoice number column in the orders list"
466
+ msgstr "Aktivoi laskun numerot sarake Tilaukset-listalla."
467
+
468
+ #: includes/documents/class-wcpdf-invoice.php:301
469
+ msgid "Disable for free products"
470
+ msgstr "Poista käytöstä ilmaisille tuotteille"
471
+
472
+ #: includes/documents/class-wcpdf-invoice.php:307
473
+ msgid ""
474
+ "Disable automatic creation/attachment when only free products are ordered"
475
+ msgstr ""
476
+
477
+ #: includes/documents/class-wcpdf-invoice.php:321
478
+ msgid "Invoice numbers are created by a third-party extension."
479
+ msgstr ""
480
+
481
+ #: includes/documents/class-wcpdf-invoice.php:323
482
+ #, php-format
483
+ msgid "Configure it <a href=\"%s\">here</a>."
484
+ msgstr ""
485
+
486
+ #: includes/documents/class-wcpdf-packing-slip.php:32
487
+ #: includes/documents/class-wcpdf-packing-slip.php:41
488
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
489
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
490
+ msgid "Packing Slip"
491
+ msgstr "Lähetyslista"
492
+
493
+ # This is a filename (prefix). do not use spaces or special characters!
494
+ #: includes/documents/class-wcpdf-packing-slip.php:53
495
+ msgid "packing-slip"
496
+ msgid_plural "packing-slips"
497
+ msgstr[0] "lähetyslista"
498
+ msgstr[1] "lähetyslistat"
499
+
500
+ #: includes/documents/class-wcpdf-packing-slip.php:105
501
+ msgid "Display billing address"
502
+ msgstr "Näytä laskutusosoite"
503
+
504
+ #: includes/documents/class-wcpdf-packing-slip.php:111
505
+ msgid ""
506
+ "Display billing address (in addition to the default shipping address) if "
507
+ "different from shipping address"
508
+ msgstr ""
509
+
510
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
511
+ msgid "Legacy Document"
512
+ msgstr ""
513
+
514
+ #: includes/views/wcpdf-extensions.php:15
515
+ msgid "Check out these premium extensions!"
516
+ msgstr "Tarkastele Premium laajennuksia"
517
+
518
+ #: includes/views/wcpdf-extensions.php:16
519
+ msgid "click items to read more"
520
+ msgstr "Klikkaa lisätietoja"
521
+
522
+ #: includes/views/wcpdf-extensions.php:21
523
+ msgid ""
524
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
525
+ "system"
526
+ msgstr ""
527
+
528
+ #: includes/views/wcpdf-extensions.php:23
529
+ msgid ""
530
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
531
+ "premium extensions:"
532
+ msgstr ""
533
+
534
+ #: includes/views/wcpdf-extensions.php:24
535
+ msgid "Professional features:"
536
+ msgstr ""
537
+
538
+ #: includes/views/wcpdf-extensions.php:26
539
+ #: includes/views/wcpdf-extensions.php:56
540
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
541
+ msgstr "Sähköposti/tulosta/lataa <b>PDF hyvityslaskut & Pro forma laskut</b>"
542
+
543
+ #: includes/views/wcpdf-extensions.php:27
544
+ #: includes/views/wcpdf-extensions.php:57
545
+ msgid ""
546
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
547
+ "packing slips, for example to a drop-shipper or a supplier."
548
+ msgstr ""
549
+ "Lähetä erillinen huomautussähköposti joko PDF laskulla/lähetyslistalla tai "
550
+ "ilman, esim. tavarantoimittajalle."
551
+
552
+ #: includes/views/wcpdf-extensions.php:28
553
+ #: includes/views/wcpdf-extensions.php:58
554
+ msgid ""
555
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
556
+ "document) to the WooCommerce emails of your choice."
557
+ msgstr ""
558
+ "Lisää korkeintaan 3 staattista tiedostoa (kuten esim. toimitusehdot) "
559
+ "WooCommercen sähköposteihin, jotka voit itse valita."
560
+
561
+ #: includes/views/wcpdf-extensions.php:29
562
+ #: includes/views/wcpdf-extensions.php:59
563
+ msgid ""
564
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
565
+ "and credit notes or utilize the main invoice numbering system"
566
+ msgstr ""
567
+ "Käytä erillistä numerointia ja/tai formaattia pro forma laskuille ja "
568
+ "hyvityslaskuille tai määrittele päätoiminen numerointijärjestelmä"
569
+
570
+ #: includes/views/wcpdf-extensions.php:30
571
+ #: includes/views/wcpdf-extensions.php:60
572
+ msgid ""
573
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
574
+ "additional custom fields, font sizes etc. without the need to create a "
575
+ "custom template."
576
+ msgstr ""
577
+ "Muokkaa toimitus- ja laskutusosoitetta lisätäksesi lisäkenttiä tai fontin "
578
+ "kokoa suoraan ilman erillisen sivupohjan luomista."
579
+
580
+ #: includes/views/wcpdf-extensions.php:31
581
+ #: includes/views/wcpdf-extensions.php:61
582
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
583
+ msgstr "Käytä lisäosaa monikielisenä"
584
+
585
+ #: includes/views/wcpdf-extensions.php:33
586
+ #: includes/views/wcpdf-extensions.php:131
587
+ msgid "Advanced, customizable templates"
588
+ msgstr "Kehittyneet, muokattavat sivupohjat"
589
+
590
+ #: includes/views/wcpdf-extensions.php:35
591
+ #: includes/views/wcpdf-extensions.php:134
592
+ msgid ""
593
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
594
+ "your needs with a drag & drop customizer"
595
+ msgstr ""
596
+ "Muokkaa täydellisesti laskun sisältöä tarpeitasi varten drag & drop "
597
+ "muokkaimella"
598
+
599
+ #: includes/views/wcpdf-extensions.php:36
600
+ #: includes/views/wcpdf-extensions.php:135
601
+ msgid "Two extra stylish premade templates (Modern & Business)"
602
+ msgstr "Kaksi tyylikästä valmista sivupohjaa (Moderni ja Business)"
603
+
604
+ #: includes/views/wcpdf-extensions.php:38
605
+ msgid "Upload automatically to dropbox"
606
+ msgstr ""
607
+
608
+ #: includes/views/wcpdf-extensions.php:40
609
+ #: includes/views/wcpdf-extensions.php:97
610
+ msgid ""
611
+ "This extension conveniently uploads all the invoices (and other pdf "
612
+ "documents from the professional extension) that are emailed to your "
613
+ "customers to Dropbox. The best way to keep your invoice administration up to "
614
+ "date!"
615
+ msgstr "Tämä laajennus lähettää kaikki laskusi Dropbox tilillesi."
616
+
617
+ #: includes/views/wcpdf-extensions.php:43
618
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
619
+ msgstr ""
620
+
621
+ #: includes/views/wcpdf-extensions.php:52
622
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
623
+ msgstr "Valitse Pro versio: Pro forma laskut, hyvityslaskut ja paljon muuta!"
624
+
625
+ #: includes/views/wcpdf-extensions.php:54
626
+ msgid ""
627
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
628
+ "features:"
629
+ msgstr ""
630
+ "Täydennä WooCommerce PDF laskut & lähetyslistat seuraavilla ominaisuuksilla:"
631
+
632
+ #: includes/views/wcpdf-extensions.php:63
633
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
634
+ msgstr "Hanki WooCommerce laskut & lähetyslistat Pro versio!"
635
+
636
+ #: includes/views/wcpdf-extensions.php:71
637
+ msgid "Automatically send payment reminders to your customers"
638
+ msgstr ""
639
+
640
+ #: includes/views/wcpdf-extensions.php:73
641
+ msgid "WooCommerce Smart Reminder emails"
642
+ msgstr ""
643
+
644
+ #: includes/views/wcpdf-extensions.php:75
645
+ msgid "<b>Completely automatic</b> scheduled emails"
646
+ msgstr ""
647
+
648
+ #: includes/views/wcpdf-extensions.php:76
649
+ msgid ""
650
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
651
+ "from the order (name, order total, etc)"
652
+ msgstr ""
653
+
654
+ #: includes/views/wcpdf-extensions.php:77
655
+ msgid ""
656
+ "Configure the exact requirements for sending an email (time after order, "
657
+ "order status, payment method)"
658
+ msgstr ""
659
+
660
+ #: includes/views/wcpdf-extensions.php:78
661
+ msgid ""
662
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
663
+ "order language."
664
+ msgstr ""
665
+
666
+ #: includes/views/wcpdf-extensions.php:79
667
+ msgid ""
668
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
669
+ "reminders, repeat purchases)"
670
+ msgstr ""
671
+
672
+ #: includes/views/wcpdf-extensions.php:80
673
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
674
+ msgstr ""
675
+
676
+ #: includes/views/wcpdf-extensions.php:82
677
+ msgid "Get WooCommerce Smart Reminder Emails"
678
+ msgstr ""
679
+
680
+ #: includes/views/wcpdf-extensions.php:91
681
+ msgid "Upload all invoices automatically to your dropbox"
682
+ msgstr "Lähetä kaikki laskut automaattisesti dropbox tilillesi"
683
+
684
+ #: includes/views/wcpdf-extensions.php:98
685
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
686
+ msgstr "Hanki WooCommerce PDF laskut & lähetyslistat Dropbox laajennus!"
687
+
688
+ #: includes/views/wcpdf-extensions.php:110
689
+ msgid ""
690
+ "Automatically send new orders or packing slips to your printer, as soon as "
691
+ "the customer orders!"
692
+ msgstr "Lähetä automaattisesti tilaukset tai lähetyslistat tulostimelle."
693
+
694
+ #: includes/views/wcpdf-extensions.php:116
695
+ msgid ""
696
+ "Check out the WooCommerce Automatic Order Printing extension from our "
697
+ "partners at Simba Hosting"
698
+ msgstr ""
699
+ "Katso WooCommerce Automaattinen Tulostus laajennus yhteistyökumppaniltamme "
700
+ "Simba Hostingilla"
701
+
702
+ #: includes/views/wcpdf-extensions.php:117
703
+ msgid "WooCommerce Automatic Order Printing"
704
+ msgstr "WooCommerce Automaattinen Tilauksen Tulostus"
705
+
706
+ #: includes/views/wcpdf-extensions.php:136
707
+ #, php-format
708
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
709
+ msgstr "Katso Premium PDF lasku & lähetyslistat sivupohjat osoitteessa: %s."
710
+
711
+ #: includes/views/wcpdf-extensions.php:137
712
+ #, php-format
713
+ msgid "For custom templates, contact us at %s."
714
+ msgstr "Haluatko räätälöidyt sivupohjat, ota yhteyttä meihin osoitteessa %s."
715
+
716
+ #: includes/views/wcpdf-extensions.php:146
717
+ msgid "Hide this message"
718
+ msgstr ""
719
+
720
+ #: includes/views/wcpdf-settings-page.php:8
721
+ msgid "WooCommerce PDF Invoices"
722
+ msgstr "WooCommerce PDF-laskut"
723
+
724
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
725
+ msgid "Billing Address:"
726
+ msgstr "Laskutusosoite:"
727
+
728
+ #: templates/Simple/invoice.php:41
729
+ msgid "Ship To:"
730
+ msgstr "Toimitetaan:"
731
+
732
+ #: templates/Simple/invoice.php:50
733
+ msgid "Invoice Number:"
734
+ msgstr "Laskun numero:"
735
+
736
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
737
+ msgid "Order Number:"
738
+ msgstr "Tilauksen numero:"
739
+
740
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
741
+ msgid "Order Date:"
742
+ msgstr "Tilauksen päiväys:"
743
+
744
+ #: templates/Simple/invoice.php:69
745
+ msgid "Payment Method:"
746
+ msgstr "Maksutapa:"
747
+
748
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
749
+ msgid "Product"
750
+ msgstr "Tuote"
751
+
752
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
753
+ msgid "Quantity"
754
+ msgstr "Määrä"
755
+
756
+ #: templates/Simple/invoice.php:85
757
+ msgid "Price"
758
+ msgstr "Hinta"
759
+
760
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
761
+ msgid "Description"
762
+ msgstr "Kuvaus"
763
+
764
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
765
+ msgid "SKU"
766
+ msgstr "Tuotekoodi"
767
+
768
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
769
+ msgid "SKU:"
770
+ msgstr "Tuotekoodi:"
771
+
772
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
773
+ msgid "Weight:"
774
+ msgstr "Paino:"
775
+
776
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
777
+ msgid "Customer Notes"
778
+ msgstr "Asiakkaan huomiot"
779
+
780
+ #: templates/Simple/packing-slip.php:30
781
+ msgid "Shipping Address:"
782
+ msgstr "Toimitusosoite:"
783
+
784
+ #: templates/Simple/packing-slip.php:57
785
+ msgid "Shipping Method:"
786
+ msgstr "Toimitustapa:"
787
+
788
+ #: woocommerce-pdf-invoices-packingslips.php:231
789
+ #, php-format
790
+ msgid ""
791
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
792
+ "installed & activated!"
793
+ msgstr ""
794
+ "WooCommerce PDF Invoices & Packing Slips edellyttää %sWooCommerce%s -"
795
+ "asennusta ja aktivointia!"
796
+
797
+ #: woocommerce-pdf-invoices-packingslips.php:243
798
+ msgid ""
799
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
800
+ "higher recommended)."
801
+ msgstr ""
802
+
803
+ #: woocommerce-pdf-invoices-packingslips.php:244
804
+ msgid "How to update your PHP version"
805
+ msgstr ""
806
+
807
+ #~ msgid "Attach invoice to:"
808
+ #~ msgstr "Liitä lasku:"
809
+
810
+ #~ msgid ""
811
+ #~ "Display shipping address on invoice (in addition to the default billing "
812
+ #~ "address) if different from billing address"
813
+ #~ msgstr "Näytä toimitusosoite laskulla, jos eri kuin laskutusosoite"
814
+
815
+ #~ msgid ""
816
+ #~ "This is the number that will be used on the next invoice that is created. "
817
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
818
+ #~ "first invoice that is created and increases for every new invoice. Note "
819
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
820
+ #~ "number, this could create double invoice numbers!"
821
+ #~ msgstr ""
822
+ #~ "Tmä numero näytetään seuraavassa laskussa, joka luodaan. Oletusarvoisesti "
823
+ #~ "numerointi alkaa ensimmäisen tilauksen, jolle lasku luodaan, WooCommercen "
824
+ #~ "tilausnumerosta. Laskunumerot jatkuvat tästä eteenpäin juoksevasti, eli "
825
+ #~ "kasvavat aina yhdellä. Huomioithan, että jos ohitat tämän asetukset ja "
826
+ #~ "asetat sen alemmaksi kuin ylin (PDF) laskunumero, saattaa esiintyä kaksi "
827
+ #~ "identtistä laskunnumeroa. Suosittelemme, että asetukseen ei kosketa."
828
+
829
+ #~ msgid "Invoice number format"
830
+ #~ msgstr "Laskun numeron muoto"
831
+
832
+ #~ msgid ""
833
+ #~ "Disable automatic creation/attachment of invoices when only free products "
834
+ #~ "are ordered"
835
+ #~ msgstr ""
836
+ #~ "Poista käytöstä automaattinen laskujen luonti kun tilauksessa on "
837
+ #~ "ainoastaan ilmaisia tuotteita"
838
+
839
+ #~ msgid ""
840
+ #~ "Display billing address on packing slip (in addition to the default "
841
+ #~ "shipping address) if different from shipping address"
842
+ #~ msgstr ""
843
+ #~ "Näytä laskutusosoite lähetyslistassa jos osoite poikkeaa "
844
+ #~ "toimitusosoitteesta"
845
+
846
+ #~ msgid "Template"
847
+ #~ msgstr "Sivupohja"
848
+
849
+ #~ msgid "Admin New Order email"
850
+ #~ msgstr "Ylläpitäjän ‘Uusi tilaus’-viesti"
851
+
852
+ #~ msgid "Customer Processing Order email"
853
+ #~ msgstr "Asiakkaan ‘Tilaus on käsittelyssä’-sähköposti"
854
+
855
+ #~ msgid "Customer Completed Order email"
856
+ #~ msgstr "Asiakkaan ‘Tilaus valmis’-sähköposti"
857
+
858
+ #~ msgid "Customer Invoice email"
859
+ #~ msgstr "Asiakkaan ‘Lasku’-sähköposti"
860
+
861
+ #~ msgid "Interface"
862
+ #~ msgstr "Ulkoasu"
863
+
864
+ #~ msgid "PDF Template settings"
865
+ #~ msgstr "PDF-sivupohjan asetukset"
866
+
867
+ #~ msgid "Display built-in sequential invoice number"
868
+ #~ msgstr "Näytä sisäänrakennettu peräkkäinen laskun numero"
869
+
870
+ #~ msgid ""
871
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
872
+ #~ "respectively"
873
+ #~ msgstr ""
874
+ #~ "käyttääksesi vuotta ja/tai kuukautta, käytä [order_year] tai "
875
+ #~ "[order_month] tarvittaessa"
876
+
877
+ #~ msgid "Use old tmp folder"
878
+ #~ msgstr "Käytä vanhaa tilapäishakemistoa"
879
+
880
+ #~ msgid ""
881
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
882
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
883
+ #~ "not recommended on new installs!"
884
+ #~ msgstr ""
885
+ #~ "Ennen versiota 1.5 väliaikaistiedostot säilöttiin lisäosan hakemistoon. "
886
+ #~ "Tämä asetus on tarkoitettu yhteensopivuus tarkoituksessa vanhoille "
887
+ #~ "versioille, ei uusille versiolle!"
888
+
889
+ #~ msgid "PDF Packing Slips"
890
+ #~ msgstr "PDF-lähetyslistat"
891
+
892
+ #~ msgid "PDF Invoice"
893
+ #~ msgstr "PDF lasku"
894
+
895
+ #~ msgid "PDF Packing Slip"
896
+ #~ msgstr "PDF-lähetyslista"
897
+
898
+ #~ msgid ""
899
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
900
+ #~ "extension."
901
+ #~ msgstr ""
902
+ #~ "Lataa kaikki laskut automaattisesti Dropbox-tiliisi!<br/>Tutustu %s -"
903
+ #~ "lisäosaan."
904
+
905
+ #~ msgid ""
906
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
907
+ #~ "Packing Slips templates at %s."
908
+ #~ msgstr ""
909
+ #~ "Etsitkö edistyneempiä sivupohjia? Tutustu Premium PDF Invoice & Packing "
910
+ #~ "Slips -sivupohjiin osoitteessa %s."
911
+
912
+ #~ msgid ""
913
+ #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
914
+ #~ "<code>%s</code> to customize them"
915
+ #~ msgstr ""
916
+ #~ "Haluatko käyttää omaa sivupohjaasi? Kopioi kaikki tiedostot kansiosta, "
917
+ #~ "<code>%s</code> kansioon, <code>%s</code> muokataksesi niitä."
918
+
919
+ #~ msgid "Number to display on invoice"
920
+ #~ msgstr "Laskun numero"
921
+
922
+ #~ msgid "WooCommerce order number"
923
+ #~ msgstr "WooCommerce tilausnumero"
924
+
925
+ #~ msgid "Built-in sequential invoice number"
926
+ #~ msgstr "Sisäänrakennettu juokseva laskunnumero"
927
+
928
+ #~ msgid ""
929
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
930
+ #~ "the WooCommerce order number"
931
+ #~ msgstr ""
932
+ #~ "Jos käytät WooCommerce Sequential Order Numbers -lisäosaa, valitse "
933
+ #~ "WooCommerce tilausnumero."
934
+
935
+ #~ msgid "Date to display on invoice"
936
+ #~ msgstr "Laskulla näytettävä päivämäärä"
937
+
938
+ #~ msgid "Order date"
939
+ #~ msgstr "Tilauksen päiväys"
940
+
941
+ #~ msgid "Invoice date"
942
+ #~ msgstr "Laskun päiväys"
943
+
944
+ #~ msgid "PDF invoice"
945
+ #~ msgstr "PDF-laskut"
946
+
947
+ #~ msgid "PDF Invoice Number (unformatted!)"
948
+ #~ msgstr "PDF laskunnumero (ei muotoiltu!)"
languages/woocommerce-pdf-invoices-packing-slips-fr_FR.po CHANGED
@@ -1,969 +1,969 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
6
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
7
- "Last-Translator: Serge Labrosse <serge.labrosse@gmail.com>\n"
8
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
- "Language: fr_FR\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.8.12\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\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "X-Textdomain-Support: yes\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
-
22
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
23
- msgid "Invoice Number"
24
- msgstr "Numéro de facture"
25
-
26
- #: includes/class-wcpdf-admin.php:105
27
- msgid "Create PDF"
28
- msgstr "Créer un PDF"
29
-
30
- #: includes/class-wcpdf-admin.php:115
31
- msgid "PDF Invoice data"
32
- msgstr "Données de Facture PDF"
33
-
34
- #: includes/class-wcpdf-admin.php:166
35
- #: includes/documents/class-wcpdf-invoice.php:32
36
- #: includes/documents/class-wcpdf-invoice.php:41
37
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
38
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
39
- msgid "Invoice"
40
- msgstr "Facture"
41
-
42
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
43
- #: templates/Simple/invoice.php:56
44
- msgid "Invoice Date:"
45
- msgstr "Date de la facture :"
46
-
47
- #: includes/class-wcpdf-admin.php:189
48
- msgid "Set invoice number & date"
49
- msgstr ""
50
-
51
- #: includes/class-wcpdf-admin.php:196
52
- msgid "Invoice Number (unformatted!)"
53
- msgstr "Numéro de facture (non formaté !)"
54
-
55
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
56
- msgid "h"
57
- msgstr "h"
58
-
59
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
60
- msgid "m"
61
- msgstr "m"
62
-
63
- #: includes/class-wcpdf-frontend.php:55
64
- msgid "Download invoice (PDF)"
65
- msgstr "Télécharger la facture (PDF)"
66
-
67
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
68
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
69
- msgid "You do not have sufficient permissions to access this page."
70
- msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
71
-
72
- #: includes/class-wcpdf-main.php:141
73
- msgid "Some of the export parameters are missing."
74
- msgstr "Certains paramètres d'exportation sont manquants."
75
-
76
- #: includes/class-wcpdf-settings-callbacks.php:27
77
- msgid ""
78
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
79
- "Do not use them on a live website!"
80
- msgstr ""
81
- "<b>Attention!</b> Les paramètres ci-dessous ne sont là que pour le débogage/"
82
- "développement. Ne pas les utiliser sur un site web en production!"
83
-
84
- #: includes/class-wcpdf-settings-callbacks.php:36
85
- msgid ""
86
- "These are used for the (optional) footer columns in the <em>Modern "
87
- "(Premium)</em> template, but can also be used for other elements in your "
88
- "custom template"
89
- msgstr ""
90
- "Ceux-ci sont utilisés pour les colonnes de pied de page (optionnelles) dans "
91
- "le modèle <em>Modern (Premium)</em>, mais ils peuvent aussi être utilisés "
92
- "pour d'autres éléments dans votre modèle personnalisé."
93
-
94
- #: includes/class-wcpdf-settings-callbacks.php:301
95
- msgid "Image resolution"
96
- msgstr "Résolution de l'image"
97
-
98
- #: includes/class-wcpdf-settings-callbacks.php:325
99
- msgid "Save"
100
- msgstr ""
101
-
102
- #: includes/class-wcpdf-settings-debug.php:34
103
- msgid "Debug settings"
104
- msgstr "Paramètres de débogage"
105
-
106
- #: includes/class-wcpdf-settings-debug.php:40
107
- msgid "Legacy mode"
108
- msgstr ""
109
-
110
- #: includes/class-wcpdf-settings-debug.php:46
111
- msgid ""
112
- "Legacy mode ensures compatibility with templates and filters from previous "
113
- "versions."
114
- msgstr ""
115
-
116
- #: includes/class-wcpdf-settings-debug.php:52
117
- msgid "Enable debug output"
118
- msgstr "Activer les résultats de débug"
119
-
120
- #: includes/class-wcpdf-settings-debug.php:58
121
- msgid ""
122
- "Enable this option to output plugin errors if you're getting a blank page or "
123
- "other PDF generation issues"
124
- msgstr ""
125
- "Activer cette option pour publier les erreurs du plugin tel que si obtenez "
126
- "une page blanche ou des problèmes de génération de PDF"
127
-
128
- #: includes/class-wcpdf-settings-debug.php:64
129
- msgid "Output to HTML"
130
- msgstr "Résultats en HTML"
131
-
132
- #: includes/class-wcpdf-settings-debug.php:70
133
- msgid ""
134
- "Send the template output as HTML to the browser instead of creating a PDF."
135
- msgstr ""
136
- "Envoyer un modèle de résultats en HTML dans le navigateur au lieu de créer "
137
- "un PDF"
138
-
139
- #: includes/class-wcpdf-settings-documents.php:29
140
- #: includes/class-wcpdf-settings.php:84
141
- msgid "Documents"
142
- msgstr ""
143
-
144
- #: includes/class-wcpdf-settings-documents.php:45
145
- msgid ""
146
- "All available documents are listed below. Click on a document to configure "
147
- "it."
148
- msgstr ""
149
-
150
- #: includes/class-wcpdf-settings-general.php:37
151
- msgid "General settings"
152
- msgstr "Paramètres généraux"
153
-
154
- #: includes/class-wcpdf-settings-general.php:43
155
- msgid "How do you want to view the PDF?"
156
- msgstr "Comment voulez-vous voir le PDF?"
157
-
158
- #: includes/class-wcpdf-settings-general.php:50
159
- msgid "Download the PDF"
160
- msgstr "Télécharger le PDF"
161
-
162
- #: includes/class-wcpdf-settings-general.php:51
163
- msgid "Open the PDF in a new browser tab/window"
164
- msgstr ""
165
- "Ouvrir le PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur."
166
-
167
- #: includes/class-wcpdf-settings-general.php:58
168
- msgid "Choose a template"
169
- msgstr "Sélectionnez un modèle"
170
-
171
- #: includes/class-wcpdf-settings-general.php:65
172
- #, php-format
173
- msgid ""
174
- "Want to use your own template? Copy all the files from <code>%s</code> to "
175
- "your (child) theme in <code>%s</code> to customize them"
176
- msgstr ""
177
- "Vous souhaitez utiliser votre propre modèle ? Copiez tous les fichiers "
178
- "situés dans <code>%s</code> vers votre thème (enfant) dans <code>%s</code> "
179
- "pour les customiser"
180
-
181
- #: includes/class-wcpdf-settings-general.php:71
182
- msgid "Paper size"
183
- msgstr "Taille du papier"
184
-
185
- #: includes/class-wcpdf-settings-general.php:78
186
- msgid "A4"
187
- msgstr "A4"
188
-
189
- #: includes/class-wcpdf-settings-general.php:79
190
- msgid "Letter"
191
- msgstr "Lettre"
192
-
193
- #: includes/class-wcpdf-settings-general.php:86
194
- msgid "Extended currency symbol support"
195
- msgstr ""
196
-
197
- #: includes/class-wcpdf-settings-general.php:92
198
- msgid "Enable this if your currency symbol is not displaying properly"
199
- msgstr ""
200
-
201
- #: includes/class-wcpdf-settings-general.php:98
202
- msgid "Shop header/logo"
203
- msgstr "En-tête de la boutique/logo"
204
-
205
- #: includes/class-wcpdf-settings-general.php:104
206
- msgid "Select or upload your invoice header/logo"
207
- msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
208
-
209
- #: includes/class-wcpdf-settings-general.php:105
210
- msgid "Set image"
211
- msgstr "Choisir une autre image"
212
-
213
- #: includes/class-wcpdf-settings-general.php:106
214
- msgid "Remove image"
215
- msgstr "Supprimer l'image"
216
-
217
- #: includes/class-wcpdf-settings-general.php:113
218
- msgid "Shop Name"
219
- msgstr "Nom de la boutique"
220
-
221
- #: includes/class-wcpdf-settings-general.php:126
222
- msgid "Shop Address"
223
- msgstr "Adresse de la boutique"
224
-
225
- #: includes/class-wcpdf-settings-general.php:141
226
- msgid "Footer: terms & conditions, policies, etc."
227
- msgstr "Pied de page : conditions générales de ventes, etc."
228
-
229
- #: includes/class-wcpdf-settings-general.php:156
230
- msgid "Extra template fields"
231
- msgstr "Champs supplémentaires du modèle"
232
-
233
- #: includes/class-wcpdf-settings-general.php:162
234
- msgid "Extra field 1"
235
- msgstr "Champ supplémentaire 1"
236
-
237
- #: includes/class-wcpdf-settings-general.php:170
238
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
- msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
240
-
241
- #: includes/class-wcpdf-settings-general.php:177
242
- msgid "Extra field 2"
243
- msgstr "Champ supplémentaire 2"
244
-
245
- #: includes/class-wcpdf-settings-general.php:185
246
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
247
- msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
248
-
249
- #: includes/class-wcpdf-settings-general.php:192
250
- msgid "Extra field 3"
251
- msgstr "Champ supplémentaire 3"
252
-
253
- #: includes/class-wcpdf-settings-general.php:200
254
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
255
- msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
256
-
257
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
258
- msgid "PDF Invoices"
259
- msgstr "Générer les factures au format PDF"
260
-
261
- #: includes/class-wcpdf-settings.php:58
262
- msgid "Settings"
263
- msgstr "Paramètres"
264
-
265
- #: includes/class-wcpdf-settings.php:71
266
- msgid "Documentation"
267
- msgstr ""
268
-
269
- #: includes/class-wcpdf-settings.php:72
270
- msgid "Support Forum"
271
- msgstr ""
272
-
273
- #: includes/class-wcpdf-settings.php:83
274
- msgid "General"
275
- msgstr "Général"
276
-
277
- #: includes/class-wcpdf-settings.php:89
278
- msgid "Status"
279
- msgstr "État"
280
-
281
- #: includes/compatibility/class-wc-core-compatibility.php:222
282
- msgid "WooCommerce"
283
- msgstr ""
284
-
285
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
286
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
287
- msgid "N/A"
288
- msgstr "N/A"
289
-
290
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
291
- msgid "Payment method"
292
- msgstr "Méthode de paiement"
293
-
294
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
295
- msgid "Shipping method"
296
- msgstr "Méthode de livraison"
297
-
298
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
299
- #, php-format
300
- msgid "(includes %s)"
301
- msgstr ""
302
-
303
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
304
- #, php-format
305
- msgid "(Includes %s)"
306
- msgstr "(Inclus %s)"
307
-
308
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
309
- msgid "Subtotal"
310
- msgstr "Sous-total"
311
-
312
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
313
- msgid "Shipping"
314
- msgstr "Livraison"
315
-
316
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
317
- msgid "Discount"
318
- msgstr "Remise"
319
-
320
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
321
- msgid "VAT"
322
- msgstr "TVA"
323
-
324
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
325
- msgid "Tax rate"
326
- msgstr "Taux de taxe (%)"
327
-
328
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
329
- msgid "Total ex. VAT"
330
- msgstr "Total H.T."
331
-
332
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
333
- msgid "Total"
334
- msgstr "Total"
335
-
336
- #: includes/documents/abstract-wcpdf-order-document.php:674
337
- msgid "Admin email"
338
- msgstr ""
339
-
340
- #: includes/documents/abstract-wcpdf-order-document.php:677
341
- msgid "Manual email"
342
- msgstr ""
343
-
344
- # This is a filename (prefix). do not use spaces or special characters!
345
- #: includes/documents/class-wcpdf-invoice.php:85
346
- msgid "invoice"
347
- msgid_plural "invoices"
348
- msgstr[0] "facture"
349
- msgstr[1] "factures"
350
-
351
- #: includes/documents/class-wcpdf-invoice.php:130
352
- #: includes/documents/class-wcpdf-packing-slip.php:94
353
- msgid "Enable"
354
- msgstr ""
355
-
356
- #: includes/documents/class-wcpdf-invoice.php:141
357
- msgid "Attach to:"
358
- msgstr ""
359
-
360
- #: includes/documents/class-wcpdf-invoice.php:148
361
- #, php-format
362
- msgid ""
363
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
364
- "permissions for this folder! Without having write access to this folder, the "
365
- "plugin will not be able to email invoices."
366
- msgstr ""
367
- "Le dossier temporaire (<code>%s</code>) ne semble pas modifiable, vérifiez "
368
- "vos permissions pour ce dossier! Sans l'autorisation d'écriture dans ce "
369
- "dossier, le plugin ne pourra pas envoyer les factures par e-mail."
370
-
371
- #: includes/documents/class-wcpdf-invoice.php:154
372
- msgid "Display shipping address"
373
- msgstr "Afficher l'adresse de livraison"
374
-
375
- #: includes/documents/class-wcpdf-invoice.php:160
376
- msgid ""
377
- "Display shipping address (in addition to the default billing address) if "
378
- "different from billing address"
379
- msgstr ""
380
-
381
- #: includes/documents/class-wcpdf-invoice.php:166
382
- #: includes/documents/class-wcpdf-packing-slip.php:117
383
- msgid "Display email address"
384
- msgstr "Afficher l'adresse email"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:177
387
- #: includes/documents/class-wcpdf-packing-slip.php:128
388
- msgid "Display phone number"
389
- msgstr "Afficher le numéro de téléphone"
390
-
391
- #: includes/documents/class-wcpdf-invoice.php:188
392
- msgid "Display invoice date"
393
- msgstr "Afficher la date de la facture"
394
-
395
- #: includes/documents/class-wcpdf-invoice.php:200
396
- msgid "Display invoice number"
397
- msgstr ""
398
-
399
- #: includes/documents/class-wcpdf-invoice.php:212
400
- msgid "Next invoice number (without prefix/suffix etc.)"
401
- msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
402
-
403
- #: includes/documents/class-wcpdf-invoice.php:218
404
- msgid ""
405
- "This is the number that will be used for the next document. By default, "
406
- "numbering starts from 1 and increases for every new document. Note that if "
407
- "you override this and set it lower than the current/highest number, this "
408
- "could create duplicate numbers!"
409
- msgstr ""
410
-
411
- #: includes/documents/class-wcpdf-invoice.php:224
412
- msgid "Number format"
413
- msgstr ""
414
-
415
- #: includes/documents/class-wcpdf-invoice.php:232
416
- msgid "Prefix"
417
- msgstr "Préfixe"
418
-
419
- #: includes/documents/class-wcpdf-invoice.php:234
420
- msgid ""
421
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
422
- "respectively"
423
- msgstr ""
424
-
425
- #: includes/documents/class-wcpdf-invoice.php:237
426
- msgid "Suffix"
427
- msgstr "Suffixe"
428
-
429
- #: includes/documents/class-wcpdf-invoice.php:242
430
- msgid "Padding"
431
- msgstr "Décalage"
432
-
433
- #: includes/documents/class-wcpdf-invoice.php:245
434
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
435
- msgstr ""
436
- "entrez le nombre de chiffres ici - entrez\"6\" pour que 42 s'affiche 000042"
437
-
438
- #: includes/documents/class-wcpdf-invoice.php:248
439
- msgid ""
440
- "note: if you have already created a custom invoice number format with a "
441
- "filter, the above settings will be ignored"
442
- msgstr ""
443
- "note: si vous avez déjà créé un format de numéro de facture personnalisé "
444
- "avec un filtre, les réglages ci-dessus seront ignorés"
445
-
446
- #: includes/documents/class-wcpdf-invoice.php:254
447
- msgid "Reset invoice number yearly"
448
- msgstr ""
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:265
451
- msgid "Allow My Account invoice download"
452
- msgstr ""
453
- "Autoriser le téléchargement des factures à partir de l'interface \"Mon compte"
454
- "\""
455
-
456
- #: includes/documents/class-wcpdf-invoice.php:272
457
- msgid "Only when an invoice is already created/emailed"
458
- msgstr "Seulement lorsque la facture est déjà créée/envoyée par email"
459
-
460
- #: includes/documents/class-wcpdf-invoice.php:273
461
- msgid "Only for specific order statuses (define below)"
462
- msgstr "Uniquement pour les statuts de commandes suivants"
463
-
464
- #: includes/documents/class-wcpdf-invoice.php:274
465
- msgid "Always"
466
- msgstr "Toujours"
467
-
468
- #: includes/documents/class-wcpdf-invoice.php:275
469
- msgid "Never"
470
- msgstr "Jamais"
471
-
472
- #: includes/documents/class-wcpdf-invoice.php:290
473
- msgid "Enable invoice number column in the orders list"
474
- msgstr "Activer la colonne du numéro de facture dans la liste de commande"
475
-
476
- #: includes/documents/class-wcpdf-invoice.php:301
477
- msgid "Disable for free products"
478
- msgstr "Désactiver pour les produits gratuits"
479
-
480
- #: includes/documents/class-wcpdf-invoice.php:307
481
- msgid ""
482
- "Disable automatic creation/attachment when only free products are ordered"
483
- msgstr ""
484
-
485
- #: includes/documents/class-wcpdf-invoice.php:321
486
- msgid "Invoice numbers are created by a third-party extension."
487
- msgstr ""
488
-
489
- #: includes/documents/class-wcpdf-invoice.php:323
490
- #, php-format
491
- msgid "Configure it <a href=\"%s\">here</a>."
492
- msgstr ""
493
-
494
- #: includes/documents/class-wcpdf-packing-slip.php:32
495
- #: includes/documents/class-wcpdf-packing-slip.php:41
496
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
497
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
498
- msgid "Packing Slip"
499
- msgstr "Bon de livraison"
500
-
501
- # This is a filename (prefix). do not use spaces or special characters!
502
- #: includes/documents/class-wcpdf-packing-slip.php:53
503
- msgid "packing-slip"
504
- msgid_plural "packing-slips"
505
- msgstr[0] "bon-de-livraison"
506
- msgstr[1] "bons-de-livraison"
507
-
508
- #: includes/documents/class-wcpdf-packing-slip.php:105
509
- msgid "Display billing address"
510
- msgstr "Afficher l'adresse de facturation"
511
-
512
- #: includes/documents/class-wcpdf-packing-slip.php:111
513
- msgid ""
514
- "Display billing address (in addition to the default shipping address) if "
515
- "different from shipping address"
516
- msgstr ""
517
-
518
- #: includes/legacy/class-wcpdf-legacy-document.php:32
519
- msgid "Legacy Document"
520
- msgstr ""
521
-
522
- #: includes/views/wcpdf-extensions.php:15
523
- msgid "Check out these premium extensions!"
524
- msgstr "Découvrez ces extensions premium!"
525
-
526
- #: includes/views/wcpdf-extensions.php:16
527
- msgid "click items to read more"
528
- msgstr "Cliquez sur les articles pour en savoir plus"
529
-
530
- #: includes/views/wcpdf-extensions.php:21
531
- msgid ""
532
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
533
- "system"
534
- msgstr ""
535
-
536
- #: includes/views/wcpdf-extensions.php:23
537
- msgid ""
538
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
539
- "premium extensions:"
540
- msgstr ""
541
-
542
- #: includes/views/wcpdf-extensions.php:24
543
- msgid "Professional features:"
544
- msgstr ""
545
-
546
- #: includes/views/wcpdf-extensions.php:26
547
- #: includes/views/wcpdf-extensions.php:56
548
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
549
- msgstr "Envoyer/imprimer/télécharger les <b> Avoirs et Devis PDF</b>"
550
-
551
- #: includes/views/wcpdf-extensions.php:27
552
- #: includes/views/wcpdf-extensions.php:57
553
- msgid ""
554
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
555
- "packing slips, for example to a drop-shipper or a supplier."
556
- msgstr ""
557
- "Envoyer séparément <b>la notification email</b> avec (ou sans) PDF invoices/"
558
- "packing slips, par exemple à un transporteur ou un fournisseur."
559
-
560
- #: includes/views/wcpdf-extensions.php:28
561
- #: includes/views/wcpdf-extensions.php:58
562
- msgid ""
563
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
564
- "document) to the WooCommerce emails of your choice."
565
- msgstr ""
566
- "Joindre<b>jusqu'à 3 fichiers fixes</b> (par exemple les conditions générales "
567
- "de ventes)aux emails WooCommerce de votre choix."
568
-
569
- #: includes/views/wcpdf-extensions.php:29
570
- #: includes/views/wcpdf-extensions.php:59
571
- msgid ""
572
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
573
- "and credit notes or utilize the main invoice numbering system"
574
- msgstr ""
575
- "Utiliser <b>une numérotation séparée</b> et/ou un format pour les Devis et "
576
- "Avoirs ou utiliser la numérotation principale du système."
577
-
578
- #: includes/views/wcpdf-extensions.php:30
579
- #: includes/views/wcpdf-extensions.php:60
580
- msgid ""
581
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
582
- "additional custom fields, font sizes etc. without the need to create a "
583
- "custom template."
584
- msgstr ""
585
- "<b>Personnaliser le format de l'adresse de livraison et de facturation</b> "
586
- "pour ajouter des champs personnalisés, taille de police, etc. sans créer de "
587
- "modèle personnalisé."
588
-
589
- #: includes/views/wcpdf-extensions.php:31
590
- #: includes/views/wcpdf-extensions.php:61
591
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
592
- msgstr "Utiliser l'extension en configuration multilingue <b>WPML</b>"
593
-
594
- #: includes/views/wcpdf-extensions.php:33
595
- #: includes/views/wcpdf-extensions.php:131
596
- msgid "Advanced, customizable templates"
597
- msgstr "Modèles avancés personnalisables"
598
-
599
- #: includes/views/wcpdf-extensions.php:35
600
- #: includes/views/wcpdf-extensions.php:134
601
- msgid ""
602
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
603
- "your needs with a drag & drop customizer"
604
- msgstr ""
605
- "Adaptez intégralement le contenus des factures (prix, taxes, miniatures) à "
606
- "vos besoins avec un système de \"glisser-déposer\""
607
-
608
- #: includes/views/wcpdf-extensions.php:36
609
- #: includes/views/wcpdf-extensions.php:135
610
- msgid "Two extra stylish premade templates (Modern & Business)"
611
- msgstr "Deux modèles supplémentaires élégant prédéfinis (Moderne & Business)"
612
-
613
- #: includes/views/wcpdf-extensions.php:38
614
- msgid "Upload automatically to dropbox"
615
- msgstr ""
616
-
617
- #: includes/views/wcpdf-extensions.php:40
618
- #: includes/views/wcpdf-extensions.php:97
619
- msgid ""
620
- "This extension conveniently uploads all the invoices (and other pdf "
621
- "documents from the professional extension) that are emailed to your "
622
- "customers to Dropbox. The best way to keep your invoice administration up to "
623
- "date!"
624
- msgstr ""
625
- "Cette extension télécharge normalement toutes les factures (et autres "
626
- "documents PDF pour l'extension professionnelle) envoyés par email dans votre "
627
- "compte Dropbox. La meilleure façon de conserver vos documents administratif "
628
- "à jour !"
629
-
630
- #: includes/views/wcpdf-extensions.php:43
631
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
632
- msgstr ""
633
-
634
- #: includes/views/wcpdf-extensions.php:52
635
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
636
- msgstr "Go Pro: factures Proforma, notes de crédit (= remboursements) et plus!"
637
-
638
- #: includes/views/wcpdf-extensions.php:54
639
- msgid ""
640
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
641
- "features:"
642
- msgstr ""
643
- "Boostez WooCommerce PDF Invoices & Packing Slips avec les options suivantes :"
644
-
645
- #: includes/views/wcpdf-extensions.php:63
646
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
647
- msgstr "Achetez WooCommerce PDF Invoices & Packing Slips Professional!"
648
-
649
- #: includes/views/wcpdf-extensions.php:71
650
- msgid "Automatically send payment reminders to your customers"
651
- msgstr ""
652
-
653
- #: includes/views/wcpdf-extensions.php:73
654
- msgid "WooCommerce Smart Reminder emails"
655
- msgstr ""
656
-
657
- #: includes/views/wcpdf-extensions.php:75
658
- msgid "<b>Completely automatic</b> scheduled emails"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:76
662
- msgid ""
663
- "<b>Rich text editor</b> for the email text, including placeholders for data "
664
- "from the order (name, order total, etc)"
665
- msgstr ""
666
-
667
- #: includes/views/wcpdf-extensions.php:77
668
- msgid ""
669
- "Configure the exact requirements for sending an email (time after order, "
670
- "order status, payment method)"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:78
674
- msgid ""
675
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
676
- "order language."
677
- msgstr ""
678
-
679
- #: includes/views/wcpdf-extensions.php:79
680
- msgid ""
681
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
682
- "reminders, repeat purchases)"
683
- msgstr ""
684
-
685
- #: includes/views/wcpdf-extensions.php:80
686
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
687
- msgstr ""
688
-
689
- #: includes/views/wcpdf-extensions.php:82
690
- msgid "Get WooCommerce Smart Reminder Emails"
691
- msgstr ""
692
-
693
- #: includes/views/wcpdf-extensions.php:91
694
- msgid "Upload all invoices automatically to your dropbox"
695
- msgstr "Uploadez automatiquement toutes les factures sur votre Dropbox"
696
-
697
- #: includes/views/wcpdf-extensions.php:98
698
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
699
- msgstr "Achetez WooCommerce PDF Invoices & Packing Slips to dropbox!"
700
-
701
- #: includes/views/wcpdf-extensions.php:110
702
- msgid ""
703
- "Automatically send new orders or packing slips to your printer, as soon as "
704
- "the customer orders!"
705
- msgstr ""
706
- "Imprimez automatiquement les nouvelles commandes ou les bons de livraison, "
707
- "dès qu'une commande est effectuée!"
708
-
709
- #: includes/views/wcpdf-extensions.php:116
710
- msgid ""
711
- "Check out the WooCommerce Automatic Order Printing extension from our "
712
- "partners at Simba Hosting"
713
- msgstr ""
714
- "Découvrez WooCommerce Automatic Order Printing de notre partenaire Simba "
715
- "Hosting"
716
-
717
- #: includes/views/wcpdf-extensions.php:117
718
- msgid "WooCommerce Automatic Order Printing"
719
- msgstr ""
720
-
721
- #: includes/views/wcpdf-extensions.php:136
722
- #, php-format
723
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
724
- msgstr "Consultez les modèles Prémium PDF Invoice & Packing Slips ici %s."
725
-
726
- #: includes/views/wcpdf-extensions.php:137
727
- #, php-format
728
- msgid "For custom templates, contact us at %s."
729
- msgstr "Pour des modèles sur mesure, nous contacter au %s."
730
-
731
- #: includes/views/wcpdf-extensions.php:146
732
- msgid "Hide this message"
733
- msgstr ""
734
-
735
- #: includes/views/wcpdf-settings-page.php:8
736
- msgid "WooCommerce PDF Invoices"
737
- msgstr "Factures PDF WooCommerce"
738
-
739
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
740
- msgid "Billing Address:"
741
- msgstr "Adresse de facturation:"
742
-
743
- #: templates/Simple/invoice.php:41
744
- msgid "Ship To:"
745
- msgstr "Livrer à:"
746
-
747
- #: templates/Simple/invoice.php:50
748
- msgid "Invoice Number:"
749
- msgstr "Numéro de la Facture:"
750
-
751
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
752
- msgid "Order Number:"
753
- msgstr "Numéro de commande:"
754
-
755
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
756
- msgid "Order Date:"
757
- msgstr "Date de commande:"
758
-
759
- #: templates/Simple/invoice.php:69
760
- msgid "Payment Method:"
761
- msgstr "Méthode de paiement:"
762
-
763
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
764
- msgid "Product"
765
- msgstr "Produits"
766
-
767
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
768
- msgid "Quantity"
769
- msgstr "Quantité"
770
-
771
- #: templates/Simple/invoice.php:85
772
- msgid "Price"
773
- msgstr "Prix"
774
-
775
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
776
- msgid "Description"
777
- msgstr "Description"
778
-
779
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
780
- msgid "SKU"
781
- msgstr "UGS"
782
-
783
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
784
- msgid "SKU:"
785
- msgstr "UGS:"
786
-
787
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
788
- msgid "Weight:"
789
- msgstr "Poids:"
790
-
791
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
792
- msgid "Customer Notes"
793
- msgstr "Notes du client"
794
-
795
- #: templates/Simple/packing-slip.php:30
796
- msgid "Shipping Address:"
797
- msgstr "Adresse de livraison:"
798
-
799
- #: templates/Simple/packing-slip.php:57
800
- msgid "Shipping Method:"
801
- msgstr "Mode de livraison:"
802
-
803
- #: woocommerce-pdf-invoices-packingslips.php:231
804
- #, php-format
805
- msgid ""
806
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
807
- "installed & activated!"
808
- msgstr ""
809
- "WooCommerce PDF Invoices & Packing Slips requiert %sWooCommerce%s pour être "
810
- "installé et activé!"
811
-
812
- #: woocommerce-pdf-invoices-packingslips.php:243
813
- msgid ""
814
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
815
- "higher recommended)."
816
- msgstr ""
817
-
818
- #: woocommerce-pdf-invoices-packingslips.php:244
819
- msgid "How to update your PHP version"
820
- msgstr ""
821
-
822
- #~ msgid "Attach invoice to:"
823
- #~ msgstr "Joindre la facture à:"
824
-
825
- #~ msgid ""
826
- #~ "Display shipping address on invoice (in addition to the default billing "
827
- #~ "address) if different from billing address"
828
- #~ msgstr ""
829
- #~ "Afficher l'adresse de livraison sur la facture (en plus de l'adresse de "
830
- #~ "facturation) si celle-ci est différente de l'adresse de facturation"
831
-
832
- #~ msgid ""
833
- #~ "This is the number that will be used on the next invoice that is created. "
834
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
835
- #~ "first invoice that is created and increases for every new invoice. Note "
836
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
837
- #~ "number, this could create double invoice numbers!"
838
- #~ msgstr ""
839
- #~ "Ceci est le numéro qui sera utilisé pour la prochaine facture. Par "
840
- #~ "défaut, la numérotation débute avec le numéro de commande de WooCommerce "
841
- #~ "sur la première facture créée et s'incrémente à chaque nouvelle facture. "
842
- #~ "À noter que si vous changer le numéro et qu'il est plus petit que celui "
843
- #~ "de la facture PDF, vous pourriez créer des numéros de facture en double!"
844
-
845
- #~ msgid "Invoice number format"
846
- #~ msgstr "Format du numéro de facture"
847
-
848
- #~ msgid ""
849
- #~ "Disable automatic creation/attachment of invoices when only free products "
850
- #~ "are ordered"
851
- #~ msgstr ""
852
- #~ "Désactiver la création / envoi en pièce jointe automatique de la facture "
853
- #~ "lorsque seuls des produits gratuits sont commandés"
854
-
855
- #~ msgid ""
856
- #~ "Display billing address on packing slip (in addition to the default "
857
- #~ "shipping address) if different from shipping address"
858
- #~ msgstr ""
859
- #~ "Afficher l'adresse de facturation sur le bon de livraison (en plus de "
860
- #~ "l'adresse de livraison par défaut) si celle-ci est différente de "
861
- #~ "l'adresse de livraison"
862
-
863
- #~ msgid "Template"
864
- #~ msgstr "Modèle"
865
-
866
- #~ msgid "Admin New Order email"
867
- #~ msgstr "Email Nouvelle commande (administrateur)"
868
-
869
- #~ msgid "Customer Processing Order email"
870
- #~ msgstr "Email Commande en cours (client)"
871
-
872
- #~ msgid "Customer Completed Order email"
873
- #~ msgstr "Email Commande terminée (client)"
874
-
875
- #~ msgid "Customer Invoice email"
876
- #~ msgstr "Email Facture client (client)"
877
-
878
- #~ msgid "Interface"
879
- #~ msgstr "Interface"
880
-
881
- #~ msgid "PDF Template settings"
882
- #~ msgstr "Paramètres des modèles PDF"
883
-
884
- #~ msgid "Display built-in sequential invoice number"
885
- #~ msgstr "Afficher le numéro de facture intégré"
886
-
887
- #~ msgid ""
888
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
889
- #~ "respectively"
890
- #~ msgstr ""
891
- #~ "pour utiliser l'année et/ou le mois de la commande, utilisez "
892
- #~ "respectivement [order_year] ou [order_month]"
893
-
894
- #~ msgid "Use old tmp folder"
895
- #~ msgstr "Utiliser le fichier temporaire"
896
-
897
- #~ msgid ""
898
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
899
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
900
- #~ "not recommended on new installs!"
901
- #~ msgstr ""
902
- #~ "Avant la version 1.5 de PDF Invoices, les fichiers temporaires étaient "
903
- #~ "stockés dans le dossier du plugin. Ce paramètre est requis seulement pour "
904
- #~ "les versions antérieures compatibles, non recommandé sur les nouvelles "
905
- #~ "installations."
906
-
907
- #~ msgid "PDF Packing Slips"
908
- #~ msgstr "Générer les bons de livraison au format PDF"
909
-
910
- #~ msgid "PDF Invoice"
911
- #~ msgstr "Générer la facture au format PDF"
912
-
913
- #~ msgid "PDF Packing Slip"
914
- #~ msgstr "Générer le bon de livraison au format PDF"
915
-
916
- #~ msgid "PDF Invoice Number (unformatted!)"
917
- #~ msgstr "Numéro (non formaté) de Facture PDF"
918
-
919
- # @ wpo_wcpdf
920
- #~ msgid ""
921
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
922
- #~ "Packing Slips templates at %s."
923
- #~ msgstr ""
924
- #~ "Vous cherchez des modèles plus avancés ? Jetez un oeil aux modèles "
925
- #~ "Premium PDF Invoice & Packing Slips sur %s."
926
-
927
- # @ wpo_wcpdf
928
- #~ msgid ""
929
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
930
- #~ "<code>%s</code> to customize them"
931
- #~ msgstr ""
932
- #~ "Vous voulez utiliser votre propre modèle? Copiez tous les fichiers de "
933
- #~ "<code>%s</code> dans <code>%s</code> pour le personnaliser"
934
-
935
- # @ wpo_wcpdf
936
- #~ msgid "Number to display on invoice"
937
- #~ msgstr "Numéro à afficher sur la facture"
938
-
939
- # @ wpo_wcpdf
940
- #~ msgid "WooCommerce order number"
941
- #~ msgstr "Numéro de Commande WooCommerce"
942
-
943
- # @ wpo_wcpdf
944
- #~ msgid "Built-in sequential invoice number"
945
- #~ msgstr "Numéro de facture séquentiel imbriqué"
946
-
947
- # @ wpo_wcpdf
948
- #~ msgid ""
949
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
950
- #~ "the WooCommerce order number"
951
- #~ msgstr ""
952
- #~ "Si vous utilisez l'extension WooCommerce pour la numérotation, choisir le "
953
- #~ "numéro de commande WooCommerce"
954
-
955
- # @ wpo_wcpdf
956
- #~ msgid "Date to display on invoice"
957
- #~ msgstr "Date à afficher sur la facture"
958
-
959
- # @ wpo_wcpdf
960
- #~ msgid "Order date"
961
- #~ msgstr "Date de la commande"
962
-
963
- # @ wpo_wcpdf
964
- #~ msgid "Invoice date"
965
- #~ msgstr "Date de la facture"
966
-
967
- # @ wpo_wcpdf
968
- #~ msgid "PDF invoice"
969
- #~ msgstr "Générer la facture au format PDF"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips v1.3.2\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
6
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
7
+ "Last-Translator: Serge Labrosse <serge.labrosse@gmail.com>\n"
8
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
+ "Language: fr_FR\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.8.12\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\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
23
+ msgid "Invoice Number"
24
+ msgstr "Numéro de facture"
25
+
26
+ #: includes/class-wcpdf-admin.php:105
27
+ msgid "Create PDF"
28
+ msgstr "Créer un PDF"
29
+
30
+ #: includes/class-wcpdf-admin.php:115
31
+ msgid "PDF Invoice data"
32
+ msgstr "Données de Facture PDF"
33
+
34
+ #: includes/class-wcpdf-admin.php:166
35
+ #: includes/documents/class-wcpdf-invoice.php:32
36
+ #: includes/documents/class-wcpdf-invoice.php:41
37
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
38
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
39
+ msgid "Invoice"
40
+ msgstr "Facture"
41
+
42
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
43
+ #: templates/Simple/invoice.php:56
44
+ msgid "Invoice Date:"
45
+ msgstr "Date de la facture :"
46
+
47
+ #: includes/class-wcpdf-admin.php:189
48
+ msgid "Set invoice number & date"
49
+ msgstr ""
50
+
51
+ #: includes/class-wcpdf-admin.php:196
52
+ msgid "Invoice Number (unformatted!)"
53
+ msgstr "Numéro de facture (non formaté !)"
54
+
55
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
56
+ msgid "h"
57
+ msgstr "h"
58
+
59
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
60
+ msgid "m"
61
+ msgstr "m"
62
+
63
+ #: includes/class-wcpdf-frontend.php:55
64
+ msgid "Download invoice (PDF)"
65
+ msgstr "Télécharger la facture (PDF)"
66
+
67
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
68
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
69
+ msgid "You do not have sufficient permissions to access this page."
70
+ msgstr "Vous n'avez pas les permissions nécessaires pour accéder à cette page."
71
+
72
+ #: includes/class-wcpdf-main.php:141
73
+ msgid "Some of the export parameters are missing."
74
+ msgstr "Certains paramètres d'exportation sont manquants."
75
+
76
+ #: includes/class-wcpdf-settings-callbacks.php:27
77
+ msgid ""
78
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
79
+ "Do not use them on a live website!"
80
+ msgstr ""
81
+ "<b>Attention!</b> Les paramètres ci-dessous ne sont là que pour le débogage/"
82
+ "développement. Ne pas les utiliser sur un site web en production!"
83
+
84
+ #: includes/class-wcpdf-settings-callbacks.php:36
85
+ msgid ""
86
+ "These are used for the (optional) footer columns in the <em>Modern "
87
+ "(Premium)</em> template, but can also be used for other elements in your "
88
+ "custom template"
89
+ msgstr ""
90
+ "Ceux-ci sont utilisés pour les colonnes de pied de page (optionnelles) dans "
91
+ "le modèle <em>Modern (Premium)</em>, mais ils peuvent aussi être utilisés "
92
+ "pour d'autres éléments dans votre modèle personnalisé."
93
+
94
+ #: includes/class-wcpdf-settings-callbacks.php:301
95
+ msgid "Image resolution"
96
+ msgstr "Résolution de l'image"
97
+
98
+ #: includes/class-wcpdf-settings-callbacks.php:325
99
+ msgid "Save"
100
+ msgstr ""
101
+
102
+ #: includes/class-wcpdf-settings-debug.php:34
103
+ msgid "Debug settings"
104
+ msgstr "Paramètres de débogage"
105
+
106
+ #: includes/class-wcpdf-settings-debug.php:40
107
+ msgid "Legacy mode"
108
+ msgstr ""
109
+
110
+ #: includes/class-wcpdf-settings-debug.php:46
111
+ msgid ""
112
+ "Legacy mode ensures compatibility with templates and filters from previous "
113
+ "versions."
114
+ msgstr ""
115
+
116
+ #: includes/class-wcpdf-settings-debug.php:52
117
+ msgid "Enable debug output"
118
+ msgstr "Activer les résultats de débug"
119
+
120
+ #: includes/class-wcpdf-settings-debug.php:58
121
+ msgid ""
122
+ "Enable this option to output plugin errors if you're getting a blank page or "
123
+ "other PDF generation issues"
124
+ msgstr ""
125
+ "Activer cette option pour publier les erreurs du plugin tel que si obtenez "
126
+ "une page blanche ou des problèmes de génération de PDF"
127
+
128
+ #: includes/class-wcpdf-settings-debug.php:64
129
+ msgid "Output to HTML"
130
+ msgstr "Résultats en HTML"
131
+
132
+ #: includes/class-wcpdf-settings-debug.php:70
133
+ msgid ""
134
+ "Send the template output as HTML to the browser instead of creating a PDF."
135
+ msgstr ""
136
+ "Envoyer un modèle de résultats en HTML dans le navigateur au lieu de créer "
137
+ "un PDF"
138
+
139
+ #: includes/class-wcpdf-settings-documents.php:29
140
+ #: includes/class-wcpdf-settings.php:84
141
+ msgid "Documents"
142
+ msgstr ""
143
+
144
+ #: includes/class-wcpdf-settings-documents.php:45
145
+ msgid ""
146
+ "All available documents are listed below. Click on a document to configure "
147
+ "it."
148
+ msgstr ""
149
+
150
+ #: includes/class-wcpdf-settings-general.php:37
151
+ msgid "General settings"
152
+ msgstr "Paramètres généraux"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:43
155
+ msgid "How do you want to view the PDF?"
156
+ msgstr "Comment voulez-vous voir le PDF?"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:50
159
+ msgid "Download the PDF"
160
+ msgstr "Télécharger le PDF"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:51
163
+ msgid "Open the PDF in a new browser tab/window"
164
+ msgstr ""
165
+ "Ouvrir le PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur."
166
+
167
+ #: includes/class-wcpdf-settings-general.php:58
168
+ msgid "Choose a template"
169
+ msgstr "Sélectionnez un modèle"
170
+
171
+ #: includes/class-wcpdf-settings-general.php:65
172
+ #, php-format
173
+ msgid ""
174
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
175
+ "your (child) theme in <code>%s</code> to customize them"
176
+ msgstr ""
177
+ "Vous souhaitez utiliser votre propre modèle ? Copiez tous les fichiers "
178
+ "situés dans <code>%s</code> vers votre thème (enfant) dans <code>%s</code> "
179
+ "pour les customiser"
180
+
181
+ #: includes/class-wcpdf-settings-general.php:71
182
+ msgid "Paper size"
183
+ msgstr "Taille du papier"
184
+
185
+ #: includes/class-wcpdf-settings-general.php:78
186
+ msgid "A4"
187
+ msgstr "A4"
188
+
189
+ #: includes/class-wcpdf-settings-general.php:79
190
+ msgid "Letter"
191
+ msgstr "Lettre"
192
+
193
+ #: includes/class-wcpdf-settings-general.php:86
194
+ msgid "Extended currency symbol support"
195
+ msgstr ""
196
+
197
+ #: includes/class-wcpdf-settings-general.php:92
198
+ msgid "Enable this if your currency symbol is not displaying properly"
199
+ msgstr ""
200
+
201
+ #: includes/class-wcpdf-settings-general.php:98
202
+ msgid "Shop header/logo"
203
+ msgstr "En-tête de la boutique/logo"
204
+
205
+ #: includes/class-wcpdf-settings-general.php:104
206
+ msgid "Select or upload your invoice header/logo"
207
+ msgstr "Sélectionnez ou chargez votre en-tête/logo de facture"
208
+
209
+ #: includes/class-wcpdf-settings-general.php:105
210
+ msgid "Set image"
211
+ msgstr "Choisir une autre image"
212
+
213
+ #: includes/class-wcpdf-settings-general.php:106
214
+ msgid "Remove image"
215
+ msgstr "Supprimer l'image"
216
+
217
+ #: includes/class-wcpdf-settings-general.php:113
218
+ msgid "Shop Name"
219
+ msgstr "Nom de la boutique"
220
+
221
+ #: includes/class-wcpdf-settings-general.php:126
222
+ msgid "Shop Address"
223
+ msgstr "Adresse de la boutique"
224
+
225
+ #: includes/class-wcpdf-settings-general.php:141
226
+ msgid "Footer: terms & conditions, policies, etc."
227
+ msgstr "Pied de page : conditions générales de ventes, etc."
228
+
229
+ #: includes/class-wcpdf-settings-general.php:156
230
+ msgid "Extra template fields"
231
+ msgstr "Champs supplémentaires du modèle"
232
+
233
+ #: includes/class-wcpdf-settings-general.php:162
234
+ msgid "Extra field 1"
235
+ msgstr "Champ supplémentaire 1"
236
+
237
+ #: includes/class-wcpdf-settings-general.php:170
238
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
239
+ msgstr "Correspond à la colonne 1 dans le modèle <i>Modern (Premium)</i>"
240
+
241
+ #: includes/class-wcpdf-settings-general.php:177
242
+ msgid "Extra field 2"
243
+ msgstr "Champ supplémentaire 2"
244
+
245
+ #: includes/class-wcpdf-settings-general.php:185
246
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
247
+ msgstr "Correspond à la colonne 2 dans le modèle <i>Modern (Premium)</i>"
248
+
249
+ #: includes/class-wcpdf-settings-general.php:192
250
+ msgid "Extra field 3"
251
+ msgstr "Champ supplémentaire 3"
252
+
253
+ #: includes/class-wcpdf-settings-general.php:200
254
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
255
+ msgstr "Correspond à la colonne 3 dans le modèle <i>Modern (Premium)</i>"
256
+
257
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
258
+ msgid "PDF Invoices"
259
+ msgstr "Générer les factures au format PDF"
260
+
261
+ #: includes/class-wcpdf-settings.php:58
262
+ msgid "Settings"
263
+ msgstr "Paramètres"
264
+
265
+ #: includes/class-wcpdf-settings.php:71
266
+ msgid "Documentation"
267
+ msgstr ""
268
+
269
+ #: includes/class-wcpdf-settings.php:72
270
+ msgid "Support Forum"
271
+ msgstr ""
272
+
273
+ #: includes/class-wcpdf-settings.php:83
274
+ msgid "General"
275
+ msgstr "Général"
276
+
277
+ #: includes/class-wcpdf-settings.php:89
278
+ msgid "Status"
279
+ msgstr "État"
280
+
281
+ #: includes/compatibility/class-wc-core-compatibility.php:222
282
+ msgid "WooCommerce"
283
+ msgstr ""
284
+
285
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
286
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
287
+ msgid "N/A"
288
+ msgstr "N/A"
289
+
290
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
291
+ msgid "Payment method"
292
+ msgstr "Méthode de paiement"
293
+
294
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
295
+ msgid "Shipping method"
296
+ msgstr "Méthode de livraison"
297
+
298
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
299
+ #, php-format
300
+ msgid "(includes %s)"
301
+ msgstr ""
302
+
303
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
304
+ #, php-format
305
+ msgid "(Includes %s)"
306
+ msgstr "(Inclus %s)"
307
+
308
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
309
+ msgid "Subtotal"
310
+ msgstr "Sous-total"
311
+
312
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
313
+ msgid "Shipping"
314
+ msgstr "Livraison"
315
+
316
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
317
+ msgid "Discount"
318
+ msgstr "Remise"
319
+
320
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
321
+ msgid "VAT"
322
+ msgstr "TVA"
323
+
324
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
325
+ msgid "Tax rate"
326
+ msgstr "Taux de taxe (%)"
327
+
328
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
329
+ msgid "Total ex. VAT"
330
+ msgstr "Total H.T."
331
+
332
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
333
+ msgid "Total"
334
+ msgstr "Total"
335
+
336
+ #: includes/documents/abstract-wcpdf-order-document.php:674
337
+ msgid "Admin email"
338
+ msgstr ""
339
+
340
+ #: includes/documents/abstract-wcpdf-order-document.php:677
341
+ msgid "Manual email"
342
+ msgstr ""
343
+
344
+ # This is a filename (prefix). do not use spaces or special characters!
345
+ #: includes/documents/class-wcpdf-invoice.php:85
346
+ msgid "invoice"
347
+ msgid_plural "invoices"
348
+ msgstr[0] "facture"
349
+ msgstr[1] "factures"
350
+
351
+ #: includes/documents/class-wcpdf-invoice.php:130
352
+ #: includes/documents/class-wcpdf-packing-slip.php:94
353
+ msgid "Enable"
354
+ msgstr ""
355
+
356
+ #: includes/documents/class-wcpdf-invoice.php:141
357
+ msgid "Attach to:"
358
+ msgstr ""
359
+
360
+ #: includes/documents/class-wcpdf-invoice.php:148
361
+ #, php-format
362
+ msgid ""
363
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
364
+ "permissions for this folder! Without having write access to this folder, the "
365
+ "plugin will not be able to email invoices."
366
+ msgstr ""
367
+ "Le dossier temporaire (<code>%s</code>) ne semble pas modifiable, vérifiez "
368
+ "vos permissions pour ce dossier! Sans l'autorisation d'écriture dans ce "
369
+ "dossier, le plugin ne pourra pas envoyer les factures par e-mail."
370
+
371
+ #: includes/documents/class-wcpdf-invoice.php:154
372
+ msgid "Display shipping address"
373
+ msgstr "Afficher l'adresse de livraison"
374
+
375
+ #: includes/documents/class-wcpdf-invoice.php:160
376
+ msgid ""
377
+ "Display shipping address (in addition to the default billing address) if "
378
+ "different from billing address"
379
+ msgstr ""
380
+
381
+ #: includes/documents/class-wcpdf-invoice.php:166
382
+ #: includes/documents/class-wcpdf-packing-slip.php:117
383
+ msgid "Display email address"
384
+ msgstr "Afficher l'adresse email"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:177
387
+ #: includes/documents/class-wcpdf-packing-slip.php:128
388
+ msgid "Display phone number"
389
+ msgstr "Afficher le numéro de téléphone"
390
+
391
+ #: includes/documents/class-wcpdf-invoice.php:188
392
+ msgid "Display invoice date"
393
+ msgstr "Afficher la date de la facture"
394
+
395
+ #: includes/documents/class-wcpdf-invoice.php:200
396
+ msgid "Display invoice number"
397
+ msgstr ""
398
+
399
+ #: includes/documents/class-wcpdf-invoice.php:212
400
+ msgid "Next invoice number (without prefix/suffix etc.)"
401
+ msgstr "Prochain numéro de facture (sans préfixe/suffixe,etc.)"
402
+
403
+ #: includes/documents/class-wcpdf-invoice.php:218
404
+ msgid ""
405
+ "This is the number that will be used for the next document. By default, "
406
+ "numbering starts from 1 and increases for every new document. Note that if "
407
+ "you override this and set it lower than the current/highest number, this "
408
+ "could create duplicate numbers!"
409
+ msgstr ""
410
+
411
+ #: includes/documents/class-wcpdf-invoice.php:224
412
+ msgid "Number format"
413
+ msgstr ""
414
+
415
+ #: includes/documents/class-wcpdf-invoice.php:232
416
+ msgid "Prefix"
417
+ msgstr "Préfixe"
418
+
419
+ #: includes/documents/class-wcpdf-invoice.php:234
420
+ msgid ""
421
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
422
+ "respectively"
423
+ msgstr ""
424
+
425
+ #: includes/documents/class-wcpdf-invoice.php:237
426
+ msgid "Suffix"
427
+ msgstr "Suffixe"
428
+
429
+ #: includes/documents/class-wcpdf-invoice.php:242
430
+ msgid "Padding"
431
+ msgstr "Décalage"
432
+
433
+ #: includes/documents/class-wcpdf-invoice.php:245
434
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
435
+ msgstr ""
436
+ "entrez le nombre de chiffres ici - entrez\"6\" pour que 42 s'affiche 000042"
437
+
438
+ #: includes/documents/class-wcpdf-invoice.php:248
439
+ msgid ""
440
+ "note: if you have already created a custom invoice number format with a "
441
+ "filter, the above settings will be ignored"
442
+ msgstr ""
443
+ "note: si vous avez déjà créé un format de numéro de facture personnalisé "
444
+ "avec un filtre, les réglages ci-dessus seront ignorés"
445
+
446
+ #: includes/documents/class-wcpdf-invoice.php:254
447
+ msgid "Reset invoice number yearly"
448
+ msgstr ""
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:265
451
+ msgid "Allow My Account invoice download"
452
+ msgstr ""
453
+ "Autoriser le téléchargement des factures à partir de l'interface \"Mon compte"
454
+ "\""
455
+
456
+ #: includes/documents/class-wcpdf-invoice.php:272
457
+ msgid "Only when an invoice is already created/emailed"
458
+ msgstr "Seulement lorsque la facture est déjà créée/envoyée par email"
459
+
460
+ #: includes/documents/class-wcpdf-invoice.php:273
461
+ msgid "Only for specific order statuses (define below)"
462
+ msgstr "Uniquement pour les statuts de commandes suivants"
463
+
464
+ #: includes/documents/class-wcpdf-invoice.php:274
465
+ msgid "Always"
466
+ msgstr "Toujours"
467
+
468
+ #: includes/documents/class-wcpdf-invoice.php:275
469
+ msgid "Never"
470
+ msgstr "Jamais"
471
+
472
+ #: includes/documents/class-wcpdf-invoice.php:290
473
+ msgid "Enable invoice number column in the orders list"
474
+ msgstr "Activer la colonne du numéro de facture dans la liste de commande"
475
+
476
+ #: includes/documents/class-wcpdf-invoice.php:301
477
+ msgid "Disable for free products"
478
+ msgstr "Désactiver pour les produits gratuits"
479
+
480
+ #: includes/documents/class-wcpdf-invoice.php:307
481
+ msgid ""
482
+ "Disable automatic creation/attachment when only free products are ordered"
483
+ msgstr ""
484
+
485
+ #: includes/documents/class-wcpdf-invoice.php:321
486
+ msgid "Invoice numbers are created by a third-party extension."
487
+ msgstr ""
488
+
489
+ #: includes/documents/class-wcpdf-invoice.php:323
490
+ #, php-format
491
+ msgid "Configure it <a href=\"%s\">here</a>."
492
+ msgstr ""
493
+
494
+ #: includes/documents/class-wcpdf-packing-slip.php:32
495
+ #: includes/documents/class-wcpdf-packing-slip.php:41
496
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
497
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
498
+ msgid "Packing Slip"
499
+ msgstr "Bon de livraison"
500
+
501
+ # This is a filename (prefix). do not use spaces or special characters!
502
+ #: includes/documents/class-wcpdf-packing-slip.php:53
503
+ msgid "packing-slip"
504
+ msgid_plural "packing-slips"
505
+ msgstr[0] "bon-de-livraison"
506
+ msgstr[1] "bons-de-livraison"
507
+
508
+ #: includes/documents/class-wcpdf-packing-slip.php:105
509
+ msgid "Display billing address"
510
+ msgstr "Afficher l'adresse de facturation"
511
+
512
+ #: includes/documents/class-wcpdf-packing-slip.php:111
513
+ msgid ""
514
+ "Display billing address (in addition to the default shipping address) if "
515
+ "different from shipping address"
516
+ msgstr ""
517
+
518
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
519
+ msgid "Legacy Document"
520
+ msgstr ""
521
+
522
+ #: includes/views/wcpdf-extensions.php:15
523
+ msgid "Check out these premium extensions!"
524
+ msgstr "Découvrez ces extensions premium!"
525
+
526
+ #: includes/views/wcpdf-extensions.php:16
527
+ msgid "click items to read more"
528
+ msgstr "Cliquez sur les articles pour en savoir plus"
529
+
530
+ #: includes/views/wcpdf-extensions.php:21
531
+ msgid ""
532
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
533
+ "system"
534
+ msgstr ""
535
+
536
+ #: includes/views/wcpdf-extensions.php:23
537
+ msgid ""
538
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
539
+ "premium extensions:"
540
+ msgstr ""
541
+
542
+ #: includes/views/wcpdf-extensions.php:24
543
+ msgid "Professional features:"
544
+ msgstr ""
545
+
546
+ #: includes/views/wcpdf-extensions.php:26
547
+ #: includes/views/wcpdf-extensions.php:56
548
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
549
+ msgstr "Envoyer/imprimer/télécharger les <b> Avoirs et Devis PDF</b>"
550
+
551
+ #: includes/views/wcpdf-extensions.php:27
552
+ #: includes/views/wcpdf-extensions.php:57
553
+ msgid ""
554
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
555
+ "packing slips, for example to a drop-shipper or a supplier."
556
+ msgstr ""
557
+ "Envoyer séparément <b>la notification email</b> avec (ou sans) PDF invoices/"
558
+ "packing slips, par exemple à un transporteur ou un fournisseur."
559
+
560
+ #: includes/views/wcpdf-extensions.php:28
561
+ #: includes/views/wcpdf-extensions.php:58
562
+ msgid ""
563
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
564
+ "document) to the WooCommerce emails of your choice."
565
+ msgstr ""
566
+ "Joindre<b>jusqu'à 3 fichiers fixes</b> (par exemple les conditions générales "
567
+ "de ventes)aux emails WooCommerce de votre choix."
568
+
569
+ #: includes/views/wcpdf-extensions.php:29
570
+ #: includes/views/wcpdf-extensions.php:59
571
+ msgid ""
572
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
573
+ "and credit notes or utilize the main invoice numbering system"
574
+ msgstr ""
575
+ "Utiliser <b>une numérotation séparée</b> et/ou un format pour les Devis et "
576
+ "Avoirs ou utiliser la numérotation principale du système."
577
+
578
+ #: includes/views/wcpdf-extensions.php:30
579
+ #: includes/views/wcpdf-extensions.php:60
580
+ msgid ""
581
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
582
+ "additional custom fields, font sizes etc. without the need to create a "
583
+ "custom template."
584
+ msgstr ""
585
+ "<b>Personnaliser le format de l'adresse de livraison et de facturation</b> "
586
+ "pour ajouter des champs personnalisés, taille de police, etc. sans créer de "
587
+ "modèle personnalisé."
588
+
589
+ #: includes/views/wcpdf-extensions.php:31
590
+ #: includes/views/wcpdf-extensions.php:61
591
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
592
+ msgstr "Utiliser l'extension en configuration multilingue <b>WPML</b>"
593
+
594
+ #: includes/views/wcpdf-extensions.php:33
595
+ #: includes/views/wcpdf-extensions.php:131
596
+ msgid "Advanced, customizable templates"
597
+ msgstr "Modèles avancés personnalisables"
598
+
599
+ #: includes/views/wcpdf-extensions.php:35
600
+ #: includes/views/wcpdf-extensions.php:134
601
+ msgid ""
602
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
603
+ "your needs with a drag & drop customizer"
604
+ msgstr ""
605
+ "Adaptez intégralement le contenus des factures (prix, taxes, miniatures) à "
606
+ "vos besoins avec un système de \"glisser-déposer\""
607
+
608
+ #: includes/views/wcpdf-extensions.php:36
609
+ #: includes/views/wcpdf-extensions.php:135
610
+ msgid "Two extra stylish premade templates (Modern & Business)"
611
+ msgstr "Deux modèles supplémentaires élégant prédéfinis (Moderne & Business)"
612
+
613
+ #: includes/views/wcpdf-extensions.php:38
614
+ msgid "Upload automatically to dropbox"
615
+ msgstr ""
616
+
617
+ #: includes/views/wcpdf-extensions.php:40
618
+ #: includes/views/wcpdf-extensions.php:97
619
+ msgid ""
620
+ "This extension conveniently uploads all the invoices (and other pdf "
621
+ "documents from the professional extension) that are emailed to your "
622
+ "customers to Dropbox. The best way to keep your invoice administration up to "
623
+ "date!"
624
+ msgstr ""
625
+ "Cette extension télécharge normalement toutes les factures (et autres "
626
+ "documents PDF pour l'extension professionnelle) envoyés par email dans votre "
627
+ "compte Dropbox. La meilleure façon de conserver vos documents administratif "
628
+ "à jour !"
629
+
630
+ #: includes/views/wcpdf-extensions.php:43
631
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
632
+ msgstr ""
633
+
634
+ #: includes/views/wcpdf-extensions.php:52
635
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
636
+ msgstr "Go Pro: factures Proforma, notes de crédit (= remboursements) et plus!"
637
+
638
+ #: includes/views/wcpdf-extensions.php:54
639
+ msgid ""
640
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
641
+ "features:"
642
+ msgstr ""
643
+ "Boostez WooCommerce PDF Invoices & Packing Slips avec les options suivantes :"
644
+
645
+ #: includes/views/wcpdf-extensions.php:63
646
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
647
+ msgstr "Achetez WooCommerce PDF Invoices & Packing Slips Professional!"
648
+
649
+ #: includes/views/wcpdf-extensions.php:71
650
+ msgid "Automatically send payment reminders to your customers"
651
+ msgstr ""
652
+
653
+ #: includes/views/wcpdf-extensions.php:73
654
+ msgid "WooCommerce Smart Reminder emails"
655
+ msgstr ""
656
+
657
+ #: includes/views/wcpdf-extensions.php:75
658
+ msgid "<b>Completely automatic</b> scheduled emails"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:76
662
+ msgid ""
663
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
664
+ "from the order (name, order total, etc)"
665
+ msgstr ""
666
+
667
+ #: includes/views/wcpdf-extensions.php:77
668
+ msgid ""
669
+ "Configure the exact requirements for sending an email (time after order, "
670
+ "order status, payment method)"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:78
674
+ msgid ""
675
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
676
+ "order language."
677
+ msgstr ""
678
+
679
+ #: includes/views/wcpdf-extensions.php:79
680
+ msgid ""
681
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
682
+ "reminders, repeat purchases)"
683
+ msgstr ""
684
+
685
+ #: includes/views/wcpdf-extensions.php:80
686
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
687
+ msgstr ""
688
+
689
+ #: includes/views/wcpdf-extensions.php:82
690
+ msgid "Get WooCommerce Smart Reminder Emails"
691
+ msgstr ""
692
+
693
+ #: includes/views/wcpdf-extensions.php:91
694
+ msgid "Upload all invoices automatically to your dropbox"
695
+ msgstr "Uploadez automatiquement toutes les factures sur votre Dropbox"
696
+
697
+ #: includes/views/wcpdf-extensions.php:98
698
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
699
+ msgstr "Achetez WooCommerce PDF Invoices & Packing Slips to dropbox!"
700
+
701
+ #: includes/views/wcpdf-extensions.php:110
702
+ msgid ""
703
+ "Automatically send new orders or packing slips to your printer, as soon as "
704
+ "the customer orders!"
705
+ msgstr ""
706
+ "Imprimez automatiquement les nouvelles commandes ou les bons de livraison, "
707
+ "dès qu'une commande est effectuée!"
708
+
709
+ #: includes/views/wcpdf-extensions.php:116
710
+ msgid ""
711
+ "Check out the WooCommerce Automatic Order Printing extension from our "
712
+ "partners at Simba Hosting"
713
+ msgstr ""
714
+ "Découvrez WooCommerce Automatic Order Printing de notre partenaire Simba "
715
+ "Hosting"
716
+
717
+ #: includes/views/wcpdf-extensions.php:117
718
+ msgid "WooCommerce Automatic Order Printing"
719
+ msgstr ""
720
+
721
+ #: includes/views/wcpdf-extensions.php:136
722
+ #, php-format
723
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
724
+ msgstr "Consultez les modèles Prémium PDF Invoice & Packing Slips ici %s."
725
+
726
+ #: includes/views/wcpdf-extensions.php:137
727
+ #, php-format
728
+ msgid "For custom templates, contact us at %s."
729
+ msgstr "Pour des modèles sur mesure, nous contacter au %s."
730
+
731
+ #: includes/views/wcpdf-extensions.php:146
732
+ msgid "Hide this message"
733
+ msgstr ""
734
+
735
+ #: includes/views/wcpdf-settings-page.php:8
736
+ msgid "WooCommerce PDF Invoices"
737
+ msgstr "Factures PDF WooCommerce"
738
+
739
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
740
+ msgid "Billing Address:"
741
+ msgstr "Adresse de facturation:"
742
+
743
+ #: templates/Simple/invoice.php:41
744
+ msgid "Ship To:"
745
+ msgstr "Livrer à:"
746
+
747
+ #: templates/Simple/invoice.php:50
748
+ msgid "Invoice Number:"
749
+ msgstr "Numéro de la Facture:"
750
+
751
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
752
+ msgid "Order Number:"
753
+ msgstr "Numéro de commande:"
754
+
755
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
756
+ msgid "Order Date:"
757
+ msgstr "Date de commande:"
758
+
759
+ #: templates/Simple/invoice.php:69
760
+ msgid "Payment Method:"
761
+ msgstr "Méthode de paiement:"
762
+
763
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
764
+ msgid "Product"
765
+ msgstr "Produits"
766
+
767
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
768
+ msgid "Quantity"
769
+ msgstr "Quantité"
770
+
771
+ #: templates/Simple/invoice.php:85
772
+ msgid "Price"
773
+ msgstr "Prix"
774
+
775
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
776
+ msgid "Description"
777
+ msgstr "Description"
778
+
779
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
780
+ msgid "SKU"
781
+ msgstr "UGS"
782
+
783
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
784
+ msgid "SKU:"
785
+ msgstr "UGS:"
786
+
787
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
788
+ msgid "Weight:"
789
+ msgstr "Poids:"
790
+
791
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
792
+ msgid "Customer Notes"
793
+ msgstr "Notes du client"
794
+
795
+ #: templates/Simple/packing-slip.php:30
796
+ msgid "Shipping Address:"
797
+ msgstr "Adresse de livraison:"
798
+
799
+ #: templates/Simple/packing-slip.php:57
800
+ msgid "Shipping Method:"
801
+ msgstr "Mode de livraison:"
802
+
803
+ #: woocommerce-pdf-invoices-packingslips.php:231
804
+ #, php-format
805
+ msgid ""
806
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
807
+ "installed & activated!"
808
+ msgstr ""
809
+ "WooCommerce PDF Invoices & Packing Slips requiert %sWooCommerce%s pour être "
810
+ "installé et activé!"
811
+
812
+ #: woocommerce-pdf-invoices-packingslips.php:243
813
+ msgid ""
814
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
815
+ "higher recommended)."
816
+ msgstr ""
817
+
818
+ #: woocommerce-pdf-invoices-packingslips.php:244
819
+ msgid "How to update your PHP version"
820
+ msgstr ""
821
+
822
+ #~ msgid "Attach invoice to:"
823
+ #~ msgstr "Joindre la facture à:"
824
+
825
+ #~ msgid ""
826
+ #~ "Display shipping address on invoice (in addition to the default billing "
827
+ #~ "address) if different from billing address"
828
+ #~ msgstr ""
829
+ #~ "Afficher l'adresse de livraison sur la facture (en plus de l'adresse de "
830
+ #~ "facturation) si celle-ci est différente de l'adresse de facturation"
831
+
832
+ #~ msgid ""
833
+ #~ "This is the number that will be used on the next invoice that is created. "
834
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
835
+ #~ "first invoice that is created and increases for every new invoice. Note "
836
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
837
+ #~ "number, this could create double invoice numbers!"
838
+ #~ msgstr ""
839
+ #~ "Ceci est le numéro qui sera utilisé pour la prochaine facture. Par "
840
+ #~ "défaut, la numérotation débute avec le numéro de commande de WooCommerce "
841
+ #~ "sur la première facture créée et s'incrémente à chaque nouvelle facture. "
842
+ #~ "À noter que si vous changer le numéro et qu'il est plus petit que celui "
843
+ #~ "de la facture PDF, vous pourriez créer des numéros de facture en double!"
844
+
845
+ #~ msgid "Invoice number format"
846
+ #~ msgstr "Format du numéro de facture"
847
+
848
+ #~ msgid ""
849
+ #~ "Disable automatic creation/attachment of invoices when only free products "
850
+ #~ "are ordered"
851
+ #~ msgstr ""
852
+ #~ "Désactiver la création / envoi en pièce jointe automatique de la facture "
853
+ #~ "lorsque seuls des produits gratuits sont commandés"
854
+
855
+ #~ msgid ""
856
+ #~ "Display billing address on packing slip (in addition to the default "
857
+ #~ "shipping address) if different from shipping address"
858
+ #~ msgstr ""
859
+ #~ "Afficher l'adresse de facturation sur le bon de livraison (en plus de "
860
+ #~ "l'adresse de livraison par défaut) si celle-ci est différente de "
861
+ #~ "l'adresse de livraison"
862
+
863
+ #~ msgid "Template"
864
+ #~ msgstr "Modèle"
865
+
866
+ #~ msgid "Admin New Order email"
867
+ #~ msgstr "Email Nouvelle commande (administrateur)"
868
+
869
+ #~ msgid "Customer Processing Order email"
870
+ #~ msgstr "Email Commande en cours (client)"
871
+
872
+ #~ msgid "Customer Completed Order email"
873
+ #~ msgstr "Email Commande terminée (client)"
874
+
875
+ #~ msgid "Customer Invoice email"
876
+ #~ msgstr "Email Facture client (client)"
877
+
878
+ #~ msgid "Interface"
879
+ #~ msgstr "Interface"
880
+
881
+ #~ msgid "PDF Template settings"
882
+ #~ msgstr "Paramètres des modèles PDF"
883
+
884
+ #~ msgid "Display built-in sequential invoice number"
885
+ #~ msgstr "Afficher le numéro de facture intégré"
886
+
887
+ #~ msgid ""
888
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
889
+ #~ "respectively"
890
+ #~ msgstr ""
891
+ #~ "pour utiliser l'année et/ou le mois de la commande, utilisez "
892
+ #~ "respectivement [order_year] ou [order_month]"
893
+
894
+ #~ msgid "Use old tmp folder"
895
+ #~ msgstr "Utiliser le fichier temporaire"
896
+
897
+ #~ msgid ""
898
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
899
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
900
+ #~ "not recommended on new installs!"
901
+ #~ msgstr ""
902
+ #~ "Avant la version 1.5 de PDF Invoices, les fichiers temporaires étaient "
903
+ #~ "stockés dans le dossier du plugin. Ce paramètre est requis seulement pour "
904
+ #~ "les versions antérieures compatibles, non recommandé sur les nouvelles "
905
+ #~ "installations."
906
+
907
+ #~ msgid "PDF Packing Slips"
908
+ #~ msgstr "Générer les bons de livraison au format PDF"
909
+
910
+ #~ msgid "PDF Invoice"
911
+ #~ msgstr "Générer la facture au format PDF"
912
+
913
+ #~ msgid "PDF Packing Slip"
914
+ #~ msgstr "Générer le bon de livraison au format PDF"
915
+
916
+ #~ msgid "PDF Invoice Number (unformatted!)"
917
+ #~ msgstr "Numéro (non formaté) de Facture PDF"
918
+
919
+ # @ wpo_wcpdf
920
+ #~ msgid ""
921
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
922
+ #~ "Packing Slips templates at %s."
923
+ #~ msgstr ""
924
+ #~ "Vous cherchez des modèles plus avancés ? Jetez un oeil aux modèles "
925
+ #~ "Premium PDF Invoice & Packing Slips sur %s."
926
+
927
+ # @ wpo_wcpdf
928
+ #~ msgid ""
929
+ #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
930
+ #~ "<code>%s</code> to customize them"
931
+ #~ msgstr ""
932
+ #~ "Vous voulez utiliser votre propre modèle? Copiez tous les fichiers de "
933
+ #~ "<code>%s</code> dans <code>%s</code> pour le personnaliser"
934
+
935
+ # @ wpo_wcpdf
936
+ #~ msgid "Number to display on invoice"
937
+ #~ msgstr "Numéro à afficher sur la facture"
938
+
939
+ # @ wpo_wcpdf
940
+ #~ msgid "WooCommerce order number"
941
+ #~ msgstr "Numéro de Commande WooCommerce"
942
+
943
+ # @ wpo_wcpdf
944
+ #~ msgid "Built-in sequential invoice number"
945
+ #~ msgstr "Numéro de facture séquentiel imbriqué"
946
+
947
+ # @ wpo_wcpdf
948
+ #~ msgid ""
949
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
950
+ #~ "the WooCommerce order number"
951
+ #~ msgstr ""
952
+ #~ "Si vous utilisez l'extension WooCommerce pour la numérotation, choisir le "
953
+ #~ "numéro de commande WooCommerce"
954
+
955
+ # @ wpo_wcpdf
956
+ #~ msgid "Date to display on invoice"
957
+ #~ msgstr "Date à afficher sur la facture"
958
+
959
+ # @ wpo_wcpdf
960
+ #~ msgid "Order date"
961
+ #~ msgstr "Date de la commande"
962
+
963
+ # @ wpo_wcpdf
964
+ #~ msgid "Invoice date"
965
+ #~ msgstr "Date de la facture"
966
+
967
+ # @ wpo_wcpdf
968
+ #~ msgid "PDF invoice"
969
+ #~ msgstr "Générer la facture au format PDF"
languages/woocommerce-pdf-invoices-packing-slips-hr.po CHANGED
@@ -1,926 +1,926 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
6
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
7
- "Last-Translator: spineict <admin@spine-ict.hr>\n"
8
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
- "Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
14
- "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.12\n"
17
- "X-Poedit-Basepath: ..\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Loco-Target-Locale: hr_HR\n"
24
- "X-Poedit-SearchPath-0: .\n"
25
-
26
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
27
- msgid "Invoice Number"
28
- msgstr "Broj računa"
29
-
30
- #: includes/class-wcpdf-admin.php:105
31
- msgid "Create PDF"
32
- msgstr "Generiraj PDF"
33
-
34
- #: includes/class-wcpdf-admin.php:115
35
- msgid "PDF Invoice data"
36
- msgstr "Sadržaj PDF računa"
37
-
38
- #: includes/class-wcpdf-admin.php:166
39
- #: includes/documents/class-wcpdf-invoice.php:32
40
- #: includes/documents/class-wcpdf-invoice.php:41
41
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
42
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
43
- msgid "Invoice"
44
- msgstr "Račun"
45
-
46
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
47
- #: templates/Simple/invoice.php:56
48
- msgid "Invoice Date:"
49
- msgstr "Datum računa:"
50
-
51
- #: includes/class-wcpdf-admin.php:189
52
- msgid "Set invoice number & date"
53
- msgstr ""
54
-
55
- #: includes/class-wcpdf-admin.php:196
56
- msgid "Invoice Number (unformatted!)"
57
- msgstr "Broj računa (neformatiran!)"
58
-
59
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
60
- msgid "h"
61
- msgstr "s"
62
-
63
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
64
- msgid "m"
65
- msgstr "m"
66
-
67
- #: includes/class-wcpdf-frontend.php:55
68
- msgid "Download invoice (PDF)"
69
- msgstr "Dohvati račun(PDF)"
70
-
71
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
72
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
73
- msgid "You do not have sufficient permissions to access this page."
74
- msgstr "Nemate dovoljne ovlasti kako bi pristupili ovoj stranici."
75
-
76
- #: includes/class-wcpdf-main.php:141
77
- msgid "Some of the export parameters are missing."
78
- msgstr "Neki od parametara za izvoz nedostaju."
79
-
80
- #: includes/class-wcpdf-settings-callbacks.php:27
81
- msgid ""
82
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
83
- "Do not use them on a live website!"
84
- msgstr ""
85
- "Upozorenje! Donje postavke su namijenjene isključivo za debugging/"
86
- "development. Ne koristite ih na stranicama koje su puštene u produkciju."
87
-
88
- #: includes/class-wcpdf-settings-callbacks.php:36
89
- msgid ""
90
- "These are used for the (optional) footer columns in the <em>Modern "
91
- "(Premium)</em> template, but can also be used for other elements in your "
92
- "custom template"
93
- msgstr ""
94
- "Ovo se koristi za (opcionalno) retke u podnožju (footeru) <em>Modern "
95
- "(Premium)</em> predlošku, ali se također može koristiti za druge elemente u "
96
- "vašem prilagođenom predlošku"
97
-
98
- #: includes/class-wcpdf-settings-callbacks.php:301
99
- msgid "Image resolution"
100
- msgstr "Rezolucija slike"
101
-
102
- #: includes/class-wcpdf-settings-callbacks.php:325
103
- msgid "Save"
104
- msgstr ""
105
-
106
- #: includes/class-wcpdf-settings-debug.php:34
107
- msgid "Debug settings"
108
- msgstr "Postavke debug-a"
109
-
110
- #: includes/class-wcpdf-settings-debug.php:40
111
- msgid "Legacy mode"
112
- msgstr ""
113
-
114
- #: includes/class-wcpdf-settings-debug.php:46
115
- msgid ""
116
- "Legacy mode ensures compatibility with templates and filters from previous "
117
- "versions."
118
- msgstr ""
119
-
120
- #: includes/class-wcpdf-settings-debug.php:52
121
- msgid "Enable debug output"
122
- msgstr "Omogućiti debug prikaz"
123
-
124
- #: includes/class-wcpdf-settings-debug.php:58
125
- msgid ""
126
- "Enable this option to output plugin errors if you're getting a blank page or "
127
- "other PDF generation issues"
128
- msgstr ""
129
- "Omogući ovu opciju kako bi dohvatili greške priključka ako vam se događa da "
130
- "dobivate praznu stranicu nakon generiranja PDF-a ili imate neke druge "
131
- "poteškoće"
132
-
133
- #: includes/class-wcpdf-settings-debug.php:64
134
- msgid "Output to HTML"
135
- msgstr "Prikaži u HTML-u"
136
-
137
- #: includes/class-wcpdf-settings-debug.php:70
138
- msgid ""
139
- "Send the template output as HTML to the browser instead of creating a PDF."
140
- msgstr "Pošalji predložak u HTML formatu umjesto generiranja PDF-a."
141
-
142
- #: includes/class-wcpdf-settings-documents.php:29
143
- #: includes/class-wcpdf-settings.php:84
144
- msgid "Documents"
145
- msgstr ""
146
-
147
- #: includes/class-wcpdf-settings-documents.php:45
148
- msgid ""
149
- "All available documents are listed below. Click on a document to configure "
150
- "it."
151
- msgstr ""
152
-
153
- #: includes/class-wcpdf-settings-general.php:37
154
- msgid "General settings"
155
- msgstr "Opće postavke"
156
-
157
- #: includes/class-wcpdf-settings-general.php:43
158
- msgid "How do you want to view the PDF?"
159
- msgstr "Što želite učiniti s PDF-om?"
160
-
161
- #: includes/class-wcpdf-settings-general.php:50
162
- msgid "Download the PDF"
163
- msgstr "Preuzmi PDF "
164
-
165
- #: includes/class-wcpdf-settings-general.php:51
166
- msgid "Open the PDF in a new browser tab/window"
167
- msgstr "Otvorite PDF u novoj kartici preglednika / u novom prozoru"
168
-
169
- #: includes/class-wcpdf-settings-general.php:58
170
- msgid "Choose a template"
171
- msgstr "Odaberite predložak"
172
-
173
- #: includes/class-wcpdf-settings-general.php:65
174
- #, php-format
175
- msgid ""
176
- "Want to use your own template? Copy all the files from <code>%s</code> to "
177
- "your (child) theme in <code>%s</code> to customize them"
178
- msgstr ""
179
- "Želite koristiti vlastiti predložak? Kopirajte sve datoteke iz <code>%s</"
180
- "code> u vašu \"child\" temu u <code>%s</code> kako bi ih mogli prilagođavati"
181
-
182
- #: includes/class-wcpdf-settings-general.php:71
183
- msgid "Paper size"
184
- msgstr "Veličina papira"
185
-
186
- #: includes/class-wcpdf-settings-general.php:78
187
- msgid "A4"
188
- msgstr "A4"
189
-
190
- #: includes/class-wcpdf-settings-general.php:79
191
- msgid "Letter"
192
- msgstr "Pismo"
193
-
194
- #: includes/class-wcpdf-settings-general.php:86
195
- msgid "Extended currency symbol support"
196
- msgstr ""
197
-
198
- #: includes/class-wcpdf-settings-general.php:92
199
- msgid "Enable this if your currency symbol is not displaying properly"
200
- msgstr ""
201
-
202
- #: includes/class-wcpdf-settings-general.php:98
203
- msgid "Shop header/logo"
204
- msgstr "Zaglavlje/Logo trgovine"
205
-
206
- #: includes/class-wcpdf-settings-general.php:104
207
- msgid "Select or upload your invoice header/logo"
208
- msgstr "Odaberite ili prenesite datoteku zaglavlja/logo-a za račun"
209
-
210
- #: includes/class-wcpdf-settings-general.php:105
211
- msgid "Set image"
212
- msgstr "Odabir slike"
213
-
214
- #: includes/class-wcpdf-settings-general.php:106
215
- msgid "Remove image"
216
- msgstr "Ukloni sliku"
217
-
218
- #: includes/class-wcpdf-settings-general.php:113
219
- msgid "Shop Name"
220
- msgstr "Ime trgovine"
221
-
222
- #: includes/class-wcpdf-settings-general.php:126
223
- msgid "Shop Address"
224
- msgstr "Adresa trgovine"
225
-
226
- #: includes/class-wcpdf-settings-general.php:141
227
- msgid "Footer: terms & conditions, policies, etc."
228
- msgstr "Podnožje: uvjeti & statusne stvari, poslovanje i sl."
229
-
230
- #: includes/class-wcpdf-settings-general.php:156
231
- msgid "Extra template fields"
232
- msgstr "Dodatna polja predloška"
233
-
234
- #: includes/class-wcpdf-settings-general.php:162
235
- msgid "Extra field 1"
236
- msgstr "Dodatno polje 1"
237
-
238
- #: includes/class-wcpdf-settings-general.php:170
239
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
240
- msgstr "Ovo je 1 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
241
-
242
- #: includes/class-wcpdf-settings-general.php:177
243
- msgid "Extra field 2"
244
- msgstr "Dodatno polje 2"
245
-
246
- #: includes/class-wcpdf-settings-general.php:185
247
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
- msgstr "Ovo je 2 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
249
-
250
- #: includes/class-wcpdf-settings-general.php:192
251
- msgid "Extra field 3"
252
- msgstr "Dodatno polje 3"
253
-
254
- #: includes/class-wcpdf-settings-general.php:200
255
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
256
- msgstr "Ovo je 3 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
257
-
258
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
259
- msgid "PDF Invoices"
260
- msgstr "PDF Račun"
261
-
262
- #: includes/class-wcpdf-settings.php:58
263
- msgid "Settings"
264
- msgstr "Postavke"
265
-
266
- #: includes/class-wcpdf-settings.php:71
267
- msgid "Documentation"
268
- msgstr ""
269
-
270
- #: includes/class-wcpdf-settings.php:72
271
- msgid "Support Forum"
272
- msgstr ""
273
-
274
- #: includes/class-wcpdf-settings.php:83
275
- msgid "General"
276
- msgstr "Općenito"
277
-
278
- #: includes/class-wcpdf-settings.php:89
279
- msgid "Status"
280
- msgstr "Status"
281
-
282
- #: includes/compatibility/class-wc-core-compatibility.php:222
283
- msgid "WooCommerce"
284
- msgstr ""
285
-
286
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
287
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
288
- msgid "N/A"
289
- msgstr "Ništa"
290
-
291
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
292
- msgid "Payment method"
293
- msgstr "Metoda plaćanja"
294
-
295
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
296
- msgid "Shipping method"
297
- msgstr "Metoda dostave"
298
-
299
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
300
- #, php-format
301
- msgid "(includes %s)"
302
- msgstr ""
303
-
304
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
305
- #, php-format
306
- msgid "(Includes %s)"
307
- msgstr "(Uključujući %s)"
308
-
309
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
310
- msgid "Subtotal"
311
- msgstr "Ukupno (subtotal)"
312
-
313
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
314
- msgid "Shipping"
315
- msgstr "Dostava"
316
-
317
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
318
- msgid "Discount"
319
- msgstr "Popust"
320
-
321
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
322
- msgid "VAT"
323
- msgstr "PDV"
324
-
325
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
326
- msgid "Tax rate"
327
- msgstr "Visina poreza"
328
-
329
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
330
- msgid "Total ex. VAT"
331
- msgstr "Ukupno bez PDV-a"
332
-
333
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
334
- msgid "Total"
335
- msgstr "Ukupno"
336
-
337
- #: includes/documents/abstract-wcpdf-order-document.php:674
338
- msgid "Admin email"
339
- msgstr ""
340
-
341
- #: includes/documents/abstract-wcpdf-order-document.php:677
342
- msgid "Manual email"
343
- msgstr ""
344
-
345
- #: includes/documents/class-wcpdf-invoice.php:85
346
- msgid "invoice"
347
- msgid_plural "invoices"
348
- msgstr[0] "Račun"
349
- msgstr[1] "Računi"
350
- msgstr[2] ""
351
-
352
- #: includes/documents/class-wcpdf-invoice.php:130
353
- #: includes/documents/class-wcpdf-packing-slip.php:94
354
- msgid "Enable"
355
- msgstr ""
356
-
357
- #: includes/documents/class-wcpdf-invoice.php:141
358
- msgid "Attach to:"
359
- msgstr ""
360
-
361
- #: includes/documents/class-wcpdf-invoice.php:148
362
- #, php-format
363
- msgid ""
364
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
365
- "permissions for this folder! Without having write access to this folder, the "
366
- "plugin will not be able to email invoices."
367
- msgstr ""
368
- "Čini se kako je temp folder (<code>%s</code>) zaštićen od pisanja, "
369
- "provjerite dozvole za ovaj folder. Bez ovlasti za upisivanje u ovaj folder "
370
- "plugin neće biti u mogućnosti poslati račune e-mailom."
371
-
372
- #: includes/documents/class-wcpdf-invoice.php:154
373
- msgid "Display shipping address"
374
- msgstr "Prikazati adresu dostave"
375
-
376
- #: includes/documents/class-wcpdf-invoice.php:160
377
- msgid ""
378
- "Display shipping address (in addition to the default billing address) if "
379
- "different from billing address"
380
- msgstr ""
381
-
382
- #: includes/documents/class-wcpdf-invoice.php:166
383
- #: includes/documents/class-wcpdf-packing-slip.php:117
384
- msgid "Display email address"
385
- msgstr "Prikaži e-mail adresu"
386
-
387
- #: includes/documents/class-wcpdf-invoice.php:177
388
- #: includes/documents/class-wcpdf-packing-slip.php:128
389
- msgid "Display phone number"
390
- msgstr "Prikaži broj telefona"
391
-
392
- #: includes/documents/class-wcpdf-invoice.php:188
393
- msgid "Display invoice date"
394
- msgstr "Prikaži datum izrade računa"
395
-
396
- #: includes/documents/class-wcpdf-invoice.php:200
397
- msgid "Display invoice number"
398
- msgstr ""
399
-
400
- #: includes/documents/class-wcpdf-invoice.php:212
401
- msgid "Next invoice number (without prefix/suffix etc.)"
402
- msgstr "Slijedeći broj računa (bez prefiksa i sufiksa)"
403
-
404
- #: includes/documents/class-wcpdf-invoice.php:218
405
- msgid ""
406
- "This is the number that will be used for the next document. By default, "
407
- "numbering starts from 1 and increases for every new document. Note that if "
408
- "you override this and set it lower than the current/highest number, this "
409
- "could create duplicate numbers!"
410
- msgstr ""
411
-
412
- #: includes/documents/class-wcpdf-invoice.php:224
413
- msgid "Number format"
414
- msgstr ""
415
-
416
- #: includes/documents/class-wcpdf-invoice.php:232
417
- msgid "Prefix"
418
- msgstr "Prefiks"
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:234
421
- msgid ""
422
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
423
- "respectively"
424
- msgstr ""
425
- "kako bi koristili godinu i/ili mjesec, koristite [invoice_year] ili "
426
- "[invoice_month] poštujući"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:237
429
- msgid "Suffix"
430
- msgstr "Sufiks"
431
-
432
- #: includes/documents/class-wcpdf-invoice.php:242
433
- msgid "Padding"
434
- msgstr "prostor "
435
-
436
- #: includes/documents/class-wcpdf-invoice.php:245
437
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
438
- msgstr ""
439
- "unesite broj znamenki ovdje - unesite\"6\" ako želite prikazati broj 42 kao "
440
- "000042"
441
-
442
- #: includes/documents/class-wcpdf-invoice.php:248
443
- msgid ""
444
- "note: if you have already created a custom invoice number format with a "
445
- "filter, the above settings will be ignored"
446
- msgstr ""
447
- "Bilješka: Ako ste već kreirali prilagođeni format broja računa s filterom, "
448
- "gornje postavke biti će zanemarene"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:254
451
- msgid "Reset invoice number yearly"
452
- msgstr "Resetirati broj računa na godišnjoj razini"
453
-
454
- #: includes/documents/class-wcpdf-invoice.php:265
455
- msgid "Allow My Account invoice download"
456
- msgstr "Dozvoliti preuzimanje računa za moj korisnički profil"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:272
459
- msgid "Only when an invoice is already created/emailed"
460
- msgstr "Samo kada je račun već izrađen/poslan"
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:273
463
- msgid "Only for specific order statuses (define below)"
464
- msgstr "Samo za specifične statuse narudžbe (definirati ispod)"
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:274
467
- msgid "Always"
468
- msgstr "Uvijek"
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:275
471
- msgid "Never"
472
- msgstr "Nikad"
473
-
474
- #: includes/documents/class-wcpdf-invoice.php:290
475
- msgid "Enable invoice number column in the orders list"
476
- msgstr "Omogućite prikaz stupca s brojem računa u listi narudžbi"
477
-
478
- #: includes/documents/class-wcpdf-invoice.php:301
479
- msgid "Disable for free products"
480
- msgstr "Onemogući za besplatne proizvode"
481
-
482
- #: includes/documents/class-wcpdf-invoice.php:307
483
- msgid ""
484
- "Disable automatic creation/attachment when only free products are ordered"
485
- msgstr ""
486
-
487
- #: includes/documents/class-wcpdf-invoice.php:321
488
- msgid "Invoice numbers are created by a third-party extension."
489
- msgstr ""
490
-
491
- #: includes/documents/class-wcpdf-invoice.php:323
492
- #, php-format
493
- msgid "Configure it <a href=\"%s\">here</a>."
494
- msgstr ""
495
-
496
- #: includes/documents/class-wcpdf-packing-slip.php:32
497
- #: includes/documents/class-wcpdf-packing-slip.php:41
498
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
499
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
500
- msgid "Packing Slip"
501
- msgstr "Paketni slip"
502
-
503
- #: includes/documents/class-wcpdf-packing-slip.php:53
504
- msgid "packing-slip"
505
- msgid_plural "packing-slips"
506
- msgstr[0] "Slip uz paket"
507
- msgstr[1] "Slipovi za pakete"
508
- msgstr[2] ""
509
-
510
- #: includes/documents/class-wcpdf-packing-slip.php:105
511
- msgid "Display billing address"
512
- msgstr "Prikazati adresu za naplatu"
513
-
514
- #: includes/documents/class-wcpdf-packing-slip.php:111
515
- msgid ""
516
- "Display billing address (in addition to the default shipping address) if "
517
- "different from shipping address"
518
- msgstr ""
519
-
520
- #: includes/legacy/class-wcpdf-legacy-document.php:32
521
- msgid "Legacy Document"
522
- msgstr ""
523
-
524
- #: includes/views/wcpdf-extensions.php:15
525
- msgid "Check out these premium extensions!"
526
- msgstr "Provjerite ove premium dodatke!"
527
-
528
- #: includes/views/wcpdf-extensions.php:16
529
- msgid "click items to read more"
530
- msgstr "klik na predmet za detalje"
531
-
532
- #: includes/views/wcpdf-extensions.php:21
533
- msgid ""
534
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
535
- "system"
536
- msgstr ""
537
-
538
- #: includes/views/wcpdf-extensions.php:23
539
- msgid ""
540
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
541
- "premium extensions:"
542
- msgstr ""
543
-
544
- #: includes/views/wcpdf-extensions.php:24
545
- msgid "Professional features:"
546
- msgstr ""
547
-
548
- #: includes/views/wcpdf-extensions.php:26
549
- #: includes/views/wcpdf-extensions.php:56
550
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
551
- msgstr ""
552
- "E-mail/Ispis/Preuzimanje <b>PDF Kreditne bilješke & Proforma Računa</b>"
553
-
554
- #: includes/views/wcpdf-extensions.php:27
555
- #: includes/views/wcpdf-extensions.php:57
556
- msgid ""
557
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
558
- "packing slips, for example to a drop-shipper or a supplier."
559
- msgstr ""
560
- "Pošalji odvojeni <b>E-mail obavijest</b> sa (ili bez) PDF računa/paketnih "
561
- "slipova, za primjer dostavljaču ili "
562
-
563
- #: includes/views/wcpdf-extensions.php:28
564
- #: includes/views/wcpdf-extensions.php:58
565
- msgid ""
566
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
567
- "document) to the WooCommerce emails of your choice."
568
- msgstr ""
569
- "Dodajte <b> do 3 statične datoteke</b> (Npr. dokument Uvjeti poslovanja) u "
570
- "WooCommerce e-mail poruke po vašem izboru"
571
-
572
- #: includes/views/wcpdf-extensions.php:29
573
- #: includes/views/wcpdf-extensions.php:59
574
- msgid ""
575
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
576
- "and credit notes or utilize the main invoice numbering system"
577
- msgstr ""
578
- "Korištenje <b>odvojenih sustava knjiženja</b> i/ili formata za proforma "
579
- "račune i kreditne bilješke ili primjena glavnog računskog sustava knjiženja"
580
-
581
- #: includes/views/wcpdf-extensions.php:30
582
- #: includes/views/wcpdf-extensions.php:60
583
- msgid ""
584
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
585
- "additional custom fields, font sizes etc. without the need to create a "
586
- "custom template."
587
- msgstr ""
588
- "<b>Uredite</b> format <b>adrese za dostavu i naplatu</b> kako bi dodali "
589
- "dodatna prilagođena polja, veličine fonta i sl. bez potrebe za izradom novog "
590
- "predloška. "
591
-
592
- #: includes/views/wcpdf-extensions.php:31
593
- #: includes/views/wcpdf-extensions.php:61
594
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
595
- msgstr "Koristite dodatak u višejezičnom <b>WPML</b> postavkama"
596
-
597
- #: includes/views/wcpdf-extensions.php:33
598
- #: includes/views/wcpdf-extensions.php:131
599
- msgid "Advanced, customizable templates"
600
- msgstr "Napredni, prilagodljivi predlošci"
601
-
602
- #: includes/views/wcpdf-extensions.php:35
603
- #: includes/views/wcpdf-extensions.php:134
604
- msgid ""
605
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
606
- "your needs with a drag & drop customizer"
607
- msgstr ""
608
- "Potpuna prilagodba sadržaja računa (cijene, porezi, umanjene slike) vašim "
609
- "potrebamakorištenjem povuci & ispusti uređivača"
610
-
611
- #: includes/views/wcpdf-extensions.php:36
612
- #: includes/views/wcpdf-extensions.php:135
613
- msgid "Two extra stylish premade templates (Modern & Business)"
614
- msgstr "Dva vrlo stilizirana pripremljena predloška (Moderni & Poslovni)"
615
-
616
- #: includes/views/wcpdf-extensions.php:38
617
- msgid "Upload automatically to dropbox"
618
- msgstr ""
619
-
620
- #: includes/views/wcpdf-extensions.php:40
621
- #: includes/views/wcpdf-extensions.php:97
622
- msgid ""
623
- "This extension conveniently uploads all the invoices (and other pdf "
624
- "documents from the professional extension) that are emailed to your "
625
- "customers to Dropbox. The best way to keep your invoice administration up to "
626
- "date!"
627
- msgstr ""
628
- "Ovo proširenje pouzdano prenosi sve račune ( i druge PDF dokumente s "
629
- "profesionalnog proširenja) koja su poslana e-mailom vašim klijentima, "
630
- "izravno na Dropbox. Najbolji način za održavanje vaše administracije računa "
631
- "preglednim i ažurnim."
632
-
633
- #: includes/views/wcpdf-extensions.php:43
634
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
635
- msgstr ""
636
-
637
- #: includes/views/wcpdf-extensions.php:52
638
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
639
- msgstr ""
640
- "Idemo na PRO: Proforma računi, kreditne bilješke (=povrat sredstava) i više!"
641
-
642
- #: includes/views/wcpdf-extensions.php:54
643
- msgid ""
644
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
645
- "features:"
646
- msgstr ""
647
- "SuperCharge-ajte WooCommerce PDF Računi i Paketni Slipovi dodatak sa "
648
- "slijedećim mogućnostima:"
649
-
650
- #: includes/views/wcpdf-extensions.php:63
651
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
652
- msgstr "Pribavite WooCmmerce Računi & Paketni slipovi Profesionalnu verziju!"
653
-
654
- #: includes/views/wcpdf-extensions.php:71
655
- msgid "Automatically send payment reminders to your customers"
656
- msgstr ""
657
-
658
- #: includes/views/wcpdf-extensions.php:73
659
- msgid "WooCommerce Smart Reminder emails"
660
- msgstr ""
661
-
662
- #: includes/views/wcpdf-extensions.php:75
663
- msgid "<b>Completely automatic</b> scheduled emails"
664
- msgstr ""
665
-
666
- #: includes/views/wcpdf-extensions.php:76
667
- msgid ""
668
- "<b>Rich text editor</b> for the email text, including placeholders for data "
669
- "from the order (name, order total, etc)"
670
- msgstr ""
671
-
672
- #: includes/views/wcpdf-extensions.php:77
673
- msgid ""
674
- "Configure the exact requirements for sending an email (time after order, "
675
- "order status, payment method)"
676
- msgstr ""
677
-
678
- #: includes/views/wcpdf-extensions.php:78
679
- msgid ""
680
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
681
- "order language."
682
- msgstr ""
683
-
684
- #: includes/views/wcpdf-extensions.php:79
685
- msgid ""
686
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
687
- "reminders, repeat purchases)"
688
- msgstr ""
689
-
690
- #: includes/views/wcpdf-extensions.php:80
691
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
692
- msgstr ""
693
-
694
- #: includes/views/wcpdf-extensions.php:82
695
- msgid "Get WooCommerce Smart Reminder Emails"
696
- msgstr ""
697
-
698
- #: includes/views/wcpdf-extensions.php:91
699
- msgid "Upload all invoices automatically to your dropbox"
700
- msgstr "Prijenos svih računa automatski na Dropbox"
701
-
702
- #: includes/views/wcpdf-extensions.php:98
703
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
704
- msgstr "Povucite WooCOmmerce Račune i paketne slipove u dropbox!"
705
-
706
- #: includes/views/wcpdf-extensions.php:110
707
- msgid ""
708
- "Automatically send new orders or packing slips to your printer, as soon as "
709
- "the customer orders!"
710
- msgstr ""
711
- "AUtomatski pošalji nove narudžbe ili pakente slipove na vaš printer, u "
712
- "trenutku kada klijent izvši narudžbu!"
713
-
714
- #: includes/views/wcpdf-extensions.php:116
715
- msgid ""
716
- "Check out the WooCommerce Automatic Order Printing extension from our "
717
- "partners at Simba Hosting"
718
- msgstr ""
719
- "Provjerite WooCommerce dodatak ispis Automatske Narudžbe izrađen od strane "
720
- "naših partnera @ Simba Hosting"
721
-
722
- #: includes/views/wcpdf-extensions.php:117
723
- msgid "WooCommerce Automatic Order Printing"
724
- msgstr "WooCOmmerce Ispis Automatske narudžbe"
725
-
726
- #: includes/views/wcpdf-extensions.php:136
727
- #, php-format
728
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
729
- msgstr "Provjerite Premium PDF Računi & Slipovi paketa predloške na %s."
730
-
731
- #: includes/views/wcpdf-extensions.php:137
732
- #, php-format
733
- msgid "For custom templates, contact us at %s."
734
- msgstr "Za prilagođene teme, kontaktirajte nas na %s."
735
-
736
- #: includes/views/wcpdf-extensions.php:146
737
- msgid "Hide this message"
738
- msgstr ""
739
-
740
- #: includes/views/wcpdf-settings-page.php:8
741
- msgid "WooCommerce PDF Invoices"
742
- msgstr "Woocommerce PDF Računi"
743
-
744
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
745
- msgid "Billing Address:"
746
- msgstr "Adresa za naplatu:"
747
-
748
- #: templates/Simple/invoice.php:41
749
- msgid "Ship To:"
750
- msgstr "Dostava na:"
751
-
752
- #: templates/Simple/invoice.php:50
753
- msgid "Invoice Number:"
754
- msgstr "Broj računa:"
755
-
756
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
757
- msgid "Order Number:"
758
- msgstr "Broj narudžbe"
759
-
760
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
761
- msgid "Order Date:"
762
- msgstr "Datum narudžbe:"
763
-
764
- #: templates/Simple/invoice.php:69
765
- msgid "Payment Method:"
766
- msgstr "Metoda Plaćanja:"
767
-
768
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
769
- msgid "Product"
770
- msgstr "Proizvod"
771
-
772
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
773
- msgid "Quantity"
774
- msgstr "Količina"
775
-
776
- #: templates/Simple/invoice.php:85
777
- msgid "Price"
778
- msgstr "CIjena"
779
-
780
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
781
- msgid "Description"
782
- msgstr "Opis"
783
-
784
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
785
- msgid "SKU"
786
- msgstr "Broj artikla:"
787
-
788
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
789
- msgid "SKU:"
790
- msgstr "Broj Artikla:"
791
-
792
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
793
- msgid "Weight:"
794
- msgstr "Težina"
795
-
796
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
797
- msgid "Customer Notes"
798
- msgstr "Bilješke klijenta"
799
-
800
- #: templates/Simple/packing-slip.php:30
801
- msgid "Shipping Address:"
802
- msgstr "Adresa za dostavu:"
803
-
804
- #: templates/Simple/packing-slip.php:57
805
- msgid "Shipping Method:"
806
- msgstr "Metoda dostave:"
807
-
808
- #: woocommerce-pdf-invoices-packingslips.php:231
809
- #, php-format
810
- msgid ""
811
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
812
- "installed & activated!"
813
- msgstr ""
814
- "WooCommerce PDF Računi & Slipovi za pakete zahtjevaju instalaciju i "
815
- "aktivaciju %sWooCommerce%s!"
816
-
817
- #: woocommerce-pdf-invoices-packingslips.php:243
818
- msgid ""
819
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
820
- "higher recommended)."
821
- msgstr ""
822
-
823
- #: woocommerce-pdf-invoices-packingslips.php:244
824
- msgid "How to update your PHP version"
825
- msgstr ""
826
-
827
- #~ msgid "Attach invoice to:"
828
- #~ msgstr "Privitak računa za:"
829
-
830
- #~ msgid ""
831
- #~ "Display shipping address on invoice (in addition to the default billing "
832
- #~ "address) if different from billing address"
833
- #~ msgstr ""
834
- #~ "Prikazati adresu dostave na računu (kao dodatak predodređene adrese za "
835
- #~ "naplatu) ako je različita od adrese za naplatu"
836
-
837
- #~ msgid ""
838
- #~ "This is the number that will be used on the next invoice that is created. "
839
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
840
- #~ "first invoice that is created and increases for every new invoice. Note "
841
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
842
- #~ "number, this could create double invoice numbers!"
843
- #~ msgstr ""
844
- #~ "Ovo je broj koji će se koristiti na prvom slijedećem generiranom računu. "
845
- #~ "Prema pretpostavljenim postavkama, brojanje započinje od Woocommerce "
846
- #~ "broja narudžbe i prvog generiranog računa i broj se uvećava za svaki novi "
847
- #~ "račun. Obratite pozornost na to ako ovo premostite i postavite na nižu "
848
- #~ "vrijednost od najvišeg (PDF) broja računa, moglo bi se dogoditi da imate "
849
- #~ "kreirane dvostruke brojeve računa."
850
-
851
- #~ msgid "Invoice number format"
852
- #~ msgstr "Format broja računa"
853
-
854
- #~ msgid ""
855
- #~ "Disable automatic creation/attachment of invoices when only free products "
856
- #~ "are ordered"
857
- #~ msgstr ""
858
- #~ "Onemogući automatiziranu izradu/dodavanje računa kada su naručeni "
859
- #~ "isključivo besplatni proizvodi/usluge"
860
-
861
- #~ msgid ""
862
- #~ "Display billing address on packing slip (in addition to the default "
863
- #~ "shipping address) if different from shipping address"
864
- #~ msgstr ""
865
- #~ "Prikazati adresu za naplatu na paketnom slipu (kao dodatak "
866
- #~ "pretpostavljenoj adresi za dostavu) ako se ralikuje od adrese za dostavu"
867
-
868
- #~ msgid "WooCommerce PDF Invoices & Packing Slips"
869
- #~ msgstr "WooCOmmerce PDF Računi & Paketni Slipovi"
870
-
871
- #~ msgid "http://www.wpovernight.com"
872
- #~ msgstr "http://www.wpovernight.com"
873
-
874
- #~ msgid ""
875
- #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
876
- #~ msgstr ""
877
- #~ "Izradi, Ispiši & pošalji E-mailom Račune & paketne slipove za narudžbe "
878
- #~ "putem WooCommerce-a."
879
-
880
- #~ msgid "Ewout Fernhout"
881
- #~ msgstr "Ewout Fernhout"
882
-
883
- #~ msgid "Template"
884
- #~ msgstr "Predložak"
885
-
886
- #~ msgid "Admin New Order email"
887
- #~ msgstr "e-mail obavijest administratoru o novoj narudžbi"
888
-
889
- #~ msgid "Customer Processing Order email"
890
- #~ msgstr "e-mail obavijest klijentu o postupku obrade narudžbe"
891
-
892
- #~ msgid "Customer Completed Order email"
893
- #~ msgstr "e-mail obavijest klijentu o dovršenoj narudžbi"
894
-
895
- #~ msgid "Customer Invoice email"
896
- #~ msgstr "E-mail klijenta za dostavu računa"
897
-
898
- #~ msgid "Interface"
899
- #~ msgstr "Sučelje"
900
-
901
- #~ msgid "PDF Template settings"
902
- #~ msgstr "PDF predložak : postavke"
903
-
904
- #~ msgid "Display built-in sequential invoice number"
905
- #~ msgstr "Prikaži ugrađenu sekvencu broja računa"
906
-
907
- #~ msgid "Use old tmp folder"
908
- #~ msgstr "Koristiti stari tmp folder"
909
-
910
- #~ msgid ""
911
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
912
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
913
- #~ "not recommended on new installs!"
914
- #~ msgstr ""
915
- #~ "Prije verzije 1.5 ili PDF računa, privremene datoteke su se pohranjivale "
916
- #~ "u plugin folder. Ove postavke su namijenjene samo za pozadinsku "
917
- #~ "kompatibilnost, nisu namijenjene novim instalacijama!"
918
-
919
- #~ msgid "PDF Packing Slips"
920
- #~ msgstr "PDF Paketni slipovi"
921
-
922
- #~ msgid "PDF Invoice"
923
- #~ msgstr "PDF račun"
924
-
925
- #~ msgid "PDF Packing Slip"
926
- #~ msgstr "PDF paketni slip"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
6
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
7
+ "Last-Translator: spineict <admin@spine-ict.hr>\n"
8
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
9
+ "Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
14
+ "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.12\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
+ "X-Loco-Target-Locale: hr_HR\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
27
+ msgid "Invoice Number"
28
+ msgstr "Broj računa"
29
+
30
+ #: includes/class-wcpdf-admin.php:105
31
+ msgid "Create PDF"
32
+ msgstr "Generiraj PDF"
33
+
34
+ #: includes/class-wcpdf-admin.php:115
35
+ msgid "PDF Invoice data"
36
+ msgstr "Sadržaj PDF računa"
37
+
38
+ #: includes/class-wcpdf-admin.php:166
39
+ #: includes/documents/class-wcpdf-invoice.php:32
40
+ #: includes/documents/class-wcpdf-invoice.php:41
41
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
42
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
43
+ msgid "Invoice"
44
+ msgstr "Račun"
45
+
46
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
47
+ #: templates/Simple/invoice.php:56
48
+ msgid "Invoice Date:"
49
+ msgstr "Datum računa:"
50
+
51
+ #: includes/class-wcpdf-admin.php:189
52
+ msgid "Set invoice number & date"
53
+ msgstr ""
54
+
55
+ #: includes/class-wcpdf-admin.php:196
56
+ msgid "Invoice Number (unformatted!)"
57
+ msgstr "Broj računa (neformatiran!)"
58
+
59
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
60
+ msgid "h"
61
+ msgstr "s"
62
+
63
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
64
+ msgid "m"
65
+ msgstr "m"
66
+
67
+ #: includes/class-wcpdf-frontend.php:55
68
+ msgid "Download invoice (PDF)"
69
+ msgstr "Dohvati račun(PDF)"
70
+
71
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
72
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
73
+ msgid "You do not have sufficient permissions to access this page."
74
+ msgstr "Nemate dovoljne ovlasti kako bi pristupili ovoj stranici."
75
+
76
+ #: includes/class-wcpdf-main.php:141
77
+ msgid "Some of the export parameters are missing."
78
+ msgstr "Neki od parametara za izvoz nedostaju."
79
+
80
+ #: includes/class-wcpdf-settings-callbacks.php:27
81
+ msgid ""
82
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
83
+ "Do not use them on a live website!"
84
+ msgstr ""
85
+ "Upozorenje! Donje postavke su namijenjene isključivo za debugging/"
86
+ "development. Ne koristite ih na stranicama koje su puštene u produkciju."
87
+
88
+ #: includes/class-wcpdf-settings-callbacks.php:36
89
+ msgid ""
90
+ "These are used for the (optional) footer columns in the <em>Modern "
91
+ "(Premium)</em> template, but can also be used for other elements in your "
92
+ "custom template"
93
+ msgstr ""
94
+ "Ovo se koristi za (opcionalno) retke u podnožju (footeru) <em>Modern "
95
+ "(Premium)</em> predlošku, ali se također može koristiti za druge elemente u "
96
+ "vašem prilagođenom predlošku"
97
+
98
+ #: includes/class-wcpdf-settings-callbacks.php:301
99
+ msgid "Image resolution"
100
+ msgstr "Rezolucija slike"
101
+
102
+ #: includes/class-wcpdf-settings-callbacks.php:325
103
+ msgid "Save"
104
+ msgstr ""
105
+
106
+ #: includes/class-wcpdf-settings-debug.php:34
107
+ msgid "Debug settings"
108
+ msgstr "Postavke debug-a"
109
+
110
+ #: includes/class-wcpdf-settings-debug.php:40
111
+ msgid "Legacy mode"
112
+ msgstr ""
113
+
114
+ #: includes/class-wcpdf-settings-debug.php:46
115
+ msgid ""
116
+ "Legacy mode ensures compatibility with templates and filters from previous "
117
+ "versions."
118
+ msgstr ""
119
+
120
+ #: includes/class-wcpdf-settings-debug.php:52
121
+ msgid "Enable debug output"
122
+ msgstr "Omogućiti debug prikaz"
123
+
124
+ #: includes/class-wcpdf-settings-debug.php:58
125
+ msgid ""
126
+ "Enable this option to output plugin errors if you're getting a blank page or "
127
+ "other PDF generation issues"
128
+ msgstr ""
129
+ "Omogući ovu opciju kako bi dohvatili greške priključka ako vam se događa da "
130
+ "dobivate praznu stranicu nakon generiranja PDF-a ili imate neke druge "
131
+ "poteškoće"
132
+
133
+ #: includes/class-wcpdf-settings-debug.php:64
134
+ msgid "Output to HTML"
135
+ msgstr "Prikaži u HTML-u"
136
+
137
+ #: includes/class-wcpdf-settings-debug.php:70
138
+ msgid ""
139
+ "Send the template output as HTML to the browser instead of creating a PDF."
140
+ msgstr "Pošalji predložak u HTML formatu umjesto generiranja PDF-a."
141
+
142
+ #: includes/class-wcpdf-settings-documents.php:29
143
+ #: includes/class-wcpdf-settings.php:84
144
+ msgid "Documents"
145
+ msgstr ""
146
+
147
+ #: includes/class-wcpdf-settings-documents.php:45
148
+ msgid ""
149
+ "All available documents are listed below. Click on a document to configure "
150
+ "it."
151
+ msgstr ""
152
+
153
+ #: includes/class-wcpdf-settings-general.php:37
154
+ msgid "General settings"
155
+ msgstr "Opće postavke"
156
+
157
+ #: includes/class-wcpdf-settings-general.php:43
158
+ msgid "How do you want to view the PDF?"
159
+ msgstr "Što želite učiniti s PDF-om?"
160
+
161
+ #: includes/class-wcpdf-settings-general.php:50
162
+ msgid "Download the PDF"
163
+ msgstr "Preuzmi PDF "
164
+
165
+ #: includes/class-wcpdf-settings-general.php:51
166
+ msgid "Open the PDF in a new browser tab/window"
167
+ msgstr "Otvorite PDF u novoj kartici preglednika / u novom prozoru"
168
+
169
+ #: includes/class-wcpdf-settings-general.php:58
170
+ msgid "Choose a template"
171
+ msgstr "Odaberite predložak"
172
+
173
+ #: includes/class-wcpdf-settings-general.php:65
174
+ #, php-format
175
+ msgid ""
176
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
177
+ "your (child) theme in <code>%s</code> to customize them"
178
+ msgstr ""
179
+ "Želite koristiti vlastiti predložak? Kopirajte sve datoteke iz <code>%s</"
180
+ "code> u vašu \"child\" temu u <code>%s</code> kako bi ih mogli prilagođavati"
181
+
182
+ #: includes/class-wcpdf-settings-general.php:71
183
+ msgid "Paper size"
184
+ msgstr "Veličina papira"
185
+
186
+ #: includes/class-wcpdf-settings-general.php:78
187
+ msgid "A4"
188
+ msgstr "A4"
189
+
190
+ #: includes/class-wcpdf-settings-general.php:79
191
+ msgid "Letter"
192
+ msgstr "Pismo"
193
+
194
+ #: includes/class-wcpdf-settings-general.php:86
195
+ msgid "Extended currency symbol support"
196
+ msgstr ""
197
+
198
+ #: includes/class-wcpdf-settings-general.php:92
199
+ msgid "Enable this if your currency symbol is not displaying properly"
200
+ msgstr ""
201
+
202
+ #: includes/class-wcpdf-settings-general.php:98
203
+ msgid "Shop header/logo"
204
+ msgstr "Zaglavlje/Logo trgovine"
205
+
206
+ #: includes/class-wcpdf-settings-general.php:104
207
+ msgid "Select or upload your invoice header/logo"
208
+ msgstr "Odaberite ili prenesite datoteku zaglavlja/logo-a za račun"
209
+
210
+ #: includes/class-wcpdf-settings-general.php:105
211
+ msgid "Set image"
212
+ msgstr "Odabir slike"
213
+
214
+ #: includes/class-wcpdf-settings-general.php:106
215
+ msgid "Remove image"
216
+ msgstr "Ukloni sliku"
217
+
218
+ #: includes/class-wcpdf-settings-general.php:113
219
+ msgid "Shop Name"
220
+ msgstr "Ime trgovine"
221
+
222
+ #: includes/class-wcpdf-settings-general.php:126
223
+ msgid "Shop Address"
224
+ msgstr "Adresa trgovine"
225
+
226
+ #: includes/class-wcpdf-settings-general.php:141
227
+ msgid "Footer: terms & conditions, policies, etc."
228
+ msgstr "Podnožje: uvjeti & statusne stvari, poslovanje i sl."
229
+
230
+ #: includes/class-wcpdf-settings-general.php:156
231
+ msgid "Extra template fields"
232
+ msgstr "Dodatna polja predloška"
233
+
234
+ #: includes/class-wcpdf-settings-general.php:162
235
+ msgid "Extra field 1"
236
+ msgstr "Dodatno polje 1"
237
+
238
+ #: includes/class-wcpdf-settings-general.php:170
239
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
240
+ msgstr "Ovo je 1 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
241
+
242
+ #: includes/class-wcpdf-settings-general.php:177
243
+ msgid "Extra field 2"
244
+ msgstr "Dodatno polje 2"
245
+
246
+ #: includes/class-wcpdf-settings-general.php:185
247
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
248
+ msgstr "Ovo je 2 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
249
+
250
+ #: includes/class-wcpdf-settings-general.php:192
251
+ msgid "Extra field 3"
252
+ msgstr "Dodatno polje 3"
253
+
254
+ #: includes/class-wcpdf-settings-general.php:200
255
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
256
+ msgstr "Ovo je 3 kolona footera (podnožja) u <i>Modern (Premium)</i> predlošku"
257
+
258
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
259
+ msgid "PDF Invoices"
260
+ msgstr "PDF Račun"
261
+
262
+ #: includes/class-wcpdf-settings.php:58
263
+ msgid "Settings"
264
+ msgstr "Postavke"
265
+
266
+ #: includes/class-wcpdf-settings.php:71
267
+ msgid "Documentation"
268
+ msgstr ""
269
+
270
+ #: includes/class-wcpdf-settings.php:72
271
+ msgid "Support Forum"
272
+ msgstr ""
273
+
274
+ #: includes/class-wcpdf-settings.php:83
275
+ msgid "General"
276
+ msgstr "Općenito"
277
+
278
+ #: includes/class-wcpdf-settings.php:89
279
+ msgid "Status"
280
+ msgstr "Status"
281
+
282
+ #: includes/compatibility/class-wc-core-compatibility.php:222
283
+ msgid "WooCommerce"
284
+ msgstr ""
285
+
286
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
287
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
288
+ msgid "N/A"
289
+ msgstr "Ništa"
290
+
291
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
292
+ msgid "Payment method"
293
+ msgstr "Metoda plaćanja"
294
+
295
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
296
+ msgid "Shipping method"
297
+ msgstr "Metoda dostave"
298
+
299
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
300
+ #, php-format
301
+ msgid "(includes %s)"
302
+ msgstr ""
303
+
304
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
305
+ #, php-format
306
+ msgid "(Includes %s)"
307
+ msgstr "(Uključujući %s)"
308
+
309
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
310
+ msgid "Subtotal"
311
+ msgstr "Ukupno (subtotal)"
312
+
313
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
314
+ msgid "Shipping"
315
+ msgstr "Dostava"
316
+
317
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
318
+ msgid "Discount"
319
+ msgstr "Popust"
320
+
321
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
322
+ msgid "VAT"
323
+ msgstr "PDV"
324
+
325
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
326
+ msgid "Tax rate"
327
+ msgstr "Visina poreza"
328
+
329
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
330
+ msgid "Total ex. VAT"
331
+ msgstr "Ukupno bez PDV-a"
332
+
333
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
334
+ msgid "Total"
335
+ msgstr "Ukupno"
336
+
337
+ #: includes/documents/abstract-wcpdf-order-document.php:674
338
+ msgid "Admin email"
339
+ msgstr ""
340
+
341
+ #: includes/documents/abstract-wcpdf-order-document.php:677
342
+ msgid "Manual email"
343
+ msgstr ""
344
+
345
+ #: includes/documents/class-wcpdf-invoice.php:85
346
+ msgid "invoice"
347
+ msgid_plural "invoices"
348
+ msgstr[0] "Račun"
349
+ msgstr[1] "Računi"
350
+ msgstr[2] ""
351
+
352
+ #: includes/documents/class-wcpdf-invoice.php:130
353
+ #: includes/documents/class-wcpdf-packing-slip.php:94
354
+ msgid "Enable"
355
+ msgstr ""
356
+
357
+ #: includes/documents/class-wcpdf-invoice.php:141
358
+ msgid "Attach to:"
359
+ msgstr ""
360
+
361
+ #: includes/documents/class-wcpdf-invoice.php:148
362
+ #, php-format
363
+ msgid ""
364
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
365
+ "permissions for this folder! Without having write access to this folder, the "
366
+ "plugin will not be able to email invoices."
367
+ msgstr ""
368
+ "Čini se kako je temp folder (<code>%s</code>) zaštićen od pisanja, "
369
+ "provjerite dozvole za ovaj folder. Bez ovlasti za upisivanje u ovaj folder "
370
+ "plugin neće biti u mogućnosti poslati račune e-mailom."
371
+
372
+ #: includes/documents/class-wcpdf-invoice.php:154
373
+ msgid "Display shipping address"
374
+ msgstr "Prikazati adresu dostave"
375
+
376
+ #: includes/documents/class-wcpdf-invoice.php:160
377
+ msgid ""
378
+ "Display shipping address (in addition to the default billing address) if "
379
+ "different from billing address"
380
+ msgstr ""
381
+
382
+ #: includes/documents/class-wcpdf-invoice.php:166
383
+ #: includes/documents/class-wcpdf-packing-slip.php:117
384
+ msgid "Display email address"
385
+ msgstr "Prikaži e-mail adresu"
386
+
387
+ #: includes/documents/class-wcpdf-invoice.php:177
388
+ #: includes/documents/class-wcpdf-packing-slip.php:128
389
+ msgid "Display phone number"
390
+ msgstr "Prikaži broj telefona"
391
+
392
+ #: includes/documents/class-wcpdf-invoice.php:188
393
+ msgid "Display invoice date"
394
+ msgstr "Prikaži datum izrade računa"
395
+
396
+ #: includes/documents/class-wcpdf-invoice.php:200
397
+ msgid "Display invoice number"
398
+ msgstr ""
399
+
400
+ #: includes/documents/class-wcpdf-invoice.php:212
401
+ msgid "Next invoice number (without prefix/suffix etc.)"
402
+ msgstr "Slijedeći broj računa (bez prefiksa i sufiksa)"
403
+
404
+ #: includes/documents/class-wcpdf-invoice.php:218
405
+ msgid ""
406
+ "This is the number that will be used for the next document. By default, "
407
+ "numbering starts from 1 and increases for every new document. Note that if "
408
+ "you override this and set it lower than the current/highest number, this "
409
+ "could create duplicate numbers!"
410
+ msgstr ""
411
+
412
+ #: includes/documents/class-wcpdf-invoice.php:224
413
+ msgid "Number format"
414
+ msgstr ""
415
+
416
+ #: includes/documents/class-wcpdf-invoice.php:232
417
+ msgid "Prefix"
418
+ msgstr "Prefiks"
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:234
421
+ msgid ""
422
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
423
+ "respectively"
424
+ msgstr ""
425
+ "kako bi koristili godinu i/ili mjesec, koristite [invoice_year] ili "
426
+ "[invoice_month] poštujući"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:237
429
+ msgid "Suffix"
430
+ msgstr "Sufiks"
431
+
432
+ #: includes/documents/class-wcpdf-invoice.php:242
433
+ msgid "Padding"
434
+ msgstr "prostor "
435
+
436
+ #: includes/documents/class-wcpdf-invoice.php:245
437
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
438
+ msgstr ""
439
+ "unesite broj znamenki ovdje - unesite\"6\" ako želite prikazati broj 42 kao "
440
+ "000042"
441
+
442
+ #: includes/documents/class-wcpdf-invoice.php:248
443
+ msgid ""
444
+ "note: if you have already created a custom invoice number format with a "
445
+ "filter, the above settings will be ignored"
446
+ msgstr ""
447
+ "Bilješka: Ako ste već kreirali prilagođeni format broja računa s filterom, "
448
+ "gornje postavke biti će zanemarene"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:254
451
+ msgid "Reset invoice number yearly"
452
+ msgstr "Resetirati broj računa na godišnjoj razini"
453
+
454
+ #: includes/documents/class-wcpdf-invoice.php:265
455
+ msgid "Allow My Account invoice download"
456
+ msgstr "Dozvoliti preuzimanje računa za moj korisnički profil"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:272
459
+ msgid "Only when an invoice is already created/emailed"
460
+ msgstr "Samo kada je račun već izrađen/poslan"
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:273
463
+ msgid "Only for specific order statuses (define below)"
464
+ msgstr "Samo za specifične statuse narudžbe (definirati ispod)"
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:274
467
+ msgid "Always"
468
+ msgstr "Uvijek"
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:275
471
+ msgid "Never"
472
+ msgstr "Nikad"
473
+
474
+ #: includes/documents/class-wcpdf-invoice.php:290
475
+ msgid "Enable invoice number column in the orders list"
476
+ msgstr "Omogućite prikaz stupca s brojem računa u listi narudžbi"
477
+
478
+ #: includes/documents/class-wcpdf-invoice.php:301
479
+ msgid "Disable for free products"
480
+ msgstr "Onemogući za besplatne proizvode"
481
+
482
+ #: includes/documents/class-wcpdf-invoice.php:307
483
+ msgid ""
484
+ "Disable automatic creation/attachment when only free products are ordered"
485
+ msgstr ""
486
+
487
+ #: includes/documents/class-wcpdf-invoice.php:321
488
+ msgid "Invoice numbers are created by a third-party extension."
489
+ msgstr ""
490
+
491
+ #: includes/documents/class-wcpdf-invoice.php:323
492
+ #, php-format
493
+ msgid "Configure it <a href=\"%s\">here</a>."
494
+ msgstr ""
495
+
496
+ #: includes/documents/class-wcpdf-packing-slip.php:32
497
+ #: includes/documents/class-wcpdf-packing-slip.php:41
498
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
499
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
500
+ msgid "Packing Slip"
501
+ msgstr "Paketni slip"
502
+
503
+ #: includes/documents/class-wcpdf-packing-slip.php:53
504
+ msgid "packing-slip"
505
+ msgid_plural "packing-slips"
506
+ msgstr[0] "Slip uz paket"
507
+ msgstr[1] "Slipovi za pakete"
508
+ msgstr[2] ""
509
+
510
+ #: includes/documents/class-wcpdf-packing-slip.php:105
511
+ msgid "Display billing address"
512
+ msgstr "Prikazati adresu za naplatu"
513
+
514
+ #: includes/documents/class-wcpdf-packing-slip.php:111
515
+ msgid ""
516
+ "Display billing address (in addition to the default shipping address) if "
517
+ "different from shipping address"
518
+ msgstr ""
519
+
520
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
521
+ msgid "Legacy Document"
522
+ msgstr ""
523
+
524
+ #: includes/views/wcpdf-extensions.php:15
525
+ msgid "Check out these premium extensions!"
526
+ msgstr "Provjerite ove premium dodatke!"
527
+
528
+ #: includes/views/wcpdf-extensions.php:16
529
+ msgid "click items to read more"
530
+ msgstr "klik na predmet za detalje"
531
+
532
+ #: includes/views/wcpdf-extensions.php:21
533
+ msgid ""
534
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
535
+ "system"
536
+ msgstr ""
537
+
538
+ #: includes/views/wcpdf-extensions.php:23
539
+ msgid ""
540
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
541
+ "premium extensions:"
542
+ msgstr ""
543
+
544
+ #: includes/views/wcpdf-extensions.php:24
545
+ msgid "Professional features:"
546
+ msgstr ""
547
+
548
+ #: includes/views/wcpdf-extensions.php:26
549
+ #: includes/views/wcpdf-extensions.php:56
550
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
551
+ msgstr ""
552
+ "E-mail/Ispis/Preuzimanje <b>PDF Kreditne bilješke & Proforma Računa</b>"
553
+
554
+ #: includes/views/wcpdf-extensions.php:27
555
+ #: includes/views/wcpdf-extensions.php:57
556
+ msgid ""
557
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
558
+ "packing slips, for example to a drop-shipper or a supplier."
559
+ msgstr ""
560
+ "Pošalji odvojeni <b>E-mail obavijest</b> sa (ili bez) PDF računa/paketnih "
561
+ "slipova, za primjer dostavljaču ili "
562
+
563
+ #: includes/views/wcpdf-extensions.php:28
564
+ #: includes/views/wcpdf-extensions.php:58
565
+ msgid ""
566
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
567
+ "document) to the WooCommerce emails of your choice."
568
+ msgstr ""
569
+ "Dodajte <b> do 3 statične datoteke</b> (Npr. dokument Uvjeti poslovanja) u "
570
+ "WooCommerce e-mail poruke po vašem izboru"
571
+
572
+ #: includes/views/wcpdf-extensions.php:29
573
+ #: includes/views/wcpdf-extensions.php:59
574
+ msgid ""
575
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
576
+ "and credit notes or utilize the main invoice numbering system"
577
+ msgstr ""
578
+ "Korištenje <b>odvojenih sustava knjiženja</b> i/ili formata za proforma "
579
+ "račune i kreditne bilješke ili primjena glavnog računskog sustava knjiženja"
580
+
581
+ #: includes/views/wcpdf-extensions.php:30
582
+ #: includes/views/wcpdf-extensions.php:60
583
+ msgid ""
584
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
585
+ "additional custom fields, font sizes etc. without the need to create a "
586
+ "custom template."
587
+ msgstr ""
588
+ "<b>Uredite</b> format <b>adrese za dostavu i naplatu</b> kako bi dodali "
589
+ "dodatna prilagođena polja, veličine fonta i sl. bez potrebe za izradom novog "
590
+ "predloška. "
591
+
592
+ #: includes/views/wcpdf-extensions.php:31
593
+ #: includes/views/wcpdf-extensions.php:61
594
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
595
+ msgstr "Koristite dodatak u višejezičnom <b>WPML</b> postavkama"
596
+
597
+ #: includes/views/wcpdf-extensions.php:33
598
+ #: includes/views/wcpdf-extensions.php:131
599
+ msgid "Advanced, customizable templates"
600
+ msgstr "Napredni, prilagodljivi predlošci"
601
+
602
+ #: includes/views/wcpdf-extensions.php:35
603
+ #: includes/views/wcpdf-extensions.php:134
604
+ msgid ""
605
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
606
+ "your needs with a drag & drop customizer"
607
+ msgstr ""
608
+ "Potpuna prilagodba sadržaja računa (cijene, porezi, umanjene slike) vašim "
609
+ "potrebamakorištenjem povuci & ispusti uređivača"
610
+
611
+ #: includes/views/wcpdf-extensions.php:36
612
+ #: includes/views/wcpdf-extensions.php:135
613
+ msgid "Two extra stylish premade templates (Modern & Business)"
614
+ msgstr "Dva vrlo stilizirana pripremljena predloška (Moderni & Poslovni)"
615
+
616
+ #: includes/views/wcpdf-extensions.php:38
617
+ msgid "Upload automatically to dropbox"
618
+ msgstr ""
619
+
620
+ #: includes/views/wcpdf-extensions.php:40
621
+ #: includes/views/wcpdf-extensions.php:97
622
+ msgid ""
623
+ "This extension conveniently uploads all the invoices (and other pdf "
624
+ "documents from the professional extension) that are emailed to your "
625
+ "customers to Dropbox. The best way to keep your invoice administration up to "
626
+ "date!"
627
+ msgstr ""
628
+ "Ovo proširenje pouzdano prenosi sve račune ( i druge PDF dokumente s "
629
+ "profesionalnog proširenja) koja su poslana e-mailom vašim klijentima, "
630
+ "izravno na Dropbox. Najbolji način za održavanje vaše administracije računa "
631
+ "preglednim i ažurnim."
632
+
633
+ #: includes/views/wcpdf-extensions.php:43
634
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
635
+ msgstr ""
636
+
637
+ #: includes/views/wcpdf-extensions.php:52
638
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
639
+ msgstr ""
640
+ "Idemo na PRO: Proforma računi, kreditne bilješke (=povrat sredstava) i više!"
641
+
642
+ #: includes/views/wcpdf-extensions.php:54
643
+ msgid ""
644
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
645
+ "features:"
646
+ msgstr ""
647
+ "SuperCharge-ajte WooCommerce PDF Računi i Paketni Slipovi dodatak sa "
648
+ "slijedećim mogućnostima:"
649
+
650
+ #: includes/views/wcpdf-extensions.php:63
651
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
652
+ msgstr "Pribavite WooCmmerce Računi & Paketni slipovi Profesionalnu verziju!"
653
+
654
+ #: includes/views/wcpdf-extensions.php:71
655
+ msgid "Automatically send payment reminders to your customers"
656
+ msgstr ""
657
+
658
+ #: includes/views/wcpdf-extensions.php:73
659
+ msgid "WooCommerce Smart Reminder emails"
660
+ msgstr ""
661
+
662
+ #: includes/views/wcpdf-extensions.php:75
663
+ msgid "<b>Completely automatic</b> scheduled emails"
664
+ msgstr ""
665
+
666
+ #: includes/views/wcpdf-extensions.php:76
667
+ msgid ""
668
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
669
+ "from the order (name, order total, etc)"
670
+ msgstr ""
671
+
672
+ #: includes/views/wcpdf-extensions.php:77
673
+ msgid ""
674
+ "Configure the exact requirements for sending an email (time after order, "
675
+ "order status, payment method)"
676
+ msgstr ""
677
+
678
+ #: includes/views/wcpdf-extensions.php:78
679
+ msgid ""
680
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
681
+ "order language."
682
+ msgstr ""
683
+
684
+ #: includes/views/wcpdf-extensions.php:79
685
+ msgid ""
686
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
687
+ "reminders, repeat purchases)"
688
+ msgstr ""
689
+
690
+ #: includes/views/wcpdf-extensions.php:80
691
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
692
+ msgstr ""
693
+
694
+ #: includes/views/wcpdf-extensions.php:82
695
+ msgid "Get WooCommerce Smart Reminder Emails"
696
+ msgstr ""
697
+
698
+ #: includes/views/wcpdf-extensions.php:91
699
+ msgid "Upload all invoices automatically to your dropbox"
700
+ msgstr "Prijenos svih računa automatski na Dropbox"
701
+
702
+ #: includes/views/wcpdf-extensions.php:98
703
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
704
+ msgstr "Povucite WooCOmmerce Račune i paketne slipove u dropbox!"
705
+
706
+ #: includes/views/wcpdf-extensions.php:110
707
+ msgid ""
708
+ "Automatically send new orders or packing slips to your printer, as soon as "
709
+ "the customer orders!"
710
+ msgstr ""
711
+ "AUtomatski pošalji nove narudžbe ili pakente slipove na vaš printer, u "
712
+ "trenutku kada klijent izvši narudžbu!"
713
+
714
+ #: includes/views/wcpdf-extensions.php:116
715
+ msgid ""
716
+ "Check out the WooCommerce Automatic Order Printing extension from our "
717
+ "partners at Simba Hosting"
718
+ msgstr ""
719
+ "Provjerite WooCommerce dodatak ispis Automatske Narudžbe izrađen od strane "
720
+ "naših partnera @ Simba Hosting"
721
+
722
+ #: includes/views/wcpdf-extensions.php:117
723
+ msgid "WooCommerce Automatic Order Printing"
724
+ msgstr "WooCOmmerce Ispis Automatske narudžbe"
725
+
726
+ #: includes/views/wcpdf-extensions.php:136
727
+ #, php-format
728
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
729
+ msgstr "Provjerite Premium PDF Računi & Slipovi paketa predloške na %s."
730
+
731
+ #: includes/views/wcpdf-extensions.php:137
732
+ #, php-format
733
+ msgid "For custom templates, contact us at %s."
734
+ msgstr "Za prilagođene teme, kontaktirajte nas na %s."
735
+
736
+ #: includes/views/wcpdf-extensions.php:146
737
+ msgid "Hide this message"
738
+ msgstr ""
739
+
740
+ #: includes/views/wcpdf-settings-page.php:8
741
+ msgid "WooCommerce PDF Invoices"
742
+ msgstr "Woocommerce PDF Računi"
743
+
744
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
745
+ msgid "Billing Address:"
746
+ msgstr "Adresa za naplatu:"
747
+
748
+ #: templates/Simple/invoice.php:41
749
+ msgid "Ship To:"
750
+ msgstr "Dostava na:"
751
+
752
+ #: templates/Simple/invoice.php:50
753
+ msgid "Invoice Number:"
754
+ msgstr "Broj računa:"
755
+
756
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
757
+ msgid "Order Number:"
758
+ msgstr "Broj narudžbe"
759
+
760
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
761
+ msgid "Order Date:"
762
+ msgstr "Datum narudžbe:"
763
+
764
+ #: templates/Simple/invoice.php:69
765
+ msgid "Payment Method:"
766
+ msgstr "Metoda Plaćanja:"
767
+
768
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
769
+ msgid "Product"
770
+ msgstr "Proizvod"
771
+
772
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
773
+ msgid "Quantity"
774
+ msgstr "Količina"
775
+
776
+ #: templates/Simple/invoice.php:85
777
+ msgid "Price"
778
+ msgstr "CIjena"
779
+
780
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
781
+ msgid "Description"
782
+ msgstr "Opis"
783
+
784
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
785
+ msgid "SKU"
786
+ msgstr "Broj artikla:"
787
+
788
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
789
+ msgid "SKU:"
790
+ msgstr "Broj Artikla:"
791
+
792
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
793
+ msgid "Weight:"
794
+ msgstr "Težina"
795
+
796
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
797
+ msgid "Customer Notes"
798
+ msgstr "Bilješke klijenta"
799
+
800
+ #: templates/Simple/packing-slip.php:30
801
+ msgid "Shipping Address:"
802
+ msgstr "Adresa za dostavu:"
803
+
804
+ #: templates/Simple/packing-slip.php:57
805
+ msgid "Shipping Method:"
806
+ msgstr "Metoda dostave:"
807
+
808
+ #: woocommerce-pdf-invoices-packingslips.php:231
809
+ #, php-format
810
+ msgid ""
811
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
812
+ "installed & activated!"
813
+ msgstr ""
814
+ "WooCommerce PDF Računi & Slipovi za pakete zahtjevaju instalaciju i "
815
+ "aktivaciju %sWooCommerce%s!"
816
+
817
+ #: woocommerce-pdf-invoices-packingslips.php:243
818
+ msgid ""
819
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
820
+ "higher recommended)."
821
+ msgstr ""
822
+
823
+ #: woocommerce-pdf-invoices-packingslips.php:244
824
+ msgid "How to update your PHP version"
825
+ msgstr ""
826
+
827
+ #~ msgid "Attach invoice to:"
828
+ #~ msgstr "Privitak računa za:"
829
+
830
+ #~ msgid ""
831
+ #~ "Display shipping address on invoice (in addition to the default billing "
832
+ #~ "address) if different from billing address"
833
+ #~ msgstr ""
834
+ #~ "Prikazati adresu dostave na računu (kao dodatak predodređene adrese za "
835
+ #~ "naplatu) ako je različita od adrese za naplatu"
836
+
837
+ #~ msgid ""
838
+ #~ "This is the number that will be used on the next invoice that is created. "
839
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
840
+ #~ "first invoice that is created and increases for every new invoice. Note "
841
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
842
+ #~ "number, this could create double invoice numbers!"
843
+ #~ msgstr ""
844
+ #~ "Ovo je broj koji će se koristiti na prvom slijedećem generiranom računu. "
845
+ #~ "Prema pretpostavljenim postavkama, brojanje započinje od Woocommerce "
846
+ #~ "broja narudžbe i prvog generiranog računa i broj se uvećava za svaki novi "
847
+ #~ "račun. Obratite pozornost na to ako ovo premostite i postavite na nižu "
848
+ #~ "vrijednost od najvišeg (PDF) broja računa, moglo bi se dogoditi da imate "
849
+ #~ "kreirane dvostruke brojeve računa."
850
+
851
+ #~ msgid "Invoice number format"
852
+ #~ msgstr "Format broja računa"
853
+
854
+ #~ msgid ""
855
+ #~ "Disable automatic creation/attachment of invoices when only free products "
856
+ #~ "are ordered"
857
+ #~ msgstr ""
858
+ #~ "Onemogući automatiziranu izradu/dodavanje računa kada su naručeni "
859
+ #~ "isključivo besplatni proizvodi/usluge"
860
+
861
+ #~ msgid ""
862
+ #~ "Display billing address on packing slip (in addition to the default "
863
+ #~ "shipping address) if different from shipping address"
864
+ #~ msgstr ""
865
+ #~ "Prikazati adresu za naplatu na paketnom slipu (kao dodatak "
866
+ #~ "pretpostavljenoj adresi za dostavu) ako se ralikuje od adrese za dostavu"
867
+
868
+ #~ msgid "WooCommerce PDF Invoices & Packing Slips"
869
+ #~ msgstr "WooCOmmerce PDF Računi & Paketni Slipovi"
870
+
871
+ #~ msgid "http://www.wpovernight.com"
872
+ #~ msgstr "http://www.wpovernight.com"
873
+
874
+ #~ msgid ""
875
+ #~ "Create, print & email PDF invoices & packing slips for WooCommerce orders."
876
+ #~ msgstr ""
877
+ #~ "Izradi, Ispiši & pošalji E-mailom Račune & paketne slipove za narudžbe "
878
+ #~ "putem WooCommerce-a."
879
+
880
+ #~ msgid "Ewout Fernhout"
881
+ #~ msgstr "Ewout Fernhout"
882
+
883
+ #~ msgid "Template"
884
+ #~ msgstr "Predložak"
885
+
886
+ #~ msgid "Admin New Order email"
887
+ #~ msgstr "e-mail obavijest administratoru o novoj narudžbi"
888
+
889
+ #~ msgid "Customer Processing Order email"
890
+ #~ msgstr "e-mail obavijest klijentu o postupku obrade narudžbe"
891
+
892
+ #~ msgid "Customer Completed Order email"
893
+ #~ msgstr "e-mail obavijest klijentu o dovršenoj narudžbi"
894
+
895
+ #~ msgid "Customer Invoice email"
896
+ #~ msgstr "E-mail klijenta za dostavu računa"
897
+
898
+ #~ msgid "Interface"
899
+ #~ msgstr "Sučelje"
900
+
901
+ #~ msgid "PDF Template settings"
902
+ #~ msgstr "PDF predložak : postavke"
903
+
904
+ #~ msgid "Display built-in sequential invoice number"
905
+ #~ msgstr "Prikaži ugrađenu sekvencu broja računa"
906
+
907
+ #~ msgid "Use old tmp folder"
908
+ #~ msgstr "Koristiti stari tmp folder"
909
+
910
+ #~ msgid ""
911
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
912
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
913
+ #~ "not recommended on new installs!"
914
+ #~ msgstr ""
915
+ #~ "Prije verzije 1.5 ili PDF računa, privremene datoteke su se pohranjivale "
916
+ #~ "u plugin folder. Ove postavke su namijenjene samo za pozadinsku "
917
+ #~ "kompatibilnost, nisu namijenjene novim instalacijama!"
918
+
919
+ #~ msgid "PDF Packing Slips"
920
+ #~ msgstr "PDF Paketni slipovi"
921
+
922
+ #~ msgid "PDF Invoice"
923
+ #~ msgstr "PDF račun"
924
+
925
+ #~ msgid "PDF Packing Slip"
926
+ #~ msgstr "PDF paketni slip"
languages/woocommerce-pdf-invoices-packing-slips-hu_HU.po CHANGED
@@ -1,839 +1,839 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: joesalty <joesalty77@gmail.com>\n"
7
- "Language-Team: \n"
8
- "Language: en_US\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- #, fuzzy
21
- msgid "Invoice Number"
22
- msgstr "Számla"
23
-
24
- #: includes/class-wcpdf-admin.php:105
25
- msgid "Create PDF"
26
- msgstr "PDF létrehozása"
27
-
28
- #: includes/class-wcpdf-admin.php:115
29
- msgid "PDF Invoice data"
30
- msgstr ""
31
-
32
- #: includes/class-wcpdf-admin.php:166
33
- #: includes/documents/class-wcpdf-invoice.php:32
34
- #: includes/documents/class-wcpdf-invoice.php:41
35
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
36
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
37
- msgid "Invoice"
38
- msgstr "Számla"
39
-
40
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
41
- #: templates/Simple/invoice.php:56
42
- #, fuzzy
43
- msgid "Invoice Date:"
44
- msgstr "Számla"
45
-
46
- #: includes/class-wcpdf-admin.php:189
47
- msgid "Set invoice number & date"
48
- msgstr ""
49
-
50
- #: includes/class-wcpdf-admin.php:196
51
- msgid "Invoice Number (unformatted!)"
52
- msgstr ""
53
-
54
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
55
- msgid "h"
56
- msgstr ""
57
-
58
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
59
- msgid "m"
60
- msgstr ""
61
-
62
- #: includes/class-wcpdf-frontend.php:55
63
- msgid "Download invoice (PDF)"
64
- msgstr "Számla letöltése (PDF)"
65
-
66
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
67
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
68
- msgid "You do not have sufficient permissions to access this page."
69
- msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
70
-
71
- #: includes/class-wcpdf-main.php:141
72
- msgid "Some of the export parameters are missing."
73
- msgstr ""
74
-
75
- #: includes/class-wcpdf-settings-callbacks.php:27
76
- msgid ""
77
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
78
- "Do not use them on a live website!"
79
- msgstr ""
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Ezek a lábléc (opcionális) oszlopok a <em>Modern (Premium)</em> sablonban "
88
- "használatosak, de használhatja más elemeknek is az egyéni sablonjában. "
89
-
90
- #: includes/class-wcpdf-settings-callbacks.php:301
91
- msgid "Image resolution"
92
- msgstr "Kép felbontás"
93
-
94
- #: includes/class-wcpdf-settings-callbacks.php:325
95
- msgid "Save"
96
- msgstr ""
97
-
98
- #: includes/class-wcpdf-settings-debug.php:34
99
- msgid "Debug settings"
100
- msgstr ""
101
-
102
- #: includes/class-wcpdf-settings-debug.php:40
103
- msgid "Legacy mode"
104
- msgstr ""
105
-
106
- #: includes/class-wcpdf-settings-debug.php:46
107
- msgid ""
108
- "Legacy mode ensures compatibility with templates and filters from previous "
109
- "versions."
110
- msgstr ""
111
-
112
- #: includes/class-wcpdf-settings-debug.php:52
113
- msgid "Enable debug output"
114
- msgstr ""
115
-
116
- #: includes/class-wcpdf-settings-debug.php:58
117
- msgid ""
118
- "Enable this option to output plugin errors if you're getting a blank page or "
119
- "other PDF generation issues"
120
- msgstr ""
121
-
122
- #: includes/class-wcpdf-settings-debug.php:64
123
- msgid "Output to HTML"
124
- msgstr ""
125
-
126
- #: includes/class-wcpdf-settings-debug.php:70
127
- msgid ""
128
- "Send the template output as HTML to the browser instead of creating a PDF."
129
- msgstr ""
130
-
131
- #: includes/class-wcpdf-settings-documents.php:29
132
- #: includes/class-wcpdf-settings.php:84
133
- msgid "Documents"
134
- msgstr ""
135
-
136
- #: includes/class-wcpdf-settings-documents.php:45
137
- msgid ""
138
- "All available documents are listed below. Click on a document to configure "
139
- "it."
140
- msgstr ""
141
-
142
- #: includes/class-wcpdf-settings-general.php:37
143
- msgid "General settings"
144
- msgstr "Általános beállítások"
145
-
146
- #: includes/class-wcpdf-settings-general.php:43
147
- msgid "How do you want to view the PDF?"
148
- msgstr "Hogy kívánja megtekinteni a PDF-et?"
149
-
150
- #: includes/class-wcpdf-settings-general.php:50
151
- msgid "Download the PDF"
152
- msgstr "PDF letöltése"
153
-
154
- #: includes/class-wcpdf-settings-general.php:51
155
- msgid "Open the PDF in a new browser tab/window"
156
- msgstr "Nyissa meg a PDF-et egy új böngésző ablakban/tabon"
157
-
158
- #: includes/class-wcpdf-settings-general.php:58
159
- msgid "Choose a template"
160
- msgstr "Válasszon sablont"
161
-
162
- #: includes/class-wcpdf-settings-general.php:65
163
- #, php-format
164
- msgid ""
165
- "Want to use your own template? Copy all the files from <code>%s</code> to "
166
- "your (child) theme in <code>%s</code> to customize them"
167
- msgstr ""
168
-
169
- #: includes/class-wcpdf-settings-general.php:71
170
- msgid "Paper size"
171
- msgstr "Papír méret"
172
-
173
- #: includes/class-wcpdf-settings-general.php:78
174
- msgid "A4"
175
- msgstr "A4"
176
-
177
- #: includes/class-wcpdf-settings-general.php:79
178
- msgid "Letter"
179
- msgstr "Letter"
180
-
181
- #: includes/class-wcpdf-settings-general.php:86
182
- msgid "Extended currency symbol support"
183
- msgstr ""
184
-
185
- #: includes/class-wcpdf-settings-general.php:92
186
- msgid "Enable this if your currency symbol is not displaying properly"
187
- msgstr ""
188
-
189
- #: includes/class-wcpdf-settings-general.php:98
190
- msgid "Shop header/logo"
191
- msgstr "Bolt fejléc/logó"
192
-
193
- #: includes/class-wcpdf-settings-general.php:104
194
- msgid "Select or upload your invoice header/logo"
195
- msgstr "Válasszon ki vagy töltsön fel egy fjlécet/logót"
196
-
197
- #: includes/class-wcpdf-settings-general.php:105
198
- msgid "Set image"
199
- msgstr "Kép hozzáadása"
200
-
201
- #: includes/class-wcpdf-settings-general.php:106
202
- msgid "Remove image"
203
- msgstr "Kép eltávolítása"
204
-
205
- #: includes/class-wcpdf-settings-general.php:113
206
- msgid "Shop Name"
207
- msgstr "Bolt neve"
208
-
209
- #: includes/class-wcpdf-settings-general.php:126
210
- msgid "Shop Address"
211
- msgstr "Bolt címe"
212
-
213
- #: includes/class-wcpdf-settings-general.php:141
214
- msgid "Footer: terms & conditions, policies, etc."
215
- msgstr "Lábléc: szerződési feltételek, rendelkezések, stb."
216
-
217
- #: includes/class-wcpdf-settings-general.php:156
218
- msgid "Extra template fields"
219
- msgstr "Extra sablon mezők"
220
-
221
- #: includes/class-wcpdf-settings-general.php:162
222
- msgid "Extra field 1"
223
- msgstr "Extra mező 1"
224
-
225
- #: includes/class-wcpdf-settings-general.php:170
226
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
227
- msgstr "Ez a lábléc oszlop 1 a <i>Modern (Premium)</i> sablonban."
228
-
229
- #: includes/class-wcpdf-settings-general.php:177
230
- msgid "Extra field 2"
231
- msgstr "Extra mező 2"
232
-
233
- #: includes/class-wcpdf-settings-general.php:185
234
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
235
- msgstr "Ez a lábléc oszlop 2 a <i>Modern (Premium)</i> sablonban."
236
-
237
- #: includes/class-wcpdf-settings-general.php:192
238
- msgid "Extra field 3"
239
- msgstr "Extra mező 3"
240
-
241
- #: includes/class-wcpdf-settings-general.php:200
242
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
243
- msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
244
-
245
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
246
- msgid "PDF Invoices"
247
- msgstr "PDF számlák"
248
-
249
- #: includes/class-wcpdf-settings.php:58
250
- msgid "Settings"
251
- msgstr "Beállítások"
252
-
253
- #: includes/class-wcpdf-settings.php:71
254
- msgid "Documentation"
255
- msgstr ""
256
-
257
- #: includes/class-wcpdf-settings.php:72
258
- msgid "Support Forum"
259
- msgstr ""
260
-
261
- #: includes/class-wcpdf-settings.php:83
262
- msgid "General"
263
- msgstr "Általános"
264
-
265
- #: includes/class-wcpdf-settings.php:89
266
- msgid "Status"
267
- msgstr ""
268
-
269
- #: includes/compatibility/class-wc-core-compatibility.php:222
270
- msgid "WooCommerce"
271
- msgstr ""
272
-
273
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
274
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
275
- msgid "N/A"
276
- msgstr "N/A"
277
-
278
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
279
- #, fuzzy
280
- msgid "Payment method"
281
- msgstr "Fizetési mód"
282
-
283
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
284
- #, fuzzy
285
- msgid "Shipping method"
286
- msgstr "Szállítás"
287
-
288
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
289
- #, php-format
290
- msgid "(includes %s)"
291
- msgstr ""
292
-
293
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
294
- #, php-format
295
- msgid "(Includes %s)"
296
- msgstr ""
297
-
298
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
299
- msgid "Subtotal"
300
- msgstr "Részösszeg"
301
-
302
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
303
- msgid "Shipping"
304
- msgstr "Szállítás"
305
-
306
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
307
- msgid "Discount"
308
- msgstr "Kedvezmény"
309
-
310
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
311
- msgid "VAT"
312
- msgstr ""
313
-
314
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
315
- msgid "Tax rate"
316
- msgstr ""
317
-
318
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
319
- msgid "Total ex. VAT"
320
- msgstr "Végösszeg ÁFA nélkül"
321
-
322
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
323
- msgid "Total"
324
- msgstr "Végösszeg"
325
-
326
- #: includes/documents/abstract-wcpdf-order-document.php:674
327
- msgid "Admin email"
328
- msgstr ""
329
-
330
- #: includes/documents/abstract-wcpdf-order-document.php:677
331
- msgid "Manual email"
332
- msgstr ""
333
-
334
- # This is a filename (prefix). do not use spaces or special characters!
335
- #: includes/documents/class-wcpdf-invoice.php:85
336
- msgid "invoice"
337
- msgid_plural "invoices"
338
- msgstr[0] "számla"
339
- msgstr[1] "számlák"
340
-
341
- #: includes/documents/class-wcpdf-invoice.php:130
342
- #: includes/documents/class-wcpdf-packing-slip.php:94
343
- msgid "Enable"
344
- msgstr ""
345
-
346
- #: includes/documents/class-wcpdf-invoice.php:141
347
- msgid "Attach to:"
348
- msgstr ""
349
-
350
- #: includes/documents/class-wcpdf-invoice.php:148
351
- #, php-format
352
- msgid ""
353
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
354
- "permissions for this folder! Without having write access to this folder, the "
355
- "plugin will not be able to email invoices."
356
- msgstr ""
357
- "Az átmeneti könyvtár (<code>%s</code>)nem írható, kérem ellenőrizze a "
358
- "könyvtár jogosultságokat! A könyvtárra való írási jog nélkül a bővítmény "
359
- "nem tudja elküldeni a számlát!"
360
-
361
- #: includes/documents/class-wcpdf-invoice.php:154
362
- msgid "Display shipping address"
363
- msgstr ""
364
-
365
- #: includes/documents/class-wcpdf-invoice.php:160
366
- msgid ""
367
- "Display shipping address (in addition to the default billing address) if "
368
- "different from billing address"
369
- msgstr ""
370
-
371
- #: includes/documents/class-wcpdf-invoice.php:166
372
- #: includes/documents/class-wcpdf-packing-slip.php:117
373
- msgid "Display email address"
374
- msgstr ""
375
-
376
- #: includes/documents/class-wcpdf-invoice.php:177
377
- #: includes/documents/class-wcpdf-packing-slip.php:128
378
- msgid "Display phone number"
379
- msgstr ""
380
-
381
- #: includes/documents/class-wcpdf-invoice.php:188
382
- msgid "Display invoice date"
383
- msgstr ""
384
-
385
- #: includes/documents/class-wcpdf-invoice.php:200
386
- msgid "Display invoice number"
387
- msgstr ""
388
-
389
- #: includes/documents/class-wcpdf-invoice.php:212
390
- msgid "Next invoice number (without prefix/suffix etc.)"
391
- msgstr ""
392
-
393
- #: includes/documents/class-wcpdf-invoice.php:218
394
- msgid ""
395
- "This is the number that will be used for the next document. By default, "
396
- "numbering starts from 1 and increases for every new document. Note that if "
397
- "you override this and set it lower than the current/highest number, this "
398
- "could create duplicate numbers!"
399
- msgstr ""
400
-
401
- #: includes/documents/class-wcpdf-invoice.php:224
402
- msgid "Number format"
403
- msgstr ""
404
-
405
- #: includes/documents/class-wcpdf-invoice.php:232
406
- msgid "Prefix"
407
- msgstr ""
408
-
409
- #: includes/documents/class-wcpdf-invoice.php:234
410
- msgid ""
411
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
412
- "respectively"
413
- msgstr ""
414
-
415
- #: includes/documents/class-wcpdf-invoice.php:237
416
- msgid "Suffix"
417
- msgstr ""
418
-
419
- #: includes/documents/class-wcpdf-invoice.php:242
420
- msgid "Padding"
421
- msgstr ""
422
-
423
- #: includes/documents/class-wcpdf-invoice.php:245
424
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
425
- msgstr ""
426
-
427
- #: includes/documents/class-wcpdf-invoice.php:248
428
- msgid ""
429
- "note: if you have already created a custom invoice number format with a "
430
- "filter, the above settings will be ignored"
431
- msgstr ""
432
-
433
- #: includes/documents/class-wcpdf-invoice.php:254
434
- msgid "Reset invoice number yearly"
435
- msgstr ""
436
-
437
- #: includes/documents/class-wcpdf-invoice.php:265
438
- msgid "Allow My Account invoice download"
439
- msgstr ""
440
-
441
- #: includes/documents/class-wcpdf-invoice.php:272
442
- msgid "Only when an invoice is already created/emailed"
443
- msgstr ""
444
-
445
- #: includes/documents/class-wcpdf-invoice.php:273
446
- msgid "Only for specific order statuses (define below)"
447
- msgstr ""
448
-
449
- #: includes/documents/class-wcpdf-invoice.php:274
450
- msgid "Always"
451
- msgstr ""
452
-
453
- #: includes/documents/class-wcpdf-invoice.php:275
454
- msgid "Never"
455
- msgstr ""
456
-
457
- #: includes/documents/class-wcpdf-invoice.php:290
458
- msgid "Enable invoice number column in the orders list"
459
- msgstr ""
460
-
461
- #: includes/documents/class-wcpdf-invoice.php:301
462
- msgid "Disable for free products"
463
- msgstr ""
464
-
465
- #: includes/documents/class-wcpdf-invoice.php:307
466
- msgid ""
467
- "Disable automatic creation/attachment when only free products are ordered"
468
- msgstr ""
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:321
471
- msgid "Invoice numbers are created by a third-party extension."
472
- msgstr ""
473
-
474
- #: includes/documents/class-wcpdf-invoice.php:323
475
- #, php-format
476
- msgid "Configure it <a href=\"%s\">here</a>."
477
- msgstr ""
478
-
479
- #: includes/documents/class-wcpdf-packing-slip.php:32
480
- #: includes/documents/class-wcpdf-packing-slip.php:41
481
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
482
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
483
- msgid "Packing Slip"
484
- msgstr "Szállítólevél"
485
-
486
- # This is a filename (prefix). do not use spaces or special characters!
487
- #: includes/documents/class-wcpdf-packing-slip.php:53
488
- msgid "packing-slip"
489
- msgid_plural "packing-slips"
490
- msgstr[0] "szállítólevél"
491
- msgstr[1] "szállítólevelek"
492
-
493
- #: includes/documents/class-wcpdf-packing-slip.php:105
494
- msgid "Display billing address"
495
- msgstr ""
496
-
497
- #: includes/documents/class-wcpdf-packing-slip.php:111
498
- msgid ""
499
- "Display billing address (in addition to the default shipping address) if "
500
- "different from shipping address"
501
- msgstr ""
502
-
503
- #: includes/legacy/class-wcpdf-legacy-document.php:32
504
- msgid "Legacy Document"
505
- msgstr ""
506
-
507
- #: includes/views/wcpdf-extensions.php:15
508
- msgid "Check out these premium extensions!"
509
- msgstr ""
510
-
511
- #: includes/views/wcpdf-extensions.php:16
512
- msgid "click items to read more"
513
- msgstr ""
514
-
515
- #: includes/views/wcpdf-extensions.php:21
516
- msgid ""
517
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
518
- "system"
519
- msgstr ""
520
-
521
- #: includes/views/wcpdf-extensions.php:23
522
- msgid ""
523
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
524
- "premium extensions:"
525
- msgstr ""
526
-
527
- #: includes/views/wcpdf-extensions.php:24
528
- msgid "Professional features:"
529
- msgstr ""
530
-
531
- #: includes/views/wcpdf-extensions.php:26
532
- #: includes/views/wcpdf-extensions.php:56
533
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
534
- msgstr ""
535
-
536
- #: includes/views/wcpdf-extensions.php:27
537
- #: includes/views/wcpdf-extensions.php:57
538
- msgid ""
539
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
540
- "packing slips, for example to a drop-shipper or a supplier."
541
- msgstr ""
542
-
543
- #: includes/views/wcpdf-extensions.php:28
544
- #: includes/views/wcpdf-extensions.php:58
545
- msgid ""
546
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
547
- "document) to the WooCommerce emails of your choice."
548
- msgstr ""
549
-
550
- #: includes/views/wcpdf-extensions.php:29
551
- #: includes/views/wcpdf-extensions.php:59
552
- msgid ""
553
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
554
- "and credit notes or utilize the main invoice numbering system"
555
- msgstr ""
556
-
557
- #: includes/views/wcpdf-extensions.php:30
558
- #: includes/views/wcpdf-extensions.php:60
559
- msgid ""
560
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
561
- "additional custom fields, font sizes etc. without the need to create a "
562
- "custom template."
563
- msgstr ""
564
-
565
- #: includes/views/wcpdf-extensions.php:31
566
- #: includes/views/wcpdf-extensions.php:61
567
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
568
- msgstr ""
569
-
570
- #: includes/views/wcpdf-extensions.php:33
571
- #: includes/views/wcpdf-extensions.php:131
572
- msgid "Advanced, customizable templates"
573
- msgstr ""
574
-
575
- #: includes/views/wcpdf-extensions.php:35
576
- #: includes/views/wcpdf-extensions.php:134
577
- msgid ""
578
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
579
- "your needs with a drag & drop customizer"
580
- msgstr ""
581
-
582
- #: includes/views/wcpdf-extensions.php:36
583
- #: includes/views/wcpdf-extensions.php:135
584
- msgid "Two extra stylish premade templates (Modern & Business)"
585
- msgstr ""
586
-
587
- #: includes/views/wcpdf-extensions.php:38
588
- msgid "Upload automatically to dropbox"
589
- msgstr ""
590
-
591
- #: includes/views/wcpdf-extensions.php:40
592
- #: includes/views/wcpdf-extensions.php:97
593
- msgid ""
594
- "This extension conveniently uploads all the invoices (and other pdf "
595
- "documents from the professional extension) that are emailed to your "
596
- "customers to Dropbox. The best way to keep your invoice administration up to "
597
- "date!"
598
- msgstr ""
599
-
600
- #: includes/views/wcpdf-extensions.php:43
601
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
602
- msgstr ""
603
-
604
- #: includes/views/wcpdf-extensions.php:52
605
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
606
- msgstr ""
607
-
608
- #: includes/views/wcpdf-extensions.php:54
609
- msgid ""
610
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
611
- "features:"
612
- msgstr ""
613
-
614
- #: includes/views/wcpdf-extensions.php:63
615
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
616
- msgstr ""
617
-
618
- #: includes/views/wcpdf-extensions.php:71
619
- msgid "Automatically send payment reminders to your customers"
620
- msgstr ""
621
-
622
- #: includes/views/wcpdf-extensions.php:73
623
- msgid "WooCommerce Smart Reminder emails"
624
- msgstr ""
625
-
626
- #: includes/views/wcpdf-extensions.php:75
627
- msgid "<b>Completely automatic</b> scheduled emails"
628
- msgstr ""
629
-
630
- #: includes/views/wcpdf-extensions.php:76
631
- msgid ""
632
- "<b>Rich text editor</b> for the email text, including placeholders for data "
633
- "from the order (name, order total, etc)"
634
- msgstr ""
635
-
636
- #: includes/views/wcpdf-extensions.php:77
637
- msgid ""
638
- "Configure the exact requirements for sending an email (time after order, "
639
- "order status, payment method)"
640
- msgstr ""
641
-
642
- #: includes/views/wcpdf-extensions.php:78
643
- msgid ""
644
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
645
- "order language."
646
- msgstr ""
647
-
648
- #: includes/views/wcpdf-extensions.php:79
649
- msgid ""
650
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
651
- "reminders, repeat purchases)"
652
- msgstr ""
653
-
654
- #: includes/views/wcpdf-extensions.php:80
655
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
656
- msgstr ""
657
-
658
- #: includes/views/wcpdf-extensions.php:82
659
- msgid "Get WooCommerce Smart Reminder Emails"
660
- msgstr ""
661
-
662
- #: includes/views/wcpdf-extensions.php:91
663
- msgid "Upload all invoices automatically to your dropbox"
664
- msgstr ""
665
-
666
- #: includes/views/wcpdf-extensions.php:98
667
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
668
- msgstr ""
669
-
670
- #: includes/views/wcpdf-extensions.php:110
671
- msgid ""
672
- "Automatically send new orders or packing slips to your printer, as soon as "
673
- "the customer orders!"
674
- msgstr ""
675
-
676
- #: includes/views/wcpdf-extensions.php:116
677
- msgid ""
678
- "Check out the WooCommerce Automatic Order Printing extension from our "
679
- "partners at Simba Hosting"
680
- msgstr ""
681
-
682
- #: includes/views/wcpdf-extensions.php:117
683
- msgid "WooCommerce Automatic Order Printing"
684
- msgstr ""
685
-
686
- #: includes/views/wcpdf-extensions.php:136
687
- #, php-format
688
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
689
- msgstr ""
690
-
691
- #: includes/views/wcpdf-extensions.php:137
692
- #, php-format
693
- msgid "For custom templates, contact us at %s."
694
- msgstr ""
695
-
696
- #: includes/views/wcpdf-extensions.php:146
697
- msgid "Hide this message"
698
- msgstr ""
699
-
700
- #: includes/views/wcpdf-settings-page.php:8
701
- msgid "WooCommerce PDF Invoices"
702
- msgstr "WooCommerce PDF számlák"
703
-
704
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
705
- msgid "Billing Address:"
706
- msgstr ""
707
-
708
- #: templates/Simple/invoice.php:41
709
- msgid "Ship To:"
710
- msgstr ""
711
-
712
- #: templates/Simple/invoice.php:50
713
- #, fuzzy
714
- msgid "Invoice Number:"
715
- msgstr "Rendelési szám:"
716
-
717
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
718
- msgid "Order Number:"
719
- msgstr "Rendelési szám:"
720
-
721
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
722
- msgid "Order Date:"
723
- msgstr "Rendelés dátuma:"
724
-
725
- #: templates/Simple/invoice.php:69
726
- msgid "Payment Method:"
727
- msgstr "Fizetési mód"
728
-
729
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
730
- msgid "Product"
731
- msgstr "Termék"
732
-
733
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
734
- msgid "Quantity"
735
- msgstr "Mennyiség"
736
-
737
- #: templates/Simple/invoice.php:85
738
- msgid "Price"
739
- msgstr "Ár"
740
-
741
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
742
- msgid "Description"
743
- msgstr ""
744
-
745
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
746
- msgid "SKU"
747
- msgstr "SKU"
748
-
749
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
750
- msgid "SKU:"
751
- msgstr "SKU:"
752
-
753
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
754
- msgid "Weight:"
755
- msgstr "Súly:"
756
-
757
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
758
- msgid "Customer Notes"
759
- msgstr "Vásárlói megjegyzések"
760
-
761
- #: templates/Simple/packing-slip.php:30
762
- msgid "Shipping Address:"
763
- msgstr ""
764
-
765
- #: templates/Simple/packing-slip.php:57
766
- msgid "Shipping Method:"
767
- msgstr ""
768
-
769
- #: woocommerce-pdf-invoices-packingslips.php:231
770
- #, php-format
771
- msgid ""
772
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
773
- "installed & activated!"
774
- msgstr ""
775
- "WooCommerce PDF Invoices & Packing Slipsnek szüksége van az telepített és "
776
- "bekapcsolt %sWooCommerce%s pluginra."
777
-
778
- #: woocommerce-pdf-invoices-packingslips.php:243
779
- msgid ""
780
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
781
- "higher recommended)."
782
- msgstr ""
783
-
784
- #: woocommerce-pdf-invoices-packingslips.php:244
785
- msgid "How to update your PHP version"
786
- msgstr ""
787
-
788
- #~ msgid "Template"
789
- #~ msgstr "Sablon"
790
-
791
- #~ msgid ""
792
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
793
- #~ "Packing Slips templates at %s."
794
- #~ msgstr ""
795
- #~ "Fejlettebb sablonokat keres? Nézze meg a Premium PDF Invoice & Packing "
796
- #~ "Slips sablonokat a %s-on. "
797
-
798
- #, fuzzy
799
- #~ msgid "Customer Invoice email"
800
- #~ msgstr "Vásárlói megjegyzések"
801
-
802
- #~ msgid "PDF Template settings"
803
- #~ msgstr "PDF sablon beállítások"
804
-
805
- #~ msgid ""
806
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
807
- #~ "<code>%s</code> to customize them"
808
- #~ msgstr ""
809
- #~ "Saját sablont szeretne használni? Másolja az összes fájlt a <code>%s</"
810
- #~ "code> könyvtárból a <code>%s</code> könyvtárba a módosításhoz."
811
-
812
- #, fuzzy
813
- #~ msgid "WooCommerce order number"
814
- #~ msgstr "WooCommerce PDF számlák"
815
-
816
- #, fuzzy
817
- #~ msgid "Order date"
818
- #~ msgstr "Rendelés dátuma:"
819
-
820
- #, fuzzy
821
- #~ msgid "Invoice date"
822
- #~ msgstr "Számla"
823
-
824
- #~ msgid "PDF invoice"
825
- #~ msgstr "PDF számla"
826
-
827
- #~ msgid "PDF Packing Slip"
828
- #~ msgstr "PDF szállítólevél"
829
-
830
- #~ msgid "PDF Packing Slips"
831
- #~ msgstr "PDF szállítólevelet"
832
-
833
- #~ msgid "..."
834
- #~ msgstr "..."
835
-
836
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
837
- #~ msgstr ""
838
- #~ "Számla küldése emailban (csatolja a rendelési vagy a teljesítési "
839
- #~ "igazoláshoz)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: joesalty <joesalty77@gmail.com>\n"
7
+ "Language-Team: \n"
8
+ "Language: en_US\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ #, fuzzy
21
+ msgid "Invoice Number"
22
+ msgstr "Számla"
23
+
24
+ #: includes/class-wcpdf-admin.php:105
25
+ msgid "Create PDF"
26
+ msgstr "PDF létrehozása"
27
+
28
+ #: includes/class-wcpdf-admin.php:115
29
+ msgid "PDF Invoice data"
30
+ msgstr ""
31
+
32
+ #: includes/class-wcpdf-admin.php:166
33
+ #: includes/documents/class-wcpdf-invoice.php:32
34
+ #: includes/documents/class-wcpdf-invoice.php:41
35
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
36
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
37
+ msgid "Invoice"
38
+ msgstr "Számla"
39
+
40
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
41
+ #: templates/Simple/invoice.php:56
42
+ #, fuzzy
43
+ msgid "Invoice Date:"
44
+ msgstr "Számla"
45
+
46
+ #: includes/class-wcpdf-admin.php:189
47
+ msgid "Set invoice number & date"
48
+ msgstr ""
49
+
50
+ #: includes/class-wcpdf-admin.php:196
51
+ msgid "Invoice Number (unformatted!)"
52
+ msgstr ""
53
+
54
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
55
+ msgid "h"
56
+ msgstr ""
57
+
58
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
59
+ msgid "m"
60
+ msgstr ""
61
+
62
+ #: includes/class-wcpdf-frontend.php:55
63
+ msgid "Download invoice (PDF)"
64
+ msgstr "Számla letöltése (PDF)"
65
+
66
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
67
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
68
+ msgid "You do not have sufficient permissions to access this page."
69
+ msgstr "Önnek nincs megfelelő jogosultsága az oldal eléréséhez."
70
+
71
+ #: includes/class-wcpdf-main.php:141
72
+ msgid "Some of the export parameters are missing."
73
+ msgstr ""
74
+
75
+ #: includes/class-wcpdf-settings-callbacks.php:27
76
+ msgid ""
77
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
78
+ "Do not use them on a live website!"
79
+ msgstr ""
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Ezek a lábléc (opcionális) oszlopok a <em>Modern (Premium)</em> sablonban "
88
+ "használatosak, de használhatja más elemeknek is az egyéni sablonjában. "
89
+
90
+ #: includes/class-wcpdf-settings-callbacks.php:301
91
+ msgid "Image resolution"
92
+ msgstr "Kép felbontás"
93
+
94
+ #: includes/class-wcpdf-settings-callbacks.php:325
95
+ msgid "Save"
96
+ msgstr ""
97
+
98
+ #: includes/class-wcpdf-settings-debug.php:34
99
+ msgid "Debug settings"
100
+ msgstr ""
101
+
102
+ #: includes/class-wcpdf-settings-debug.php:40
103
+ msgid "Legacy mode"
104
+ msgstr ""
105
+
106
+ #: includes/class-wcpdf-settings-debug.php:46
107
+ msgid ""
108
+ "Legacy mode ensures compatibility with templates and filters from previous "
109
+ "versions."
110
+ msgstr ""
111
+
112
+ #: includes/class-wcpdf-settings-debug.php:52
113
+ msgid "Enable debug output"
114
+ msgstr ""
115
+
116
+ #: includes/class-wcpdf-settings-debug.php:58
117
+ msgid ""
118
+ "Enable this option to output plugin errors if you're getting a blank page or "
119
+ "other PDF generation issues"
120
+ msgstr ""
121
+
122
+ #: includes/class-wcpdf-settings-debug.php:64
123
+ msgid "Output to HTML"
124
+ msgstr ""
125
+
126
+ #: includes/class-wcpdf-settings-debug.php:70
127
+ msgid ""
128
+ "Send the template output as HTML to the browser instead of creating a PDF."
129
+ msgstr ""
130
+
131
+ #: includes/class-wcpdf-settings-documents.php:29
132
+ #: includes/class-wcpdf-settings.php:84
133
+ msgid "Documents"
134
+ msgstr ""
135
+
136
+ #: includes/class-wcpdf-settings-documents.php:45
137
+ msgid ""
138
+ "All available documents are listed below. Click on a document to configure "
139
+ "it."
140
+ msgstr ""
141
+
142
+ #: includes/class-wcpdf-settings-general.php:37
143
+ msgid "General settings"
144
+ msgstr "Általános beállítások"
145
+
146
+ #: includes/class-wcpdf-settings-general.php:43
147
+ msgid "How do you want to view the PDF?"
148
+ msgstr "Hogy kívánja megtekinteni a PDF-et?"
149
+
150
+ #: includes/class-wcpdf-settings-general.php:50
151
+ msgid "Download the PDF"
152
+ msgstr "PDF letöltése"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:51
155
+ msgid "Open the PDF in a new browser tab/window"
156
+ msgstr "Nyissa meg a PDF-et egy új böngésző ablakban/tabon"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:58
159
+ msgid "Choose a template"
160
+ msgstr "Válasszon sablont"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:65
163
+ #, php-format
164
+ msgid ""
165
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
166
+ "your (child) theme in <code>%s</code> to customize them"
167
+ msgstr ""
168
+
169
+ #: includes/class-wcpdf-settings-general.php:71
170
+ msgid "Paper size"
171
+ msgstr "Papír méret"
172
+
173
+ #: includes/class-wcpdf-settings-general.php:78
174
+ msgid "A4"
175
+ msgstr "A4"
176
+
177
+ #: includes/class-wcpdf-settings-general.php:79
178
+ msgid "Letter"
179
+ msgstr "Letter"
180
+
181
+ #: includes/class-wcpdf-settings-general.php:86
182
+ msgid "Extended currency symbol support"
183
+ msgstr ""
184
+
185
+ #: includes/class-wcpdf-settings-general.php:92
186
+ msgid "Enable this if your currency symbol is not displaying properly"
187
+ msgstr ""
188
+
189
+ #: includes/class-wcpdf-settings-general.php:98
190
+ msgid "Shop header/logo"
191
+ msgstr "Bolt fejléc/logó"
192
+
193
+ #: includes/class-wcpdf-settings-general.php:104
194
+ msgid "Select or upload your invoice header/logo"
195
+ msgstr "Válasszon ki vagy töltsön fel egy fjlécet/logót"
196
+
197
+ #: includes/class-wcpdf-settings-general.php:105
198
+ msgid "Set image"
199
+ msgstr "Kép hozzáadása"
200
+
201
+ #: includes/class-wcpdf-settings-general.php:106
202
+ msgid "Remove image"
203
+ msgstr "Kép eltávolítása"
204
+
205
+ #: includes/class-wcpdf-settings-general.php:113
206
+ msgid "Shop Name"
207
+ msgstr "Bolt neve"
208
+
209
+ #: includes/class-wcpdf-settings-general.php:126
210
+ msgid "Shop Address"
211
+ msgstr "Bolt címe"
212
+
213
+ #: includes/class-wcpdf-settings-general.php:141
214
+ msgid "Footer: terms & conditions, policies, etc."
215
+ msgstr "Lábléc: szerződési feltételek, rendelkezések, stb."
216
+
217
+ #: includes/class-wcpdf-settings-general.php:156
218
+ msgid "Extra template fields"
219
+ msgstr "Extra sablon mezők"
220
+
221
+ #: includes/class-wcpdf-settings-general.php:162
222
+ msgid "Extra field 1"
223
+ msgstr "Extra mező 1"
224
+
225
+ #: includes/class-wcpdf-settings-general.php:170
226
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
227
+ msgstr "Ez a lábléc oszlop 1 a <i>Modern (Premium)</i> sablonban."
228
+
229
+ #: includes/class-wcpdf-settings-general.php:177
230
+ msgid "Extra field 2"
231
+ msgstr "Extra mező 2"
232
+
233
+ #: includes/class-wcpdf-settings-general.php:185
234
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
235
+ msgstr "Ez a lábléc oszlop 2 a <i>Modern (Premium)</i> sablonban."
236
+
237
+ #: includes/class-wcpdf-settings-general.php:192
238
+ msgid "Extra field 3"
239
+ msgstr "Extra mező 3"
240
+
241
+ #: includes/class-wcpdf-settings-general.php:200
242
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
243
+ msgstr "Ez a lábléc oszlop 3 a <i>Modern (Premium)</i> sablonban."
244
+
245
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
246
+ msgid "PDF Invoices"
247
+ msgstr "PDF számlák"
248
+
249
+ #: includes/class-wcpdf-settings.php:58
250
+ msgid "Settings"
251
+ msgstr "Beállítások"
252
+
253
+ #: includes/class-wcpdf-settings.php:71
254
+ msgid "Documentation"
255
+ msgstr ""
256
+
257
+ #: includes/class-wcpdf-settings.php:72
258
+ msgid "Support Forum"
259
+ msgstr ""
260
+
261
+ #: includes/class-wcpdf-settings.php:83
262
+ msgid "General"
263
+ msgstr "Általános"
264
+
265
+ #: includes/class-wcpdf-settings.php:89
266
+ msgid "Status"
267
+ msgstr ""
268
+
269
+ #: includes/compatibility/class-wc-core-compatibility.php:222
270
+ msgid "WooCommerce"
271
+ msgstr ""
272
+
273
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
274
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
275
+ msgid "N/A"
276
+ msgstr "N/A"
277
+
278
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
279
+ #, fuzzy
280
+ msgid "Payment method"
281
+ msgstr "Fizetési mód"
282
+
283
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
284
+ #, fuzzy
285
+ msgid "Shipping method"
286
+ msgstr "Szállítás"
287
+
288
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
289
+ #, php-format
290
+ msgid "(includes %s)"
291
+ msgstr ""
292
+
293
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
294
+ #, php-format
295
+ msgid "(Includes %s)"
296
+ msgstr ""
297
+
298
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
299
+ msgid "Subtotal"
300
+ msgstr "Részösszeg"
301
+
302
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
303
+ msgid "Shipping"
304
+ msgstr "Szállítás"
305
+
306
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
307
+ msgid "Discount"
308
+ msgstr "Kedvezmény"
309
+
310
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
311
+ msgid "VAT"
312
+ msgstr ""
313
+
314
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
315
+ msgid "Tax rate"
316
+ msgstr ""
317
+
318
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
319
+ msgid "Total ex. VAT"
320
+ msgstr "Végösszeg ÁFA nélkül"
321
+
322
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
323
+ msgid "Total"
324
+ msgstr "Végösszeg"
325
+
326
+ #: includes/documents/abstract-wcpdf-order-document.php:674
327
+ msgid "Admin email"
328
+ msgstr ""
329
+
330
+ #: includes/documents/abstract-wcpdf-order-document.php:677
331
+ msgid "Manual email"
332
+ msgstr ""
333
+
334
+ # This is a filename (prefix). do not use spaces or special characters!
335
+ #: includes/documents/class-wcpdf-invoice.php:85
336
+ msgid "invoice"
337
+ msgid_plural "invoices"
338
+ msgstr[0] "számla"
339
+ msgstr[1] "számlák"
340
+
341
+ #: includes/documents/class-wcpdf-invoice.php:130
342
+ #: includes/documents/class-wcpdf-packing-slip.php:94
343
+ msgid "Enable"
344
+ msgstr ""
345
+
346
+ #: includes/documents/class-wcpdf-invoice.php:141
347
+ msgid "Attach to:"
348
+ msgstr ""
349
+
350
+ #: includes/documents/class-wcpdf-invoice.php:148
351
+ #, php-format
352
+ msgid ""
353
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
354
+ "permissions for this folder! Without having write access to this folder, the "
355
+ "plugin will not be able to email invoices."
356
+ msgstr ""
357
+ "Az átmeneti könyvtár (<code>%s</code>)nem írható, kérem ellenőrizze a "
358
+ "könyvtár jogosultságokat! A könyvtárra való írási jog nélkül a bővítmény "
359
+ "nem tudja elküldeni a számlát!"
360
+
361
+ #: includes/documents/class-wcpdf-invoice.php:154
362
+ msgid "Display shipping address"
363
+ msgstr ""
364
+
365
+ #: includes/documents/class-wcpdf-invoice.php:160
366
+ msgid ""
367
+ "Display shipping address (in addition to the default billing address) if "
368
+ "different from billing address"
369
+ msgstr ""
370
+
371
+ #: includes/documents/class-wcpdf-invoice.php:166
372
+ #: includes/documents/class-wcpdf-packing-slip.php:117
373
+ msgid "Display email address"
374
+ msgstr ""
375
+
376
+ #: includes/documents/class-wcpdf-invoice.php:177
377
+ #: includes/documents/class-wcpdf-packing-slip.php:128
378
+ msgid "Display phone number"
379
+ msgstr ""
380
+
381
+ #: includes/documents/class-wcpdf-invoice.php:188
382
+ msgid "Display invoice date"
383
+ msgstr ""
384
+
385
+ #: includes/documents/class-wcpdf-invoice.php:200
386
+ msgid "Display invoice number"
387
+ msgstr ""
388
+
389
+ #: includes/documents/class-wcpdf-invoice.php:212
390
+ msgid "Next invoice number (without prefix/suffix etc.)"
391
+ msgstr ""
392
+
393
+ #: includes/documents/class-wcpdf-invoice.php:218
394
+ msgid ""
395
+ "This is the number that will be used for the next document. By default, "
396
+ "numbering starts from 1 and increases for every new document. Note that if "
397
+ "you override this and set it lower than the current/highest number, this "
398
+ "could create duplicate numbers!"
399
+ msgstr ""
400
+
401
+ #: includes/documents/class-wcpdf-invoice.php:224
402
+ msgid "Number format"
403
+ msgstr ""
404
+
405
+ #: includes/documents/class-wcpdf-invoice.php:232
406
+ msgid "Prefix"
407
+ msgstr ""
408
+
409
+ #: includes/documents/class-wcpdf-invoice.php:234
410
+ msgid ""
411
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
412
+ "respectively"
413
+ msgstr ""
414
+
415
+ #: includes/documents/class-wcpdf-invoice.php:237
416
+ msgid "Suffix"
417
+ msgstr ""
418
+
419
+ #: includes/documents/class-wcpdf-invoice.php:242
420
+ msgid "Padding"
421
+ msgstr ""
422
+
423
+ #: includes/documents/class-wcpdf-invoice.php:245
424
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
425
+ msgstr ""
426
+
427
+ #: includes/documents/class-wcpdf-invoice.php:248
428
+ msgid ""
429
+ "note: if you have already created a custom invoice number format with a "
430
+ "filter, the above settings will be ignored"
431
+ msgstr ""
432
+
433
+ #: includes/documents/class-wcpdf-invoice.php:254
434
+ msgid "Reset invoice number yearly"
435
+ msgstr ""
436
+
437
+ #: includes/documents/class-wcpdf-invoice.php:265
438
+ msgid "Allow My Account invoice download"
439
+ msgstr ""
440
+
441
+ #: includes/documents/class-wcpdf-invoice.php:272
442
+ msgid "Only when an invoice is already created/emailed"
443
+ msgstr ""
444
+
445
+ #: includes/documents/class-wcpdf-invoice.php:273
446
+ msgid "Only for specific order statuses (define below)"
447
+ msgstr ""
448
+
449
+ #: includes/documents/class-wcpdf-invoice.php:274
450
+ msgid "Always"
451
+ msgstr ""
452
+
453
+ #: includes/documents/class-wcpdf-invoice.php:275
454
+ msgid "Never"
455
+ msgstr ""
456
+
457
+ #: includes/documents/class-wcpdf-invoice.php:290
458
+ msgid "Enable invoice number column in the orders list"
459
+ msgstr ""
460
+
461
+ #: includes/documents/class-wcpdf-invoice.php:301
462
+ msgid "Disable for free products"
463
+ msgstr ""
464
+
465
+ #: includes/documents/class-wcpdf-invoice.php:307
466
+ msgid ""
467
+ "Disable automatic creation/attachment when only free products are ordered"
468
+ msgstr ""
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:321
471
+ msgid "Invoice numbers are created by a third-party extension."
472
+ msgstr ""
473
+
474
+ #: includes/documents/class-wcpdf-invoice.php:323
475
+ #, php-format
476
+ msgid "Configure it <a href=\"%s\">here</a>."
477
+ msgstr ""
478
+
479
+ #: includes/documents/class-wcpdf-packing-slip.php:32
480
+ #: includes/documents/class-wcpdf-packing-slip.php:41
481
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
482
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
483
+ msgid "Packing Slip"
484
+ msgstr "Szállítólevél"
485
+
486
+ # This is a filename (prefix). do not use spaces or special characters!
487
+ #: includes/documents/class-wcpdf-packing-slip.php:53
488
+ msgid "packing-slip"
489
+ msgid_plural "packing-slips"
490
+ msgstr[0] "szállítólevél"
491
+ msgstr[1] "szállítólevelek"
492
+
493
+ #: includes/documents/class-wcpdf-packing-slip.php:105
494
+ msgid "Display billing address"
495
+ msgstr ""
496
+
497
+ #: includes/documents/class-wcpdf-packing-slip.php:111
498
+ msgid ""
499
+ "Display billing address (in addition to the default shipping address) if "
500
+ "different from shipping address"
501
+ msgstr ""
502
+
503
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
504
+ msgid "Legacy Document"
505
+ msgstr ""
506
+
507
+ #: includes/views/wcpdf-extensions.php:15
508
+ msgid "Check out these premium extensions!"
509
+ msgstr ""
510
+
511
+ #: includes/views/wcpdf-extensions.php:16
512
+ msgid "click items to read more"
513
+ msgstr ""
514
+
515
+ #: includes/views/wcpdf-extensions.php:21
516
+ msgid ""
517
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
518
+ "system"
519
+ msgstr ""
520
+
521
+ #: includes/views/wcpdf-extensions.php:23
522
+ msgid ""
523
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
524
+ "premium extensions:"
525
+ msgstr ""
526
+
527
+ #: includes/views/wcpdf-extensions.php:24
528
+ msgid "Professional features:"
529
+ msgstr ""
530
+
531
+ #: includes/views/wcpdf-extensions.php:26
532
+ #: includes/views/wcpdf-extensions.php:56
533
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
534
+ msgstr ""
535
+
536
+ #: includes/views/wcpdf-extensions.php:27
537
+ #: includes/views/wcpdf-extensions.php:57
538
+ msgid ""
539
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
540
+ "packing slips, for example to a drop-shipper or a supplier."
541
+ msgstr ""
542
+
543
+ #: includes/views/wcpdf-extensions.php:28
544
+ #: includes/views/wcpdf-extensions.php:58
545
+ msgid ""
546
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
547
+ "document) to the WooCommerce emails of your choice."
548
+ msgstr ""
549
+
550
+ #: includes/views/wcpdf-extensions.php:29
551
+ #: includes/views/wcpdf-extensions.php:59
552
+ msgid ""
553
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
554
+ "and credit notes or utilize the main invoice numbering system"
555
+ msgstr ""
556
+
557
+ #: includes/views/wcpdf-extensions.php:30
558
+ #: includes/views/wcpdf-extensions.php:60
559
+ msgid ""
560
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
561
+ "additional custom fields, font sizes etc. without the need to create a "
562
+ "custom template."
563
+ msgstr ""
564
+
565
+ #: includes/views/wcpdf-extensions.php:31
566
+ #: includes/views/wcpdf-extensions.php:61
567
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
568
+ msgstr ""
569
+
570
+ #: includes/views/wcpdf-extensions.php:33
571
+ #: includes/views/wcpdf-extensions.php:131
572
+ msgid "Advanced, customizable templates"
573
+ msgstr ""
574
+
575
+ #: includes/views/wcpdf-extensions.php:35
576
+ #: includes/views/wcpdf-extensions.php:134
577
+ msgid ""
578
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
579
+ "your needs with a drag & drop customizer"
580
+ msgstr ""
581
+
582
+ #: includes/views/wcpdf-extensions.php:36
583
+ #: includes/views/wcpdf-extensions.php:135
584
+ msgid "Two extra stylish premade templates (Modern & Business)"
585
+ msgstr ""
586
+
587
+ #: includes/views/wcpdf-extensions.php:38
588
+ msgid "Upload automatically to dropbox"
589
+ msgstr ""
590
+
591
+ #: includes/views/wcpdf-extensions.php:40
592
+ #: includes/views/wcpdf-extensions.php:97
593
+ msgid ""
594
+ "This extension conveniently uploads all the invoices (and other pdf "
595
+ "documents from the professional extension) that are emailed to your "
596
+ "customers to Dropbox. The best way to keep your invoice administration up to "
597
+ "date!"
598
+ msgstr ""
599
+
600
+ #: includes/views/wcpdf-extensions.php:43
601
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
602
+ msgstr ""
603
+
604
+ #: includes/views/wcpdf-extensions.php:52
605
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
606
+ msgstr ""
607
+
608
+ #: includes/views/wcpdf-extensions.php:54
609
+ msgid ""
610
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
611
+ "features:"
612
+ msgstr ""
613
+
614
+ #: includes/views/wcpdf-extensions.php:63
615
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
616
+ msgstr ""
617
+
618
+ #: includes/views/wcpdf-extensions.php:71
619
+ msgid "Automatically send payment reminders to your customers"
620
+ msgstr ""
621
+
622
+ #: includes/views/wcpdf-extensions.php:73
623
+ msgid "WooCommerce Smart Reminder emails"
624
+ msgstr ""
625
+
626
+ #: includes/views/wcpdf-extensions.php:75
627
+ msgid "<b>Completely automatic</b> scheduled emails"
628
+ msgstr ""
629
+
630
+ #: includes/views/wcpdf-extensions.php:76
631
+ msgid ""
632
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
633
+ "from the order (name, order total, etc)"
634
+ msgstr ""
635
+
636
+ #: includes/views/wcpdf-extensions.php:77
637
+ msgid ""
638
+ "Configure the exact requirements for sending an email (time after order, "
639
+ "order status, payment method)"
640
+ msgstr ""
641
+
642
+ #: includes/views/wcpdf-extensions.php:78
643
+ msgid ""
644
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
645
+ "order language."
646
+ msgstr ""
647
+
648
+ #: includes/views/wcpdf-extensions.php:79
649
+ msgid ""
650
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
651
+ "reminders, repeat purchases)"
652
+ msgstr ""
653
+
654
+ #: includes/views/wcpdf-extensions.php:80
655
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
656
+ msgstr ""
657
+
658
+ #: includes/views/wcpdf-extensions.php:82
659
+ msgid "Get WooCommerce Smart Reminder Emails"
660
+ msgstr ""
661
+
662
+ #: includes/views/wcpdf-extensions.php:91
663
+ msgid "Upload all invoices automatically to your dropbox"
664
+ msgstr ""
665
+
666
+ #: includes/views/wcpdf-extensions.php:98
667
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
668
+ msgstr ""
669
+
670
+ #: includes/views/wcpdf-extensions.php:110
671
+ msgid ""
672
+ "Automatically send new orders or packing slips to your printer, as soon as "
673
+ "the customer orders!"
674
+ msgstr ""
675
+
676
+ #: includes/views/wcpdf-extensions.php:116
677
+ msgid ""
678
+ "Check out the WooCommerce Automatic Order Printing extension from our "
679
+ "partners at Simba Hosting"
680
+ msgstr ""
681
+
682
+ #: includes/views/wcpdf-extensions.php:117
683
+ msgid "WooCommerce Automatic Order Printing"
684
+ msgstr ""
685
+
686
+ #: includes/views/wcpdf-extensions.php:136
687
+ #, php-format
688
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
689
+ msgstr ""
690
+
691
+ #: includes/views/wcpdf-extensions.php:137
692
+ #, php-format
693
+ msgid "For custom templates, contact us at %s."
694
+ msgstr ""
695
+
696
+ #: includes/views/wcpdf-extensions.php:146
697
+ msgid "Hide this message"
698
+ msgstr ""
699
+
700
+ #: includes/views/wcpdf-settings-page.php:8
701
+ msgid "WooCommerce PDF Invoices"
702
+ msgstr "WooCommerce PDF számlák"
703
+
704
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
705
+ msgid "Billing Address:"
706
+ msgstr ""
707
+
708
+ #: templates/Simple/invoice.php:41
709
+ msgid "Ship To:"
710
+ msgstr ""
711
+
712
+ #: templates/Simple/invoice.php:50
713
+ #, fuzzy
714
+ msgid "Invoice Number:"
715
+ msgstr "Rendelési szám:"
716
+
717
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
718
+ msgid "Order Number:"
719
+ msgstr "Rendelési szám:"
720
+
721
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
722
+ msgid "Order Date:"
723
+ msgstr "Rendelés dátuma:"
724
+
725
+ #: templates/Simple/invoice.php:69
726
+ msgid "Payment Method:"
727
+ msgstr "Fizetési mód"
728
+
729
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
730
+ msgid "Product"
731
+ msgstr "Termék"
732
+
733
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
734
+ msgid "Quantity"
735
+ msgstr "Mennyiség"
736
+
737
+ #: templates/Simple/invoice.php:85
738
+ msgid "Price"
739
+ msgstr "Ár"
740
+
741
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
742
+ msgid "Description"
743
+ msgstr ""
744
+
745
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
746
+ msgid "SKU"
747
+ msgstr "SKU"
748
+
749
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
750
+ msgid "SKU:"
751
+ msgstr "SKU:"
752
+
753
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
754
+ msgid "Weight:"
755
+ msgstr "Súly:"
756
+
757
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
758
+ msgid "Customer Notes"
759
+ msgstr "Vásárlói megjegyzések"
760
+
761
+ #: templates/Simple/packing-slip.php:30
762
+ msgid "Shipping Address:"
763
+ msgstr ""
764
+
765
+ #: templates/Simple/packing-slip.php:57
766
+ msgid "Shipping Method:"
767
+ msgstr ""
768
+
769
+ #: woocommerce-pdf-invoices-packingslips.php:231
770
+ #, php-format
771
+ msgid ""
772
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
773
+ "installed & activated!"
774
+ msgstr ""
775
+ "WooCommerce PDF Invoices & Packing Slipsnek szüksége van az telepített és "
776
+ "bekapcsolt %sWooCommerce%s pluginra."
777
+
778
+ #: woocommerce-pdf-invoices-packingslips.php:243
779
+ msgid ""
780
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
781
+ "higher recommended)."
782
+ msgstr ""
783
+
784
+ #: woocommerce-pdf-invoices-packingslips.php:244
785
+ msgid "How to update your PHP version"
786
+ msgstr ""
787
+
788
+ #~ msgid "Template"
789
+ #~ msgstr "Sablon"
790
+
791
+ #~ msgid ""
792
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
793
+ #~ "Packing Slips templates at %s."
794
+ #~ msgstr ""
795
+ #~ "Fejlettebb sablonokat keres? Nézze meg a Premium PDF Invoice & Packing "
796
+ #~ "Slips sablonokat a %s-on. "
797
+
798
+ #, fuzzy
799
+ #~ msgid "Customer Invoice email"
800
+ #~ msgstr "Vásárlói megjegyzések"
801
+
802
+ #~ msgid "PDF Template settings"
803
+ #~ msgstr "PDF sablon beállítások"
804
+
805
+ #~ msgid ""
806
+ #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
807
+ #~ "<code>%s</code> to customize them"
808
+ #~ msgstr ""
809
+ #~ "Saját sablont szeretne használni? Másolja az összes fájlt a <code>%s</"
810
+ #~ "code> könyvtárból a <code>%s</code> könyvtárba a módosításhoz."
811
+
812
+ #, fuzzy
813
+ #~ msgid "WooCommerce order number"
814
+ #~ msgstr "WooCommerce PDF számlák"
815
+
816
+ #, fuzzy
817
+ #~ msgid "Order date"
818
+ #~ msgstr "Rendelés dátuma:"
819
+
820
+ #, fuzzy
821
+ #~ msgid "Invoice date"
822
+ #~ msgstr "Számla"
823
+
824
+ #~ msgid "PDF invoice"
825
+ #~ msgstr "PDF számla"
826
+
827
+ #~ msgid "PDF Packing Slip"
828
+ #~ msgstr "PDF szállítólevél"
829
+
830
+ #~ msgid "PDF Packing Slips"
831
+ #~ msgstr "PDF szállítólevelet"
832
+
833
+ #~ msgid "..."
834
+ #~ msgstr "..."
835
+
836
+ #~ msgid "Email invoice (attach to order confirmation or invoice email)"
837
+ #~ msgstr ""
838
+ #~ "Számla küldése emailban (csatolja a rendelési vagy a teljesítési "
839
+ #~ "igazoláshoz)"
languages/woocommerce-pdf-invoices-packing-slips-id_ID.po CHANGED
@@ -1,926 +1,926 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
- "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
7
- "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
8
- "Language: id_ID\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Nomor faktur"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Buat PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr ""
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Faktur"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Tanggal faktur:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr "H"
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr "M"
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Download faktur (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "Anda tidak memiliki izin yang memadai untuk mengakses halaman ini."
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr "Beberapa parameter ekspor hilang."
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
- "<B> Peringatan! </ B> Pengaturan di bawah dimaksudkan untuk debugging / "
79
- "pengembangan saja. Jangan gunakan mereka di situs web live!"
80
-
81
- #: includes/class-wcpdf-settings-callbacks.php:36
82
- msgid ""
83
- "These are used for the (optional) footer columns in the <em>Modern "
84
- "(Premium)</em> template, but can also be used for other elements in your "
85
- "custom template"
86
- msgstr ""
87
- "Ini digunakan untuk kolom footer (opsional) di template <em> Modern "
88
- "(Premium) </ em>, namun juga dapat digunakan untuk elemen lain dalam "
89
- "template khusus Anda"
90
-
91
- #: includes/class-wcpdf-settings-callbacks.php:301
92
- msgid "Image resolution"
93
- msgstr "Resolusi gambar"
94
-
95
- #: includes/class-wcpdf-settings-callbacks.php:325
96
- msgid "Save"
97
- msgstr ""
98
-
99
- #: includes/class-wcpdf-settings-debug.php:34
100
- msgid "Debug settings"
101
- msgstr "Pengaturan Debug"
102
-
103
- #: includes/class-wcpdf-settings-debug.php:40
104
- msgid "Legacy mode"
105
- msgstr ""
106
-
107
- #: includes/class-wcpdf-settings-debug.php:46
108
- msgid ""
109
- "Legacy mode ensures compatibility with templates and filters from previous "
110
- "versions."
111
- msgstr ""
112
-
113
- #: includes/class-wcpdf-settings-debug.php:52
114
- msgid "Enable debug output"
115
- msgstr "Aktifkan keluaran debug"
116
-
117
- #: includes/class-wcpdf-settings-debug.php:58
118
- msgid ""
119
- "Enable this option to output plugin errors if you're getting a blank page or "
120
- "other PDF generation issues"
121
- msgstr ""
122
- "Aktifkan opsi ini untuk menampilkan kesalahan plugin jika Anda mendapatkan "
123
- "halaman kosong atau masalah generasi PDF lainnya"
124
-
125
- #: includes/class-wcpdf-settings-debug.php:64
126
- msgid "Output to HTML"
127
- msgstr "Keluaran ke HTML"
128
-
129
- #: includes/class-wcpdf-settings-debug.php:70
130
- msgid ""
131
- "Send the template output as HTML to the browser instead of creating a PDF."
132
- msgstr ""
133
- "Kirimkan output template sebagai HTML ke browser alih-alih membuat PDF."
134
-
135
- #: includes/class-wcpdf-settings-documents.php:29
136
- #: includes/class-wcpdf-settings.php:84
137
- msgid "Documents"
138
- msgstr ""
139
-
140
- #: includes/class-wcpdf-settings-documents.php:45
141
- msgid ""
142
- "All available documents are listed below. Click on a document to configure "
143
- "it."
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-settings-general.php:37
147
- msgid "General settings"
148
- msgstr "Pengaturan Umum"
149
-
150
- #: includes/class-wcpdf-settings-general.php:43
151
- msgid "How do you want to view the PDF?"
152
- msgstr "Bagaimana Anda ingin melihat PDF?"
153
-
154
- #: includes/class-wcpdf-settings-general.php:50
155
- msgid "Download the PDF"
156
- msgstr "Download PDF"
157
-
158
- #: includes/class-wcpdf-settings-general.php:51
159
- msgid "Open the PDF in a new browser tab/window"
160
- msgstr "Buka PDF di tab / jendela browser baru"
161
-
162
- #: includes/class-wcpdf-settings-general.php:58
163
- msgid "Choose a template"
164
- msgstr "Pilih template"
165
-
166
- #: includes/class-wcpdf-settings-general.php:65
167
- #, php-format
168
- msgid ""
169
- "Want to use your own template? Copy all the files from <code>%s</code> to "
170
- "your (child) theme in <code>%s</code> to customize them"
171
- msgstr ""
172
- "Ingin menggunakan template anda sendiri? Salin semua file dari <code> %s </ "
173
- "code> ke tema (anak) Anda di <code> %s </ code> untuk menyesuaikannya"
174
-
175
- #: includes/class-wcpdf-settings-general.php:71
176
- msgid "Paper size"
177
- msgstr "Ukuran kertas"
178
-
179
- #: includes/class-wcpdf-settings-general.php:78
180
- msgid "A4"
181
- msgstr "A4"
182
-
183
- #: includes/class-wcpdf-settings-general.php:79
184
- msgid "Letter"
185
- msgstr "Surat"
186
-
187
- #: includes/class-wcpdf-settings-general.php:86
188
- msgid "Extended currency symbol support"
189
- msgstr ""
190
-
191
- #: includes/class-wcpdf-settings-general.php:92
192
- msgid "Enable this if your currency symbol is not displaying properly"
193
- msgstr ""
194
-
195
- #: includes/class-wcpdf-settings-general.php:98
196
- msgid "Shop header/logo"
197
- msgstr "Shop header / logo"
198
-
199
- #: includes/class-wcpdf-settings-general.php:104
200
- msgid "Select or upload your invoice header/logo"
201
- msgstr "Pilih atau upload header / logo faktur Anda"
202
-
203
- #: includes/class-wcpdf-settings-general.php:105
204
- msgid "Set image"
205
- msgstr "Set gambar"
206
-
207
- #: includes/class-wcpdf-settings-general.php:106
208
- msgid "Remove image"
209
- msgstr "Hapus gambar"
210
-
211
- #: includes/class-wcpdf-settings-general.php:113
212
- msgid "Shop Name"
213
- msgstr "Nama toko"
214
-
215
- #: includes/class-wcpdf-settings-general.php:126
216
- msgid "Shop Address"
217
- msgstr "Alamat toko"
218
-
219
- #: includes/class-wcpdf-settings-general.php:141
220
- msgid "Footer: terms & conditions, policies, etc."
221
- msgstr "Footer: syarat & ketentuan, kebijakan, dll."
222
-
223
- #: includes/class-wcpdf-settings-general.php:156
224
- msgid "Extra template fields"
225
- msgstr "Zusätzliche Vorlagenfelder "
226
-
227
- #: includes/class-wcpdf-settings-general.php:162
228
- msgid "Extra field 1"
229
- msgstr "Zusatzfeld 1 "
230
-
231
- #: includes/class-wcpdf-settings-general.php:170
232
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
233
- msgstr "Ini adalah kolom footer 1 di template <i> Modern (Premium) </ i>"
234
-
235
- #: includes/class-wcpdf-settings-general.php:177
236
- msgid "Extra field 2"
237
- msgstr "Bidang tambahan 2"
238
-
239
- #: includes/class-wcpdf-settings-general.php:185
240
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
241
- msgstr "Ini adalah kolom footer 2 di template <i> Modern (Premium) </ i>"
242
-
243
- #: includes/class-wcpdf-settings-general.php:192
244
- msgid "Extra field 3"
245
- msgstr "Bidang tambahan 3"
246
-
247
- #: includes/class-wcpdf-settings-general.php:200
248
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
249
- msgstr "Ini adalah kolom footer 3 di template <i> Modern (Premium) </ i>"
250
-
251
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
252
- msgid "PDF Invoices"
253
- msgstr "Faktur PDF"
254
-
255
- #: includes/class-wcpdf-settings.php:58
256
- msgid "Settings"
257
- msgstr "Pengaturan"
258
-
259
- #: includes/class-wcpdf-settings.php:71
260
- msgid "Documentation"
261
- msgstr ""
262
-
263
- #: includes/class-wcpdf-settings.php:72
264
- msgid "Support Forum"
265
- msgstr ""
266
-
267
- #: includes/class-wcpdf-settings.php:83
268
- msgid "General"
269
- msgstr "Umum"
270
-
271
- #: includes/class-wcpdf-settings.php:89
272
- msgid "Status"
273
- msgstr "Status"
274
-
275
- #: includes/compatibility/class-wc-core-compatibility.php:222
276
- msgid "WooCommerce"
277
- msgstr ""
278
-
279
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
280
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
281
- msgid "N/A"
282
- msgstr "N / A"
283
-
284
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
285
- msgid "Payment method"
286
- msgstr "Metode pembayaran"
287
-
288
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
289
- msgid "Shipping method"
290
- msgstr "Metode pengiriman"
291
-
292
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
293
- #, php-format
294
- msgid "(includes %s)"
295
- msgstr ""
296
-
297
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
298
- #, php-format
299
- msgid "(Includes %s)"
300
- msgstr ""
301
-
302
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
303
- msgid "Subtotal"
304
- msgstr "Subtotal"
305
-
306
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
307
- msgid "Shipping"
308
- msgstr "pengiriman"
309
-
310
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
311
- msgid "Discount"
312
- msgstr "Diskon"
313
-
314
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
315
- msgid "VAT"
316
- msgstr "TONG"
317
-
318
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
319
- msgid "Tax rate"
320
- msgstr "Persentase pajak"
321
-
322
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
323
- msgid "Total ex. VAT"
324
- msgstr "Total mantan TONG"
325
-
326
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
327
- msgid "Total"
328
- msgstr "Total"
329
-
330
- #: includes/documents/abstract-wcpdf-order-document.php:674
331
- msgid "Admin email"
332
- msgstr ""
333
-
334
- #: includes/documents/abstract-wcpdf-order-document.php:677
335
- msgid "Manual email"
336
- msgstr ""
337
-
338
- # This is a filename (prefix). do not use spaces or special characters!
339
- #: includes/documents/class-wcpdf-invoice.php:85
340
- msgid "invoice"
341
- msgid_plural "invoices"
342
- msgstr[0] "faktur"
343
- msgstr[1] "faktur"
344
-
345
- #: includes/documents/class-wcpdf-invoice.php:130
346
- #: includes/documents/class-wcpdf-packing-slip.php:94
347
- msgid "Enable"
348
- msgstr ""
349
-
350
- #: includes/documents/class-wcpdf-invoice.php:141
351
- msgid "Attach to:"
352
- msgstr ""
353
-
354
- #: includes/documents/class-wcpdf-invoice.php:148
355
- #, php-format
356
- msgid ""
357
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
358
- "permissions for this folder! Without having write access to this folder, the "
359
- "plugin will not be able to email invoices."
360
- msgstr ""
361
- "Sepertinya map temp (<code> %s </ code>) tidak dapat ditulis, periksa izin "
362
- "untuk folder ini! Tanpa memiliki akses tulis ke folder ini, plugin tidak "
363
- "akan bisa mengirim faktur melalui email."
364
-
365
- #: includes/documents/class-wcpdf-invoice.php:154
366
- msgid "Display shipping address"
367
- msgstr "Tampilkan alamat pengiriman"
368
-
369
- #: includes/documents/class-wcpdf-invoice.php:160
370
- msgid ""
371
- "Display shipping address (in addition to the default billing address) if "
372
- "different from billing address"
373
- msgstr ""
374
-
375
- #: includes/documents/class-wcpdf-invoice.php:166
376
- #: includes/documents/class-wcpdf-packing-slip.php:117
377
- msgid "Display email address"
378
- msgstr "Tampilkan alamat email"
379
-
380
- #: includes/documents/class-wcpdf-invoice.php:177
381
- #: includes/documents/class-wcpdf-packing-slip.php:128
382
- msgid "Display phone number"
383
- msgstr "nomor telepon tampilan"
384
-
385
- #: includes/documents/class-wcpdf-invoice.php:188
386
- msgid "Display invoice date"
387
- msgstr "Tampilkan tanggal faktur"
388
-
389
- #: includes/documents/class-wcpdf-invoice.php:200
390
- msgid "Display invoice number"
391
- msgstr ""
392
-
393
- #: includes/documents/class-wcpdf-invoice.php:212
394
- msgid "Next invoice number (without prefix/suffix etc.)"
395
- msgstr "Nomor faktur berikutnya (tanpa awalan / akhiran dll.)"
396
-
397
- #: includes/documents/class-wcpdf-invoice.php:218
398
- msgid ""
399
- "This is the number that will be used for the next document. By default, "
400
- "numbering starts from 1 and increases for every new document. Note that if "
401
- "you override this and set it lower than the current/highest number, this "
402
- "could create duplicate numbers!"
403
- msgstr ""
404
-
405
- #: includes/documents/class-wcpdf-invoice.php:224
406
- msgid "Number format"
407
- msgstr ""
408
-
409
- #: includes/documents/class-wcpdf-invoice.php:232
410
- msgid "Prefix"
411
- msgstr "Awalan"
412
-
413
- #: includes/documents/class-wcpdf-invoice.php:234
414
- msgid ""
415
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
416
- "respectively"
417
- msgstr ""
418
-
419
- #: includes/documents/class-wcpdf-invoice.php:237
420
- msgid "Suffix"
421
- msgstr "Akhiran"
422
-
423
- #: includes/documents/class-wcpdf-invoice.php:242
424
- msgid "Padding"
425
- msgstr "Lapisan"
426
-
427
- #: includes/documents/class-wcpdf-invoice.php:245
428
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
429
- msgstr ""
430
- "Masukkan jumlah digit di sini - masukkan \\ \"6 \" untuk menampilkan 42 "
431
- "sebagai 000042"
432
-
433
- #: includes/documents/class-wcpdf-invoice.php:248
434
- msgid ""
435
- "note: if you have already created a custom invoice number format with a "
436
- "filter, the above settings will be ignored"
437
- msgstr ""
438
- "Catatan: jika Anda telah membuat format angka faktur khusus dengan filter, "
439
- "pengaturan di atas akan diabaikan"
440
-
441
- #: includes/documents/class-wcpdf-invoice.php:254
442
- msgid "Reset invoice number yearly"
443
- msgstr ""
444
-
445
- #: includes/documents/class-wcpdf-invoice.php:265
446
- msgid "Allow My Account invoice download"
447
- msgstr "Izinkan mendownload faktur Akun Saya"
448
-
449
- #: includes/documents/class-wcpdf-invoice.php:272
450
- msgid "Only when an invoice is already created/emailed"
451
- msgstr "Hanya saat faktur sudah dibuat / diemailkan"
452
-
453
- #: includes/documents/class-wcpdf-invoice.php:273
454
- msgid "Only for specific order statuses (define below)"
455
- msgstr "Hanya untuk status pesanan tertentu (tentukan di bawah)"
456
-
457
- #: includes/documents/class-wcpdf-invoice.php:274
458
- msgid "Always"
459
- msgstr "Selalu"
460
-
461
- #: includes/documents/class-wcpdf-invoice.php:275
462
- msgid "Never"
463
- msgstr ""
464
-
465
- #: includes/documents/class-wcpdf-invoice.php:290
466
- msgid "Enable invoice number column in the orders list"
467
- msgstr "Aktifkan kolom nomor faktur dalam daftar pesanan"
468
-
469
- #: includes/documents/class-wcpdf-invoice.php:301
470
- msgid "Disable for free products"
471
- msgstr "Nonaktifkan untuk produk gratis"
472
-
473
- #: includes/documents/class-wcpdf-invoice.php:307
474
- msgid ""
475
- "Disable automatic creation/attachment when only free products are ordered"
476
- msgstr ""
477
-
478
- #: includes/documents/class-wcpdf-invoice.php:321
479
- msgid "Invoice numbers are created by a third-party extension."
480
- msgstr ""
481
-
482
- #: includes/documents/class-wcpdf-invoice.php:323
483
- #, php-format
484
- msgid "Configure it <a href=\"%s\">here</a>."
485
- msgstr ""
486
-
487
- #: includes/documents/class-wcpdf-packing-slip.php:32
488
- #: includes/documents/class-wcpdf-packing-slip.php:41
489
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
490
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
491
- msgid "Packing Slip"
492
- msgstr "Slip pengepakan"
493
-
494
- # This is a filename (prefix). do not use spaces or special characters!
495
- #: includes/documents/class-wcpdf-packing-slip.php:53
496
- msgid "packing-slip"
497
- msgid_plural "packing-slips"
498
- msgstr[0] "Packing-slip"
499
- msgstr[1] "Packing-slip"
500
-
501
- #: includes/documents/class-wcpdf-packing-slip.php:105
502
- msgid "Display billing address"
503
- msgstr "Tampilkan alamat penagihan"
504
-
505
- #: includes/documents/class-wcpdf-packing-slip.php:111
506
- msgid ""
507
- "Display billing address (in addition to the default shipping address) if "
508
- "different from shipping address"
509
- msgstr ""
510
-
511
- #: includes/legacy/class-wcpdf-legacy-document.php:32
512
- msgid "Legacy Document"
513
- msgstr ""
514
-
515
- #: includes/views/wcpdf-extensions.php:15
516
- msgid "Check out these premium extensions!"
517
- msgstr "Lihat ekstensi premium ini!"
518
-
519
- #: includes/views/wcpdf-extensions.php:16
520
- msgid "click items to read more"
521
- msgstr "Klik item untuk membaca lebih lanjut"
522
-
523
- #: includes/views/wcpdf-extensions.php:21
524
- msgid ""
525
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
526
- "system"
527
- msgstr ""
528
-
529
- #: includes/views/wcpdf-extensions.php:23
530
- msgid ""
531
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
532
- "premium extensions:"
533
- msgstr ""
534
-
535
- #: includes/views/wcpdf-extensions.php:24
536
- msgid "Professional features:"
537
- msgstr ""
538
-
539
- #: includes/views/wcpdf-extensions.php:26
540
- #: includes/views/wcpdf-extensions.php:56
541
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
542
- msgstr "Email / print / download <b> PDF Credit Notes & Proforma invoice </ b>"
543
-
544
- #: includes/views/wcpdf-extensions.php:27
545
- #: includes/views/wcpdf-extensions.php:57
546
- msgid ""
547
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
548
- "packing slips, for example to a drop-shipper or a supplier."
549
- msgstr ""
550
- "Kirimkan email pemberitahuan <b> terpisah </ b> dengan (atau tanpa) slip "
551
- "faktur / kemasan iPod, misalnya ke pengirim barang atau pemasok."
552
-
553
- #: includes/views/wcpdf-extensions.php:28
554
- #: includes/views/wcpdf-extensions.php:58
555
- msgid ""
556
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
557
- "document) to the WooCommerce emails of your choice."
558
- msgstr ""
559
- "Lampirkan <b> hingga 3 file statis </ b> (misalnya dokumen persyaratan & "
560
- "ketentuan) ke email WooCommerce pilihan Anda."
561
-
562
- #: includes/views/wcpdf-extensions.php:29
563
- #: includes/views/wcpdf-extensions.php:59
564
- msgid ""
565
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
566
- "and credit notes or utilize the main invoice numbering system"
567
- msgstr ""
568
- "Gunakan <b> sistem penomoran yang terpisah </ b> dan / atau format untuk "
569
- "proforma faktur dan nota kredit atau memanfaatkan sistem penomoran faktur "
570
- "utama"
571
-
572
- #: includes/views/wcpdf-extensions.php:30
573
- #: includes/views/wcpdf-extensions.php:60
574
- msgid ""
575
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
576
- "additional custom fields, font sizes etc. without the need to create a "
577
- "custom template."
578
- msgstr ""
579
- "<B> Sesuaikan </ b> <b> alamat pengiriman & penagihan </ b> untuk "
580
- "menyertakan bidang khusus tambahan, ukuran font, dll. Tanpa perlu membuat "
581
- "template khusus."
582
-
583
- #: includes/views/wcpdf-extensions.php:31
584
- #: includes/views/wcpdf-extensions.php:61
585
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
586
- msgstr "Gunakan plugin dalam setup bahasa multi bahasa <b> WPML </ b>"
587
-
588
- #: includes/views/wcpdf-extensions.php:33
589
- #: includes/views/wcpdf-extensions.php:131
590
- msgid "Advanced, customizable templates"
591
- msgstr ""
592
-
593
- #: includes/views/wcpdf-extensions.php:35
594
- #: includes/views/wcpdf-extensions.php:134
595
- msgid ""
596
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
597
- "your needs with a drag & drop customizer"
598
- msgstr ""
599
-
600
- #: includes/views/wcpdf-extensions.php:36
601
- #: includes/views/wcpdf-extensions.php:135
602
- msgid "Two extra stylish premade templates (Modern & Business)"
603
- msgstr ""
604
-
605
- #: includes/views/wcpdf-extensions.php:38
606
- msgid "Upload automatically to dropbox"
607
- msgstr ""
608
-
609
- #: includes/views/wcpdf-extensions.php:40
610
- #: includes/views/wcpdf-extensions.php:97
611
- msgid ""
612
- "This extension conveniently uploads all the invoices (and other pdf "
613
- "documents from the professional extension) that are emailed to your "
614
- "customers to Dropbox. The best way to keep your invoice administration up to "
615
- "date!"
616
- msgstr ""
617
- "Ekstensi ini dengan mudah mengunggah semua faktur (dan dokumen pdf lainnya "
618
- "dari ekstensi profesional) yang dikirim melalui email kepada pelanggan Anda "
619
- "ke Dropbox. Cara terbaik untuk menjaga agar administrasi faktur Anda tetap "
620
- "up to date!"
621
-
622
- #: includes/views/wcpdf-extensions.php:43
623
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
624
- msgstr ""
625
-
626
- #: includes/views/wcpdf-extensions.php:52
627
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
628
- msgstr ""
629
- "Go Pro: Faktur proforma, catatan kredit (= pengembalian uang) & banyak lagi!"
630
-
631
- #: includes/views/wcpdf-extensions.php:54
632
- msgid ""
633
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
634
- "features:"
635
- msgstr ""
636
- "Supercharge WooCommerce PDF Invoices & Packing Slips dengan beberapa fitur "
637
- "berikut:"
638
-
639
- #: includes/views/wcpdf-extensions.php:63
640
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
641
- msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips Professional!"
642
-
643
- #: includes/views/wcpdf-extensions.php:71
644
- msgid "Automatically send payment reminders to your customers"
645
- msgstr ""
646
-
647
- #: includes/views/wcpdf-extensions.php:73
648
- msgid "WooCommerce Smart Reminder emails"
649
- msgstr ""
650
-
651
- #: includes/views/wcpdf-extensions.php:75
652
- msgid "<b>Completely automatic</b> scheduled emails"
653
- msgstr ""
654
-
655
- #: includes/views/wcpdf-extensions.php:76
656
- msgid ""
657
- "<b>Rich text editor</b> for the email text, including placeholders for data "
658
- "from the order (name, order total, etc)"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:77
662
- msgid ""
663
- "Configure the exact requirements for sending an email (time after order, "
664
- "order status, payment method)"
665
- msgstr ""
666
-
667
- #: includes/views/wcpdf-extensions.php:78
668
- msgid ""
669
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
670
- "order language."
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:79
674
- msgid ""
675
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
676
- "reminders, repeat purchases)"
677
- msgstr ""
678
-
679
- #: includes/views/wcpdf-extensions.php:80
680
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
681
- msgstr ""
682
-
683
- #: includes/views/wcpdf-extensions.php:82
684
- msgid "Get WooCommerce Smart Reminder Emails"
685
- msgstr ""
686
-
687
- #: includes/views/wcpdf-extensions.php:91
688
- msgid "Upload all invoices automatically to your dropbox"
689
- msgstr "Upload semua faktur secara otomatis ke dropbox Anda"
690
-
691
- #: includes/views/wcpdf-extensions.php:98
692
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
693
- msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips to dropbox!"
694
-
695
- #: includes/views/wcpdf-extensions.php:110
696
- msgid ""
697
- "Automatically send new orders or packing slips to your printer, as soon as "
698
- "the customer orders!"
699
- msgstr ""
700
- "Secara otomatis mengirim pesanan baru atau mengepak slip ke printer Anda, "
701
- "segera setelah pesanan pelanggan!"
702
-
703
- #: includes/views/wcpdf-extensions.php:116
704
- msgid ""
705
- "Check out the WooCommerce Automatic Order Printing extension from our "
706
- "partners at Simba Hosting"
707
- msgstr ""
708
- "Lihat ekstensi WooCommerce Automatic Order Printing dari mitra kami di Simba "
709
- "Hosting"
710
-
711
- #: includes/views/wcpdf-extensions.php:117
712
- msgid "WooCommerce Automatic Order Printing"
713
- msgstr "WooCommerce Automatic Order Printing"
714
-
715
- #: includes/views/wcpdf-extensions.php:136
716
- #, php-format
717
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
718
- msgstr "Lihat template Premium Invoice & Packing Slips Premium di %s ."
719
-
720
- #: includes/views/wcpdf-extensions.php:137
721
- #, php-format
722
- msgid "For custom templates, contact us at %s."
723
- msgstr "Untuk template khusus, hubungi kami di %s ."
724
-
725
- #: includes/views/wcpdf-extensions.php:146
726
- msgid "Hide this message"
727
- msgstr ""
728
-
729
- #: includes/views/wcpdf-settings-page.php:8
730
- msgid "WooCommerce PDF Invoices"
731
- msgstr "WooCommerce PDF Faktur"
732
-
733
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
734
- msgid "Billing Address:"
735
- msgstr "Alamat tagihan:"
736
-
737
- #: templates/Simple/invoice.php:41
738
- msgid "Ship To:"
739
- msgstr "Dikirim ke:"
740
-
741
- #: templates/Simple/invoice.php:50
742
- msgid "Invoice Number:"
743
- msgstr "Nomor faktur:"
744
-
745
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
746
- msgid "Order Number:"
747
- msgstr "Jumlah order:"
748
-
749
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
750
- msgid "Order Date:"
751
- msgstr "Tanggal pemesanan:"
752
-
753
- #: templates/Simple/invoice.php:69
754
- msgid "Payment Method:"
755
- msgstr "Metode pembayaran:"
756
-
757
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
758
- msgid "Product"
759
- msgstr "Produk"
760
-
761
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
762
- msgid "Quantity"
763
- msgstr "Kuantitas"
764
-
765
- #: templates/Simple/invoice.php:85
766
- msgid "Price"
767
- msgstr "Harga"
768
-
769
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
770
- msgid "Description"
771
- msgstr "Deskripsi"
772
-
773
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
774
- msgid "SKU"
775
- msgstr "SKU"
776
-
777
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
778
- msgid "SKU:"
779
- msgstr "SKU:"
780
-
781
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
782
- msgid "Weight:"
783
- msgstr "Berat:"
784
-
785
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
786
- msgid "Customer Notes"
787
- msgstr "Catatan Pelanggan"
788
-
789
- #: templates/Simple/packing-slip.php:30
790
- msgid "Shipping Address:"
791
- msgstr "Alamat Pengiriman:"
792
-
793
- #: templates/Simple/packing-slip.php:57
794
- msgid "Shipping Method:"
795
- msgstr "Metode pengiriman:"
796
-
797
- #: woocommerce-pdf-invoices-packingslips.php:231
798
- #, php-format
799
- msgid ""
800
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
801
- "installed & activated!"
802
- msgstr ""
803
- "WooCommerce PDF Invoices & Packing Slips membutuhkan %s WooCommerce %s untuk "
804
- "diinstal & diaktifkan!"
805
-
806
- #: woocommerce-pdf-invoices-packingslips.php:243
807
- msgid ""
808
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
809
- "higher recommended)."
810
- msgstr ""
811
-
812
- #: woocommerce-pdf-invoices-packingslips.php:244
813
- msgid "How to update your PHP version"
814
- msgstr ""
815
-
816
- #~ msgid "Attach invoice to:"
817
- #~ msgstr "Lampirkan faktur ke:"
818
-
819
- #~ msgid ""
820
- #~ "Display shipping address on invoice (in addition to the default billing "
821
- #~ "address) if different from billing address"
822
- #~ msgstr ""
823
- #~ "Tampilkan alamat pengiriman pada faktur (di samping alamat penagihan "
824
- #~ "default) jika berbeda dengan alamat penagihan"
825
-
826
- #~ msgid ""
827
- #~ "This is the number that will be used on the next invoice that is created. "
828
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
829
- #~ "first invoice that is created and increases for every new invoice. Note "
830
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
831
- #~ "number, this could create double invoice numbers!"
832
- #~ msgstr ""
833
- #~ "Ini adalah nomor yang akan digunakan pada faktur berikutnya yang dibuat. "
834
- #~ "Secara default, penomoran dimulai dari Nomor Pesanan WooCommerce dari "
835
- #~ "faktur pertama yang dibuat dan meningkat untuk setiap faktur baru. "
836
- #~ "Perhatikan bahwa jika Anda mengganti ini dan menetapkannya lebih rendah "
837
- #~ "dari angka faktur tertinggi (PDF), ini bisa membuat nomor faktur ganda!"
838
-
839
- #~ msgid "Invoice number format"
840
- #~ msgstr "Format nomor faktur"
841
-
842
- #~ msgid ""
843
- #~ "Disable automatic creation/attachment of invoices when only free products "
844
- #~ "are ordered"
845
- #~ msgstr ""
846
- #~ "Nonaktifkan pembuatan otomatis / lampiran faktur bila hanya produk gratis "
847
- #~ "yang dipesan"
848
-
849
- #~ msgid ""
850
- #~ "Display billing address on packing slip (in addition to the default "
851
- #~ "shipping address) if different from shipping address"
852
- #~ msgstr ""
853
- #~ "Tampilkan alamat penagihan pada slip pengepakan (selain alamat pengiriman "
854
- #~ "default) jika berbeda dari alamat pengiriman"
855
-
856
- #~ msgid "Template"
857
- #~ msgstr "Template"
858
-
859
- #~ msgid "Admin New Order email"
860
- #~ msgstr "Email Admin Orde Baru"
861
-
862
- #~ msgid "Customer Processing Order email"
863
- #~ msgstr "Email pesanan pemrosesan pelanggan"
864
-
865
- #~ msgid "Customer Completed Order email"
866
- #~ msgstr "Pelanggan Selesai email Orde"
867
-
868
- #~ msgid "Customer Invoice email"
869
- #~ msgstr "Email faktur pelanggan"
870
-
871
- #~ msgid "Interface"
872
- #~ msgstr "Interface"
873
-
874
- #~ msgid "PDF Template settings"
875
- #~ msgstr "Pengaturan template PDF"
876
-
877
- #~ msgid "Display built-in sequential invoice number"
878
- #~ msgstr "Menampilkan nomor faktur berurutan built-in"
879
-
880
- #~ msgid ""
881
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
882
- #~ "respectively"
883
- #~ msgstr ""
884
- #~ "Untuk menggunakan pesanan tahun dan / atau bulan, gunakan [order_year] "
885
- #~ "atau [order_month] masing-masing"
886
-
887
- #~ msgid "Use old tmp folder"
888
- #~ msgstr "Gunakan folder tmp lama"
889
-
890
- #~ msgid ""
891
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
892
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
893
- #~ "not recommended on new installs!"
894
- #~ msgstr ""
895
- #~ "Sebelum versi 1.5 dari Faktur PDF, file-file sementara disimpan dalam "
896
- #~ "folder plugin. Pengaturan ini hanya ditujukan untuk kompatibilitas "
897
- #~ "mundur, tidak disarankan pada pemasangan baru!"
898
-
899
- #~ msgid "PDF Packing Slips"
900
- #~ msgstr "PDF Packing Slips"
901
-
902
- #~ msgid "PDF Invoice"
903
- #~ msgstr "Faktur PDF"
904
-
905
- #~ msgid "PDF Packing Slip"
906
- #~ msgstr "PDF Packing Slip"
907
-
908
- #~ msgid "PDF Invoice Number (unformatted!)"
909
- #~ msgstr "Nomor Faktur PDF (belum diformat!)"
910
-
911
- #~ msgid "More advanced templates"
912
- #~ msgstr "Template yang lebih maju"
913
-
914
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
915
- #~ msgstr ""
916
- #~ "Bingkisan modern yang trendi & slip kemasan dengan thumbnail produk!"
917
-
918
- #~ msgid "More tax details on the invoices!"
919
- #~ msgstr "Detail pajak lebih banyak pada faktur!"
920
-
921
- #~ msgid ""
922
- #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
923
- #~ "to the WooCommerce emails of your choice."
924
- #~ msgstr ""
925
- #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
926
- #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:37+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:37+0200\n"
6
+ "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
7
+ "Language-Team: ChameleonJohn.com <jordan.silaen@chameleonjohn.com>\n"
8
+ "Language: id_ID\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Nomor faktur"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Buat PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Faktur"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Tanggal faktur:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr "H"
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr "M"
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Download faktur (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "Anda tidak memiliki izin yang memadai untuk mengakses halaman ini."
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr "Beberapa parameter ekspor hilang."
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+ "<B> Peringatan! </ B> Pengaturan di bawah dimaksudkan untuk debugging / "
79
+ "pengembangan saja. Jangan gunakan mereka di situs web live!"
80
+
81
+ #: includes/class-wcpdf-settings-callbacks.php:36
82
+ msgid ""
83
+ "These are used for the (optional) footer columns in the <em>Modern "
84
+ "(Premium)</em> template, but can also be used for other elements in your "
85
+ "custom template"
86
+ msgstr ""
87
+ "Ini digunakan untuk kolom footer (opsional) di template <em> Modern "
88
+ "(Premium) </ em>, namun juga dapat digunakan untuk elemen lain dalam "
89
+ "template khusus Anda"
90
+
91
+ #: includes/class-wcpdf-settings-callbacks.php:301
92
+ msgid "Image resolution"
93
+ msgstr "Resolusi gambar"
94
+
95
+ #: includes/class-wcpdf-settings-callbacks.php:325
96
+ msgid "Save"
97
+ msgstr ""
98
+
99
+ #: includes/class-wcpdf-settings-debug.php:34
100
+ msgid "Debug settings"
101
+ msgstr "Pengaturan Debug"
102
+
103
+ #: includes/class-wcpdf-settings-debug.php:40
104
+ msgid "Legacy mode"
105
+ msgstr ""
106
+
107
+ #: includes/class-wcpdf-settings-debug.php:46
108
+ msgid ""
109
+ "Legacy mode ensures compatibility with templates and filters from previous "
110
+ "versions."
111
+ msgstr ""
112
+
113
+ #: includes/class-wcpdf-settings-debug.php:52
114
+ msgid "Enable debug output"
115
+ msgstr "Aktifkan keluaran debug"
116
+
117
+ #: includes/class-wcpdf-settings-debug.php:58
118
+ msgid ""
119
+ "Enable this option to output plugin errors if you're getting a blank page or "
120
+ "other PDF generation issues"
121
+ msgstr ""
122
+ "Aktifkan opsi ini untuk menampilkan kesalahan plugin jika Anda mendapatkan "
123
+ "halaman kosong atau masalah generasi PDF lainnya"
124
+
125
+ #: includes/class-wcpdf-settings-debug.php:64
126
+ msgid "Output to HTML"
127
+ msgstr "Keluaran ke HTML"
128
+
129
+ #: includes/class-wcpdf-settings-debug.php:70
130
+ msgid ""
131
+ "Send the template output as HTML to the browser instead of creating a PDF."
132
+ msgstr ""
133
+ "Kirimkan output template sebagai HTML ke browser alih-alih membuat PDF."
134
+
135
+ #: includes/class-wcpdf-settings-documents.php:29
136
+ #: includes/class-wcpdf-settings.php:84
137
+ msgid "Documents"
138
+ msgstr ""
139
+
140
+ #: includes/class-wcpdf-settings-documents.php:45
141
+ msgid ""
142
+ "All available documents are listed below. Click on a document to configure "
143
+ "it."
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-settings-general.php:37
147
+ msgid "General settings"
148
+ msgstr "Pengaturan Umum"
149
+
150
+ #: includes/class-wcpdf-settings-general.php:43
151
+ msgid "How do you want to view the PDF?"
152
+ msgstr "Bagaimana Anda ingin melihat PDF?"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:50
155
+ msgid "Download the PDF"
156
+ msgstr "Download PDF"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:51
159
+ msgid "Open the PDF in a new browser tab/window"
160
+ msgstr "Buka PDF di tab / jendela browser baru"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:58
163
+ msgid "Choose a template"
164
+ msgstr "Pilih template"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:65
167
+ #, php-format
168
+ msgid ""
169
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
170
+ "your (child) theme in <code>%s</code> to customize them"
171
+ msgstr ""
172
+ "Ingin menggunakan template anda sendiri? Salin semua file dari <code> %s </ "
173
+ "code> ke tema (anak) Anda di <code> %s </ code> untuk menyesuaikannya"
174
+
175
+ #: includes/class-wcpdf-settings-general.php:71
176
+ msgid "Paper size"
177
+ msgstr "Ukuran kertas"
178
+
179
+ #: includes/class-wcpdf-settings-general.php:78
180
+ msgid "A4"
181
+ msgstr "A4"
182
+
183
+ #: includes/class-wcpdf-settings-general.php:79
184
+ msgid "Letter"
185
+ msgstr "Surat"
186
+
187
+ #: includes/class-wcpdf-settings-general.php:86
188
+ msgid "Extended currency symbol support"
189
+ msgstr ""
190
+
191
+ #: includes/class-wcpdf-settings-general.php:92
192
+ msgid "Enable this if your currency symbol is not displaying properly"
193
+ msgstr ""
194
+
195
+ #: includes/class-wcpdf-settings-general.php:98
196
+ msgid "Shop header/logo"
197
+ msgstr "Shop header / logo"
198
+
199
+ #: includes/class-wcpdf-settings-general.php:104
200
+ msgid "Select or upload your invoice header/logo"
201
+ msgstr "Pilih atau upload header / logo faktur Anda"
202
+
203
+ #: includes/class-wcpdf-settings-general.php:105
204
+ msgid "Set image"
205
+ msgstr "Set gambar"
206
+
207
+ #: includes/class-wcpdf-settings-general.php:106
208
+ msgid "Remove image"
209
+ msgstr "Hapus gambar"
210
+
211
+ #: includes/class-wcpdf-settings-general.php:113
212
+ msgid "Shop Name"
213
+ msgstr "Nama toko"
214
+
215
+ #: includes/class-wcpdf-settings-general.php:126
216
+ msgid "Shop Address"
217
+ msgstr "Alamat toko"
218
+
219
+ #: includes/class-wcpdf-settings-general.php:141
220
+ msgid "Footer: terms & conditions, policies, etc."
221
+ msgstr "Footer: syarat & ketentuan, kebijakan, dll."
222
+
223
+ #: includes/class-wcpdf-settings-general.php:156
224
+ msgid "Extra template fields"
225
+ msgstr "Zusätzliche Vorlagenfelder "
226
+
227
+ #: includes/class-wcpdf-settings-general.php:162
228
+ msgid "Extra field 1"
229
+ msgstr "Zusatzfeld 1 "
230
+
231
+ #: includes/class-wcpdf-settings-general.php:170
232
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
233
+ msgstr "Ini adalah kolom footer 1 di template <i> Modern (Premium) </ i>"
234
+
235
+ #: includes/class-wcpdf-settings-general.php:177
236
+ msgid "Extra field 2"
237
+ msgstr "Bidang tambahan 2"
238
+
239
+ #: includes/class-wcpdf-settings-general.php:185
240
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
241
+ msgstr "Ini adalah kolom footer 2 di template <i> Modern (Premium) </ i>"
242
+
243
+ #: includes/class-wcpdf-settings-general.php:192
244
+ msgid "Extra field 3"
245
+ msgstr "Bidang tambahan 3"
246
+
247
+ #: includes/class-wcpdf-settings-general.php:200
248
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
249
+ msgstr "Ini adalah kolom footer 3 di template <i> Modern (Premium) </ i>"
250
+
251
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
252
+ msgid "PDF Invoices"
253
+ msgstr "Faktur PDF"
254
+
255
+ #: includes/class-wcpdf-settings.php:58
256
+ msgid "Settings"
257
+ msgstr "Pengaturan"
258
+
259
+ #: includes/class-wcpdf-settings.php:71
260
+ msgid "Documentation"
261
+ msgstr ""
262
+
263
+ #: includes/class-wcpdf-settings.php:72
264
+ msgid "Support Forum"
265
+ msgstr ""
266
+
267
+ #: includes/class-wcpdf-settings.php:83
268
+ msgid "General"
269
+ msgstr "Umum"
270
+
271
+ #: includes/class-wcpdf-settings.php:89
272
+ msgid "Status"
273
+ msgstr "Status"
274
+
275
+ #: includes/compatibility/class-wc-core-compatibility.php:222
276
+ msgid "WooCommerce"
277
+ msgstr ""
278
+
279
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
280
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
281
+ msgid "N/A"
282
+ msgstr "N / A"
283
+
284
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
285
+ msgid "Payment method"
286
+ msgstr "Metode pembayaran"
287
+
288
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
289
+ msgid "Shipping method"
290
+ msgstr "Metode pengiriman"
291
+
292
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
293
+ #, php-format
294
+ msgid "(includes %s)"
295
+ msgstr ""
296
+
297
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
298
+ #, php-format
299
+ msgid "(Includes %s)"
300
+ msgstr ""
301
+
302
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
303
+ msgid "Subtotal"
304
+ msgstr "Subtotal"
305
+
306
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
307
+ msgid "Shipping"
308
+ msgstr "pengiriman"
309
+
310
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
311
+ msgid "Discount"
312
+ msgstr "Diskon"
313
+
314
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
315
+ msgid "VAT"
316
+ msgstr "TONG"
317
+
318
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
319
+ msgid "Tax rate"
320
+ msgstr "Persentase pajak"
321
+
322
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
323
+ msgid "Total ex. VAT"
324
+ msgstr "Total mantan TONG"
325
+
326
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
327
+ msgid "Total"
328
+ msgstr "Total"
329
+
330
+ #: includes/documents/abstract-wcpdf-order-document.php:674
331
+ msgid "Admin email"
332
+ msgstr ""
333
+
334
+ #: includes/documents/abstract-wcpdf-order-document.php:677
335
+ msgid "Manual email"
336
+ msgstr ""
337
+
338
+ # This is a filename (prefix). do not use spaces or special characters!
339
+ #: includes/documents/class-wcpdf-invoice.php:85
340
+ msgid "invoice"
341
+ msgid_plural "invoices"
342
+ msgstr[0] "faktur"
343
+ msgstr[1] "faktur"
344
+
345
+ #: includes/documents/class-wcpdf-invoice.php:130
346
+ #: includes/documents/class-wcpdf-packing-slip.php:94
347
+ msgid "Enable"
348
+ msgstr ""
349
+
350
+ #: includes/documents/class-wcpdf-invoice.php:141
351
+ msgid "Attach to:"
352
+ msgstr ""
353
+
354
+ #: includes/documents/class-wcpdf-invoice.php:148
355
+ #, php-format
356
+ msgid ""
357
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
358
+ "permissions for this folder! Without having write access to this folder, the "
359
+ "plugin will not be able to email invoices."
360
+ msgstr ""
361
+ "Sepertinya map temp (<code> %s </ code>) tidak dapat ditulis, periksa izin "
362
+ "untuk folder ini! Tanpa memiliki akses tulis ke folder ini, plugin tidak "
363
+ "akan bisa mengirim faktur melalui email."
364
+
365
+ #: includes/documents/class-wcpdf-invoice.php:154
366
+ msgid "Display shipping address"
367
+ msgstr "Tampilkan alamat pengiriman"
368
+
369
+ #: includes/documents/class-wcpdf-invoice.php:160
370
+ msgid ""
371
+ "Display shipping address (in addition to the default billing address) if "
372
+ "different from billing address"
373
+ msgstr ""
374
+
375
+ #: includes/documents/class-wcpdf-invoice.php:166
376
+ #: includes/documents/class-wcpdf-packing-slip.php:117
377
+ msgid "Display email address"
378
+ msgstr "Tampilkan alamat email"
379
+
380
+ #: includes/documents/class-wcpdf-invoice.php:177
381
+ #: includes/documents/class-wcpdf-packing-slip.php:128
382
+ msgid "Display phone number"
383
+ msgstr "nomor telepon tampilan"
384
+
385
+ #: includes/documents/class-wcpdf-invoice.php:188
386
+ msgid "Display invoice date"
387
+ msgstr "Tampilkan tanggal faktur"
388
+
389
+ #: includes/documents/class-wcpdf-invoice.php:200
390
+ msgid "Display invoice number"
391
+ msgstr ""
392
+
393
+ #: includes/documents/class-wcpdf-invoice.php:212
394
+ msgid "Next invoice number (without prefix/suffix etc.)"
395
+ msgstr "Nomor faktur berikutnya (tanpa awalan / akhiran dll.)"
396
+
397
+ #: includes/documents/class-wcpdf-invoice.php:218
398
+ msgid ""
399
+ "This is the number that will be used for the next document. By default, "
400
+ "numbering starts from 1 and increases for every new document. Note that if "
401
+ "you override this and set it lower than the current/highest number, this "
402
+ "could create duplicate numbers!"
403
+ msgstr ""
404
+
405
+ #: includes/documents/class-wcpdf-invoice.php:224
406
+ msgid "Number format"
407
+ msgstr ""
408
+
409
+ #: includes/documents/class-wcpdf-invoice.php:232
410
+ msgid "Prefix"
411
+ msgstr "Awalan"
412
+
413
+ #: includes/documents/class-wcpdf-invoice.php:234
414
+ msgid ""
415
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
416
+ "respectively"
417
+ msgstr ""
418
+
419
+ #: includes/documents/class-wcpdf-invoice.php:237
420
+ msgid "Suffix"
421
+ msgstr "Akhiran"
422
+
423
+ #: includes/documents/class-wcpdf-invoice.php:242
424
+ msgid "Padding"
425
+ msgstr "Lapisan"
426
+
427
+ #: includes/documents/class-wcpdf-invoice.php:245
428
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
429
+ msgstr ""
430
+ "Masukkan jumlah digit di sini - masukkan \\ \"6 \" untuk menampilkan 42 "
431
+ "sebagai 000042"
432
+
433
+ #: includes/documents/class-wcpdf-invoice.php:248
434
+ msgid ""
435
+ "note: if you have already created a custom invoice number format with a "
436
+ "filter, the above settings will be ignored"
437
+ msgstr ""
438
+ "Catatan: jika Anda telah membuat format angka faktur khusus dengan filter, "
439
+ "pengaturan di atas akan diabaikan"
440
+
441
+ #: includes/documents/class-wcpdf-invoice.php:254
442
+ msgid "Reset invoice number yearly"
443
+ msgstr ""
444
+
445
+ #: includes/documents/class-wcpdf-invoice.php:265
446
+ msgid "Allow My Account invoice download"
447
+ msgstr "Izinkan mendownload faktur Akun Saya"
448
+
449
+ #: includes/documents/class-wcpdf-invoice.php:272
450
+ msgid "Only when an invoice is already created/emailed"
451
+ msgstr "Hanya saat faktur sudah dibuat / diemailkan"
452
+
453
+ #: includes/documents/class-wcpdf-invoice.php:273
454
+ msgid "Only for specific order statuses (define below)"
455
+ msgstr "Hanya untuk status pesanan tertentu (tentukan di bawah)"
456
+
457
+ #: includes/documents/class-wcpdf-invoice.php:274
458
+ msgid "Always"
459
+ msgstr "Selalu"
460
+
461
+ #: includes/documents/class-wcpdf-invoice.php:275
462
+ msgid "Never"
463
+ msgstr ""
464
+
465
+ #: includes/documents/class-wcpdf-invoice.php:290
466
+ msgid "Enable invoice number column in the orders list"
467
+ msgstr "Aktifkan kolom nomor faktur dalam daftar pesanan"
468
+
469
+ #: includes/documents/class-wcpdf-invoice.php:301
470
+ msgid "Disable for free products"
471
+ msgstr "Nonaktifkan untuk produk gratis"
472
+
473
+ #: includes/documents/class-wcpdf-invoice.php:307
474
+ msgid ""
475
+ "Disable automatic creation/attachment when only free products are ordered"
476
+ msgstr ""
477
+
478
+ #: includes/documents/class-wcpdf-invoice.php:321
479
+ msgid "Invoice numbers are created by a third-party extension."
480
+ msgstr ""
481
+
482
+ #: includes/documents/class-wcpdf-invoice.php:323
483
+ #, php-format
484
+ msgid "Configure it <a href=\"%s\">here</a>."
485
+ msgstr ""
486
+
487
+ #: includes/documents/class-wcpdf-packing-slip.php:32
488
+ #: includes/documents/class-wcpdf-packing-slip.php:41
489
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
490
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
491
+ msgid "Packing Slip"
492
+ msgstr "Slip pengepakan"
493
+
494
+ # This is a filename (prefix). do not use spaces or special characters!
495
+ #: includes/documents/class-wcpdf-packing-slip.php:53
496
+ msgid "packing-slip"
497
+ msgid_plural "packing-slips"
498
+ msgstr[0] "Packing-slip"
499
+ msgstr[1] "Packing-slip"
500
+
501
+ #: includes/documents/class-wcpdf-packing-slip.php:105
502
+ msgid "Display billing address"
503
+ msgstr "Tampilkan alamat penagihan"
504
+
505
+ #: includes/documents/class-wcpdf-packing-slip.php:111
506
+ msgid ""
507
+ "Display billing address (in addition to the default shipping address) if "
508
+ "different from shipping address"
509
+ msgstr ""
510
+
511
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
512
+ msgid "Legacy Document"
513
+ msgstr ""
514
+
515
+ #: includes/views/wcpdf-extensions.php:15
516
+ msgid "Check out these premium extensions!"
517
+ msgstr "Lihat ekstensi premium ini!"
518
+
519
+ #: includes/views/wcpdf-extensions.php:16
520
+ msgid "click items to read more"
521
+ msgstr "Klik item untuk membaca lebih lanjut"
522
+
523
+ #: includes/views/wcpdf-extensions.php:21
524
+ msgid ""
525
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
526
+ "system"
527
+ msgstr ""
528
+
529
+ #: includes/views/wcpdf-extensions.php:23
530
+ msgid ""
531
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
532
+ "premium extensions:"
533
+ msgstr ""
534
+
535
+ #: includes/views/wcpdf-extensions.php:24
536
+ msgid "Professional features:"
537
+ msgstr ""
538
+
539
+ #: includes/views/wcpdf-extensions.php:26
540
+ #: includes/views/wcpdf-extensions.php:56
541
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
542
+ msgstr "Email / print / download <b> PDF Credit Notes & Proforma invoice </ b>"
543
+
544
+ #: includes/views/wcpdf-extensions.php:27
545
+ #: includes/views/wcpdf-extensions.php:57
546
+ msgid ""
547
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
548
+ "packing slips, for example to a drop-shipper or a supplier."
549
+ msgstr ""
550
+ "Kirimkan email pemberitahuan <b> terpisah </ b> dengan (atau tanpa) slip "
551
+ "faktur / kemasan iPod, misalnya ke pengirim barang atau pemasok."
552
+
553
+ #: includes/views/wcpdf-extensions.php:28
554
+ #: includes/views/wcpdf-extensions.php:58
555
+ msgid ""
556
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
557
+ "document) to the WooCommerce emails of your choice."
558
+ msgstr ""
559
+ "Lampirkan <b> hingga 3 file statis </ b> (misalnya dokumen persyaratan & "
560
+ "ketentuan) ke email WooCommerce pilihan Anda."
561
+
562
+ #: includes/views/wcpdf-extensions.php:29
563
+ #: includes/views/wcpdf-extensions.php:59
564
+ msgid ""
565
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
566
+ "and credit notes or utilize the main invoice numbering system"
567
+ msgstr ""
568
+ "Gunakan <b> sistem penomoran yang terpisah </ b> dan / atau format untuk "
569
+ "proforma faktur dan nota kredit atau memanfaatkan sistem penomoran faktur "
570
+ "utama"
571
+
572
+ #: includes/views/wcpdf-extensions.php:30
573
+ #: includes/views/wcpdf-extensions.php:60
574
+ msgid ""
575
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
576
+ "additional custom fields, font sizes etc. without the need to create a "
577
+ "custom template."
578
+ msgstr ""
579
+ "<B> Sesuaikan </ b> <b> alamat pengiriman & penagihan </ b> untuk "
580
+ "menyertakan bidang khusus tambahan, ukuran font, dll. Tanpa perlu membuat "
581
+ "template khusus."
582
+
583
+ #: includes/views/wcpdf-extensions.php:31
584
+ #: includes/views/wcpdf-extensions.php:61
585
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
586
+ msgstr "Gunakan plugin dalam setup bahasa multi bahasa <b> WPML </ b>"
587
+
588
+ #: includes/views/wcpdf-extensions.php:33
589
+ #: includes/views/wcpdf-extensions.php:131
590
+ msgid "Advanced, customizable templates"
591
+ msgstr ""
592
+
593
+ #: includes/views/wcpdf-extensions.php:35
594
+ #: includes/views/wcpdf-extensions.php:134
595
+ msgid ""
596
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
597
+ "your needs with a drag & drop customizer"
598
+ msgstr ""
599
+
600
+ #: includes/views/wcpdf-extensions.php:36
601
+ #: includes/views/wcpdf-extensions.php:135
602
+ msgid "Two extra stylish premade templates (Modern & Business)"
603
+ msgstr ""
604
+
605
+ #: includes/views/wcpdf-extensions.php:38
606
+ msgid "Upload automatically to dropbox"
607
+ msgstr ""
608
+
609
+ #: includes/views/wcpdf-extensions.php:40
610
+ #: includes/views/wcpdf-extensions.php:97
611
+ msgid ""
612
+ "This extension conveniently uploads all the invoices (and other pdf "
613
+ "documents from the professional extension) that are emailed to your "
614
+ "customers to Dropbox. The best way to keep your invoice administration up to "
615
+ "date!"
616
+ msgstr ""
617
+ "Ekstensi ini dengan mudah mengunggah semua faktur (dan dokumen pdf lainnya "
618
+ "dari ekstensi profesional) yang dikirim melalui email kepada pelanggan Anda "
619
+ "ke Dropbox. Cara terbaik untuk menjaga agar administrasi faktur Anda tetap "
620
+ "up to date!"
621
+
622
+ #: includes/views/wcpdf-extensions.php:43
623
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
624
+ msgstr ""
625
+
626
+ #: includes/views/wcpdf-extensions.php:52
627
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
628
+ msgstr ""
629
+ "Go Pro: Faktur proforma, catatan kredit (= pengembalian uang) & banyak lagi!"
630
+
631
+ #: includes/views/wcpdf-extensions.php:54
632
+ msgid ""
633
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
634
+ "features:"
635
+ msgstr ""
636
+ "Supercharge WooCommerce PDF Invoices & Packing Slips dengan beberapa fitur "
637
+ "berikut:"
638
+
639
+ #: includes/views/wcpdf-extensions.php:63
640
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
641
+ msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips Professional!"
642
+
643
+ #: includes/views/wcpdf-extensions.php:71
644
+ msgid "Automatically send payment reminders to your customers"
645
+ msgstr ""
646
+
647
+ #: includes/views/wcpdf-extensions.php:73
648
+ msgid "WooCommerce Smart Reminder emails"
649
+ msgstr ""
650
+
651
+ #: includes/views/wcpdf-extensions.php:75
652
+ msgid "<b>Completely automatic</b> scheduled emails"
653
+ msgstr ""
654
+
655
+ #: includes/views/wcpdf-extensions.php:76
656
+ msgid ""
657
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
658
+ "from the order (name, order total, etc)"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:77
662
+ msgid ""
663
+ "Configure the exact requirements for sending an email (time after order, "
664
+ "order status, payment method)"
665
+ msgstr ""
666
+
667
+ #: includes/views/wcpdf-extensions.php:78
668
+ msgid ""
669
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
670
+ "order language."
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:79
674
+ msgid ""
675
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
676
+ "reminders, repeat purchases)"
677
+ msgstr ""
678
+
679
+ #: includes/views/wcpdf-extensions.php:80
680
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
681
+ msgstr ""
682
+
683
+ #: includes/views/wcpdf-extensions.php:82
684
+ msgid "Get WooCommerce Smart Reminder Emails"
685
+ msgstr ""
686
+
687
+ #: includes/views/wcpdf-extensions.php:91
688
+ msgid "Upload all invoices automatically to your dropbox"
689
+ msgstr "Upload semua faktur secara otomatis ke dropbox Anda"
690
+
691
+ #: includes/views/wcpdf-extensions.php:98
692
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
693
+ msgstr "Dapatkan WooCommerce PDF Invoices & Packing Slips to dropbox!"
694
+
695
+ #: includes/views/wcpdf-extensions.php:110
696
+ msgid ""
697
+ "Automatically send new orders or packing slips to your printer, as soon as "
698
+ "the customer orders!"
699
+ msgstr ""
700
+ "Secara otomatis mengirim pesanan baru atau mengepak slip ke printer Anda, "
701
+ "segera setelah pesanan pelanggan!"
702
+
703
+ #: includes/views/wcpdf-extensions.php:116
704
+ msgid ""
705
+ "Check out the WooCommerce Automatic Order Printing extension from our "
706
+ "partners at Simba Hosting"
707
+ msgstr ""
708
+ "Lihat ekstensi WooCommerce Automatic Order Printing dari mitra kami di Simba "
709
+ "Hosting"
710
+
711
+ #: includes/views/wcpdf-extensions.php:117
712
+ msgid "WooCommerce Automatic Order Printing"
713
+ msgstr "WooCommerce Automatic Order Printing"
714
+
715
+ #: includes/views/wcpdf-extensions.php:136
716
+ #, php-format
717
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
718
+ msgstr "Lihat template Premium Invoice & Packing Slips Premium di %s ."
719
+
720
+ #: includes/views/wcpdf-extensions.php:137
721
+ #, php-format
722
+ msgid "For custom templates, contact us at %s."
723
+ msgstr "Untuk template khusus, hubungi kami di %s ."
724
+
725
+ #: includes/views/wcpdf-extensions.php:146
726
+ msgid "Hide this message"
727
+ msgstr ""
728
+
729
+ #: includes/views/wcpdf-settings-page.php:8
730
+ msgid "WooCommerce PDF Invoices"
731
+ msgstr "WooCommerce PDF Faktur"
732
+
733
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
734
+ msgid "Billing Address:"
735
+ msgstr "Alamat tagihan:"
736
+
737
+ #: templates/Simple/invoice.php:41
738
+ msgid "Ship To:"
739
+ msgstr "Dikirim ke:"
740
+
741
+ #: templates/Simple/invoice.php:50
742
+ msgid "Invoice Number:"
743
+ msgstr "Nomor faktur:"
744
+
745
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
746
+ msgid "Order Number:"
747
+ msgstr "Jumlah order:"
748
+
749
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
750
+ msgid "Order Date:"
751
+ msgstr "Tanggal pemesanan:"
752
+
753
+ #: templates/Simple/invoice.php:69
754
+ msgid "Payment Method:"
755
+ msgstr "Metode pembayaran:"
756
+
757
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
758
+ msgid "Product"
759
+ msgstr "Produk"
760
+
761
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
762
+ msgid "Quantity"
763
+ msgstr "Kuantitas"
764
+
765
+ #: templates/Simple/invoice.php:85
766
+ msgid "Price"
767
+ msgstr "Harga"
768
+
769
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
770
+ msgid "Description"
771
+ msgstr "Deskripsi"
772
+
773
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
774
+ msgid "SKU"
775
+ msgstr "SKU"
776
+
777
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
778
+ msgid "SKU:"
779
+ msgstr "SKU:"
780
+
781
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
782
+ msgid "Weight:"
783
+ msgstr "Berat:"
784
+
785
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
786
+ msgid "Customer Notes"
787
+ msgstr "Catatan Pelanggan"
788
+
789
+ #: templates/Simple/packing-slip.php:30
790
+ msgid "Shipping Address:"
791
+ msgstr "Alamat Pengiriman:"
792
+
793
+ #: templates/Simple/packing-slip.php:57
794
+ msgid "Shipping Method:"
795
+ msgstr "Metode pengiriman:"
796
+
797
+ #: woocommerce-pdf-invoices-packingslips.php:231
798
+ #, php-format
799
+ msgid ""
800
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
801
+ "installed & activated!"
802
+ msgstr ""
803
+ "WooCommerce PDF Invoices & Packing Slips membutuhkan %s WooCommerce %s untuk "
804
+ "diinstal & diaktifkan!"
805
+
806
+ #: woocommerce-pdf-invoices-packingslips.php:243
807
+ msgid ""
808
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
809
+ "higher recommended)."
810
+ msgstr ""
811
+
812
+ #: woocommerce-pdf-invoices-packingslips.php:244
813
+ msgid "How to update your PHP version"
814
+ msgstr ""
815
+
816
+ #~ msgid "Attach invoice to:"
817
+ #~ msgstr "Lampirkan faktur ke:"
818
+
819
+ #~ msgid ""
820
+ #~ "Display shipping address on invoice (in addition to the default billing "
821
+ #~ "address) if different from billing address"
822
+ #~ msgstr ""
823
+ #~ "Tampilkan alamat pengiriman pada faktur (di samping alamat penagihan "
824
+ #~ "default) jika berbeda dengan alamat penagihan"
825
+
826
+ #~ msgid ""
827
+ #~ "This is the number that will be used on the next invoice that is created. "
828
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
829
+ #~ "first invoice that is created and increases for every new invoice. Note "
830
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
831
+ #~ "number, this could create double invoice numbers!"
832
+ #~ msgstr ""
833
+ #~ "Ini adalah nomor yang akan digunakan pada faktur berikutnya yang dibuat. "
834
+ #~ "Secara default, penomoran dimulai dari Nomor Pesanan WooCommerce dari "
835
+ #~ "faktur pertama yang dibuat dan meningkat untuk setiap faktur baru. "
836
+ #~ "Perhatikan bahwa jika Anda mengganti ini dan menetapkannya lebih rendah "
837
+ #~ "dari angka faktur tertinggi (PDF), ini bisa membuat nomor faktur ganda!"
838
+
839
+ #~ msgid "Invoice number format"
840
+ #~ msgstr "Format nomor faktur"
841
+
842
+ #~ msgid ""
843
+ #~ "Disable automatic creation/attachment of invoices when only free products "
844
+ #~ "are ordered"
845
+ #~ msgstr ""
846
+ #~ "Nonaktifkan pembuatan otomatis / lampiran faktur bila hanya produk gratis "
847
+ #~ "yang dipesan"
848
+
849
+ #~ msgid ""
850
+ #~ "Display billing address on packing slip (in addition to the default "
851
+ #~ "shipping address) if different from shipping address"
852
+ #~ msgstr ""
853
+ #~ "Tampilkan alamat penagihan pada slip pengepakan (selain alamat pengiriman "
854
+ #~ "default) jika berbeda dari alamat pengiriman"
855
+
856
+ #~ msgid "Template"
857
+ #~ msgstr "Template"
858
+
859
+ #~ msgid "Admin New Order email"
860
+ #~ msgstr "Email Admin Orde Baru"
861
+
862
+ #~ msgid "Customer Processing Order email"
863
+ #~ msgstr "Email pesanan pemrosesan pelanggan"
864
+
865
+ #~ msgid "Customer Completed Order email"
866
+ #~ msgstr "Pelanggan Selesai email Orde"
867
+
868
+ #~ msgid "Customer Invoice email"
869
+ #~ msgstr "Email faktur pelanggan"
870
+
871
+ #~ msgid "Interface"
872
+ #~ msgstr "Interface"
873
+
874
+ #~ msgid "PDF Template settings"
875
+ #~ msgstr "Pengaturan template PDF"
876
+
877
+ #~ msgid "Display built-in sequential invoice number"
878
+ #~ msgstr "Menampilkan nomor faktur berurutan built-in"
879
+
880
+ #~ msgid ""
881
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
882
+ #~ "respectively"
883
+ #~ msgstr ""
884
+ #~ "Untuk menggunakan pesanan tahun dan / atau bulan, gunakan [order_year] "
885
+ #~ "atau [order_month] masing-masing"
886
+
887
+ #~ msgid "Use old tmp folder"
888
+ #~ msgstr "Gunakan folder tmp lama"
889
+
890
+ #~ msgid ""
891
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
892
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
893
+ #~ "not recommended on new installs!"
894
+ #~ msgstr ""
895
+ #~ "Sebelum versi 1.5 dari Faktur PDF, file-file sementara disimpan dalam "
896
+ #~ "folder plugin. Pengaturan ini hanya ditujukan untuk kompatibilitas "
897
+ #~ "mundur, tidak disarankan pada pemasangan baru!"
898
+
899
+ #~ msgid "PDF Packing Slips"
900
+ #~ msgstr "PDF Packing Slips"
901
+
902
+ #~ msgid "PDF Invoice"
903
+ #~ msgstr "Faktur PDF"
904
+
905
+ #~ msgid "PDF Packing Slip"
906
+ #~ msgstr "PDF Packing Slip"
907
+
908
+ #~ msgid "PDF Invoice Number (unformatted!)"
909
+ #~ msgstr "Nomor Faktur PDF (belum diformat!)"
910
+
911
+ #~ msgid "More advanced templates"
912
+ #~ msgstr "Template yang lebih maju"
913
+
914
+ #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
915
+ #~ msgstr ""
916
+ #~ "Bingkisan modern yang trendi & slip kemasan dengan thumbnail produk!"
917
+
918
+ #~ msgid "More tax details on the invoices!"
919
+ #~ msgstr "Detail pajak lebih banyak pada faktur!"
920
+
921
+ #~ msgid ""
922
+ #~ "Attach a <b>static file</b> (for example a terms & conditions document) "
923
+ #~ "to the WooCommerce emails of your choice."
924
+ #~ msgstr ""
925
+ #~ "Hinzufügen einer beliebigen <b>Datei </b> (beispielweise AGB, "
926
+ #~ "Widerrufsbelehrung) zum WooCommerce E-Mail"
languages/woocommerce-pdf-invoices-packing-slips-it_IT.po CHANGED
@@ -1,941 +1,941 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:38+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:38+0200\n"
6
- "Last-Translator: Astrid Virili <avirili@gmail.com>\n"
7
- "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
- "Language: it\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "Fattura Numero"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "Crea PDF"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr ""
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "Fattura"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "Data Fattura:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr ""
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr ""
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "Scarica fattura (PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr ""
68
- "Non disponi di autorizzazioni sufficienti per accedere a questa pagina."
69
-
70
- #: includes/class-wcpdf-main.php:141
71
- msgid "Some of the export parameters are missing."
72
- msgstr "Alcuni parametri di esportazione sono mancanti."
73
-
74
- #: includes/class-wcpdf-settings-callbacks.php:27
75
- msgid ""
76
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
77
- "Do not use them on a live website!"
78
- msgstr ""
79
- "<b>Attenzione!</b> Le impostazioni di seguito sono intese per il debug o per "
80
- "l'ambiente di sviluppo. NON vanno usate sul sito di produzione!"
81
-
82
- #: includes/class-wcpdf-settings-callbacks.php:36
83
- msgid ""
84
- "These are used for the (optional) footer columns in the <em>Modern "
85
- "(Premium)</em> template, but can also be used for other elements in your "
86
- "custom template"
87
- msgstr ""
88
- "Questi sono utilizzati per le colonne a piè di pagina (opzionali) nel "
89
- "template <em>Modern (Premium)</ em> di modello, ma possono essere utilizzati "
90
- "anche per altri elementi nel vostro modello personalizzato"
91
-
92
- #: includes/class-wcpdf-settings-callbacks.php:301
93
- msgid "Image resolution"
94
- msgstr "Risoluzione immagine"
95
-
96
- #: includes/class-wcpdf-settings-callbacks.php:325
97
- msgid "Save"
98
- msgstr ""
99
-
100
- #: includes/class-wcpdf-settings-debug.php:34
101
- msgid "Debug settings"
102
- msgstr "Impostazioni di debug"
103
-
104
- #: includes/class-wcpdf-settings-debug.php:40
105
- msgid "Legacy mode"
106
- msgstr ""
107
-
108
- #: includes/class-wcpdf-settings-debug.php:46
109
- msgid ""
110
- "Legacy mode ensures compatibility with templates and filters from previous "
111
- "versions."
112
- msgstr ""
113
-
114
- #: includes/class-wcpdf-settings-debug.php:52
115
- msgid "Enable debug output"
116
- msgstr "Abilita il debug"
117
-
118
- #: includes/class-wcpdf-settings-debug.php:58
119
- msgid ""
120
- "Enable this option to output plugin errors if you're getting a blank page or "
121
- "other PDF generation issues"
122
- msgstr ""
123
- "Abilita questa opzione per mostrare gli errori del plugin. È utile quando il "
124
- "PDF della fattura è una pagina vuota."
125
-
126
- #: includes/class-wcpdf-settings-debug.php:64
127
- msgid "Output to HTML"
128
- msgstr "In formato HTML"
129
-
130
- #: includes/class-wcpdf-settings-debug.php:70
131
- msgid ""
132
- "Send the template output as HTML to the browser instead of creating a PDF."
133
- msgstr "Mostra il modello "
134
-
135
- #: includes/class-wcpdf-settings-documents.php:29
136
- #: includes/class-wcpdf-settings.php:84
137
- msgid "Documents"
138
- msgstr ""
139
-
140
- #: includes/class-wcpdf-settings-documents.php:45
141
- msgid ""
142
- "All available documents are listed below. Click on a document to configure "
143
- "it."
144
- msgstr ""
145
-
146
- #: includes/class-wcpdf-settings-general.php:37
147
- msgid "General settings"
148
- msgstr "Impostazioni generali"
149
-
150
- #: includes/class-wcpdf-settings-general.php:43
151
- msgid "How do you want to view the PDF?"
152
- msgstr "Come desideri visualizzare il file PDF?"
153
-
154
- #: includes/class-wcpdf-settings-general.php:50
155
- msgid "Download the PDF"
156
- msgstr "Scarica il PDF"
157
-
158
- #: includes/class-wcpdf-settings-general.php:51
159
- msgid "Open the PDF in a new browser tab/window"
160
- msgstr "Apri il PDF in una nuova scheda/finestra del browser"
161
-
162
- #: includes/class-wcpdf-settings-general.php:58
163
- msgid "Choose a template"
164
- msgstr "Scegli un modello"
165
-
166
- #: includes/class-wcpdf-settings-general.php:65
167
- #, php-format
168
- msgid ""
169
- "Want to use your own template? Copy all the files from <code>%s</code> to "
170
- "your (child) theme in <code>%s</code> to customize them"
171
- msgstr ""
172
- "Vuoi usare il tuo template? Copia tutti i file della cartella <code>%s</"
173
- "code> nel tuo tema (o child theme) nella cartella <code>%s</code> e "
174
- "personalizzali"
175
-
176
- #: includes/class-wcpdf-settings-general.php:71
177
- msgid "Paper size"
178
- msgstr "Formato carta"
179
-
180
- #: includes/class-wcpdf-settings-general.php:78
181
- msgid "A4"
182
- msgstr "A4"
183
-
184
- #: includes/class-wcpdf-settings-general.php:79
185
- msgid "Letter"
186
- msgstr "Lettera"
187
-
188
- #: includes/class-wcpdf-settings-general.php:86
189
- msgid "Extended currency symbol support"
190
- msgstr ""
191
-
192
- #: includes/class-wcpdf-settings-general.php:92
193
- msgid "Enable this if your currency symbol is not displaying properly"
194
- msgstr ""
195
-
196
- #: includes/class-wcpdf-settings-general.php:98
197
- msgid "Shop header/logo"
198
- msgstr "Intestazione/logo Negozio"
199
-
200
- #: includes/class-wcpdf-settings-general.php:104
201
- msgid "Select or upload your invoice header/logo"
202
- msgstr "Seleziona o carica l'intestazione/logo della fattura"
203
-
204
- #: includes/class-wcpdf-settings-general.php:105
205
- msgid "Set image"
206
- msgstr "Imposta immagine "
207
-
208
- #: includes/class-wcpdf-settings-general.php:106
209
- msgid "Remove image"
210
- msgstr "Rimuovi immagine"
211
-
212
- #: includes/class-wcpdf-settings-general.php:113
213
- msgid "Shop Name"
214
- msgstr "Nome negozio"
215
-
216
- #: includes/class-wcpdf-settings-general.php:126
217
- msgid "Shop Address"
218
- msgstr "Indirizzo negozio"
219
-
220
- #: includes/class-wcpdf-settings-general.php:141
221
- msgid "Footer: terms & conditions, policies, etc."
222
- msgstr "Piè di pagina: termini e condizioni, politiche, ecc"
223
-
224
- #: includes/class-wcpdf-settings-general.php:156
225
- msgid "Extra template fields"
226
- msgstr "Campi modello Extra"
227
-
228
- #: includes/class-wcpdf-settings-general.php:162
229
- msgid "Extra field 1"
230
- msgstr "Campo Extra 1"
231
-
232
- #: includes/class-wcpdf-settings-general.php:170
233
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
- msgstr "Questa è la colonna 1 del footer nel modello <i>Modern (Premium)</ i>"
235
-
236
- #: includes/class-wcpdf-settings-general.php:177
237
- msgid "Extra field 2"
238
- msgstr "Campo Extra 2"
239
-
240
- #: includes/class-wcpdf-settings-general.php:185
241
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
242
- msgstr "Questa è la colonna 2 del footer nel modello <i>Modern (Premium)</ i>"
243
-
244
- #: includes/class-wcpdf-settings-general.php:192
245
- msgid "Extra field 3"
246
- msgstr "Campo Extra 3"
247
-
248
- #: includes/class-wcpdf-settings-general.php:200
249
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
250
- msgstr "Questa è la colonna 3 del footer nel modello <i>Modern (Premium)</ i>"
251
-
252
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
253
- msgid "PDF Invoices"
254
- msgstr "Fatture PDF"
255
-
256
- #: includes/class-wcpdf-settings.php:58
257
- msgid "Settings"
258
- msgstr "Impostazioni"
259
-
260
- #: includes/class-wcpdf-settings.php:71
261
- msgid "Documentation"
262
- msgstr ""
263
-
264
- #: includes/class-wcpdf-settings.php:72
265
- msgid "Support Forum"
266
- msgstr ""
267
-
268
- #: includes/class-wcpdf-settings.php:83
269
- msgid "General"
270
- msgstr "Generale"
271
-
272
- #: includes/class-wcpdf-settings.php:89
273
- msgid "Status"
274
- msgstr "Status"
275
-
276
- #: includes/compatibility/class-wc-core-compatibility.php:222
277
- msgid "WooCommerce"
278
- msgstr ""
279
-
280
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
281
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
282
- msgid "N/A"
283
- msgstr "N/A"
284
-
285
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
286
- msgid "Payment method"
287
- msgstr "Metodo di pagamento"
288
-
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
290
- msgid "Shipping method"
291
- msgstr "Metodo di spedizione"
292
-
293
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
294
- #, php-format
295
- msgid "(includes %s)"
296
- msgstr ""
297
-
298
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
299
- #, php-format
300
- msgid "(Includes %s)"
301
- msgstr ""
302
-
303
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
304
- msgid "Subtotal"
305
- msgstr "Totale parziale"
306
-
307
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
308
- msgid "Shipping"
309
- msgstr "Spedizione"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
312
- msgid "Discount"
313
- msgstr "Sconto"
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
316
- msgid "VAT"
317
- msgstr "IVA"
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
320
- msgid "Tax rate"
321
- msgstr "IVA"
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
324
- msgid "Total ex. VAT"
325
- msgstr "Totale (IVA esclusa)"
326
-
327
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
328
- msgid "Total"
329
- msgstr "Totale"
330
-
331
- #: includes/documents/abstract-wcpdf-order-document.php:674
332
- msgid "Admin email"
333
- msgstr ""
334
-
335
- #: includes/documents/abstract-wcpdf-order-document.php:677
336
- msgid "Manual email"
337
- msgstr ""
338
-
339
- #: includes/documents/class-wcpdf-invoice.php:85
340
- msgid "invoice"
341
- msgid_plural "invoices"
342
- msgstr[0] "fattura"
343
- msgstr[1] "fatture"
344
-
345
- #: includes/documents/class-wcpdf-invoice.php:130
346
- #: includes/documents/class-wcpdf-packing-slip.php:94
347
- msgid "Enable"
348
- msgstr ""
349
-
350
- #: includes/documents/class-wcpdf-invoice.php:141
351
- msgid "Attach to:"
352
- msgstr ""
353
-
354
- #: includes/documents/class-wcpdf-invoice.php:148
355
- #, php-format
356
- msgid ""
357
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
358
- "permissions for this folder! Without having write access to this folder, the "
359
- "plugin will not be able to email invoices."
360
- msgstr ""
361
- "Sembra che la cartella temp (<code>%s</code>) non sia scrivibile, verifica "
362
- "le autorizzazioni per questa cartella! Se il plugin non ha accesso in "
363
- "scrittura a questa cartella, non sarà in grado di inviare le fatture via "
364
- "email."
365
-
366
- #: includes/documents/class-wcpdf-invoice.php:154
367
- msgid "Display shipping address"
368
- msgstr "Mostra l'indirizzo del destinatario"
369
-
370
- #: includes/documents/class-wcpdf-invoice.php:160
371
- msgid ""
372
- "Display shipping address (in addition to the default billing address) if "
373
- "different from billing address"
374
- msgstr ""
375
-
376
- #: includes/documents/class-wcpdf-invoice.php:166
377
- #: includes/documents/class-wcpdf-packing-slip.php:117
378
- msgid "Display email address"
379
- msgstr "Mostra l'indirizzo email"
380
-
381
- #: includes/documents/class-wcpdf-invoice.php:177
382
- #: includes/documents/class-wcpdf-packing-slip.php:128
383
- msgid "Display phone number"
384
- msgstr "Mostra il numero di telefono"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:188
387
- msgid "Display invoice date"
388
- msgstr "Mostra Data Fattura"
389
-
390
- #: includes/documents/class-wcpdf-invoice.php:200
391
- msgid "Display invoice number"
392
- msgstr ""
393
-
394
- #: includes/documents/class-wcpdf-invoice.php:212
395
- msgid "Next invoice number (without prefix/suffix etc.)"
396
- msgstr "Numero della prossima fattura (senza prefisso, suffisso, ecc.)"
397
-
398
- #: includes/documents/class-wcpdf-invoice.php:218
399
- msgid ""
400
- "This is the number that will be used for the next document. By default, "
401
- "numbering starts from 1 and increases for every new document. Note that if "
402
- "you override this and set it lower than the current/highest number, this "
403
- "could create duplicate numbers!"
404
- msgstr ""
405
-
406
- #: includes/documents/class-wcpdf-invoice.php:224
407
- msgid "Number format"
408
- msgstr ""
409
-
410
- #: includes/documents/class-wcpdf-invoice.php:232
411
- msgid "Prefix"
412
- msgstr "Prefisso"
413
-
414
- #: includes/documents/class-wcpdf-invoice.php:234
415
- msgid ""
416
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
417
- "respectively"
418
- msgstr ""
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:237
421
- msgid "Suffix"
422
- msgstr "Suffisso"
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:242
425
- msgid "Padding"
426
- msgstr "Numero Cifre"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:245
429
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
430
- msgstr ""
431
- "inserisci qui il numero di cifre - scrivi \"6\" per visualizzare 42 come "
432
- "000042"
433
-
434
- #: includes/documents/class-wcpdf-invoice.php:248
435
- msgid ""
436
- "note: if you have already created a custom invoice number format with a "
437
- "filter, the above settings will be ignored"
438
- msgstr ""
439
- "nota: se hai già creato un numero di fattura personalizzato con un filtro, "
440
- "queste impostazioni verranno ignorate."
441
-
442
- #: includes/documents/class-wcpdf-invoice.php:254
443
- msgid "Reset invoice number yearly"
444
- msgstr ""
445
-
446
- #: includes/documents/class-wcpdf-invoice.php:265
447
- msgid "Allow My Account invoice download"
448
- msgstr "Abilita il download della fattura dalla pagina My Account"
449
-
450
- #: includes/documents/class-wcpdf-invoice.php:272
451
- msgid "Only when an invoice is already created/emailed"
452
- msgstr "Solo quando una fattura è già stata generata o spedita per email"
453
-
454
- #: includes/documents/class-wcpdf-invoice.php:273
455
- msgid "Only for specific order statuses (define below)"
456
- msgstr "Solo per specifici status dell'ordine (definiti di seguito)"
457
-
458
- #: includes/documents/class-wcpdf-invoice.php:274
459
- msgid "Always"
460
- msgstr "Sempre"
461
-
462
- #: includes/documents/class-wcpdf-invoice.php:275
463
- msgid "Never"
464
- msgstr ""
465
-
466
- #: includes/documents/class-wcpdf-invoice.php:290
467
- msgid "Enable invoice number column in the orders list"
468
- msgstr "Abilita la colonna del numero fattura nella lista ordini"
469
-
470
- #: includes/documents/class-wcpdf-invoice.php:301
471
- msgid "Disable for free products"
472
- msgstr "Disabilita per i prodotti gratuiti"
473
-
474
- #: includes/documents/class-wcpdf-invoice.php:307
475
- msgid ""
476
- "Disable automatic creation/attachment when only free products are ordered"
477
- msgstr ""
478
-
479
- #: includes/documents/class-wcpdf-invoice.php:321
480
- msgid "Invoice numbers are created by a third-party extension."
481
- msgstr ""
482
-
483
- #: includes/documents/class-wcpdf-invoice.php:323
484
- #, php-format
485
- msgid "Configure it <a href=\"%s\">here</a>."
486
- msgstr ""
487
-
488
- #: includes/documents/class-wcpdf-packing-slip.php:32
489
- #: includes/documents/class-wcpdf-packing-slip.php:41
490
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
491
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
492
- msgid "Packing Slip"
493
- msgstr "Documento di Trasporto"
494
-
495
- #: includes/documents/class-wcpdf-packing-slip.php:53
496
- msgid "packing-slip"
497
- msgid_plural "packing-slips"
498
- msgstr[0] "DDT"
499
- msgstr[1] "DDT"
500
-
501
- #: includes/documents/class-wcpdf-packing-slip.php:105
502
- msgid "Display billing address"
503
- msgstr "Mostra indirizzo di fatturazione"
504
-
505
- #: includes/documents/class-wcpdf-packing-slip.php:111
506
- msgid ""
507
- "Display billing address (in addition to the default shipping address) if "
508
- "different from shipping address"
509
- msgstr ""
510
-
511
- #: includes/legacy/class-wcpdf-legacy-document.php:32
512
- msgid "Legacy Document"
513
- msgstr ""
514
-
515
- #: includes/views/wcpdf-extensions.php:15
516
- msgid "Check out these premium extensions!"
517
- msgstr "Prova queste estensioni Premium"
518
-
519
- #: includes/views/wcpdf-extensions.php:16
520
- msgid "click items to read more"
521
- msgstr "clicca sugli elementi per saperne di più"
522
-
523
- #: includes/views/wcpdf-extensions.php:21
524
- msgid ""
525
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
526
- "system"
527
- msgstr ""
528
-
529
- #: includes/views/wcpdf-extensions.php:23
530
- msgid ""
531
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
532
- "premium extensions:"
533
- msgstr ""
534
-
535
- #: includes/views/wcpdf-extensions.php:24
536
- msgid "Professional features:"
537
- msgstr ""
538
-
539
- #: includes/views/wcpdf-extensions.php:26
540
- #: includes/views/wcpdf-extensions.php:56
541
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
542
- msgstr ""
543
- "Stampa/scarica/invia per email <b>Note di credito p Fatture pro-forma in "
544
- "PDF</b>"
545
-
546
- #: includes/views/wcpdf-extensions.php:27
547
- #: includes/views/wcpdf-extensions.php:57
548
- msgid ""
549
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
550
- "packing slips, for example to a drop-shipper or a supplier."
551
- msgstr ""
552
- "Invia una <b>email di notifica</> separata con (o senza) Fattura o DDT in "
553
- "PDF, per esempio a uno spedizioniere o un fornitore."
554
-
555
- #: includes/views/wcpdf-extensions.php:28
556
- #: includes/views/wcpdf-extensions.php:58
557
- msgid ""
558
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
559
- "document) to the WooCommerce emails of your choice."
560
- msgstr ""
561
- "Allega <b>fino a 3 file</b> a tua scelta (per esempio il documento dell "
562
- "Condizioni Generali) alle email di WooCommerce."
563
-
564
- #: includes/views/wcpdf-extensions.php:29
565
- #: includes/views/wcpdf-extensions.php:59
566
- msgid ""
567
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
568
- "and credit notes or utilize the main invoice numbering system"
569
- msgstr ""
570
- "Usa un <b>sistema di numerazione separato</b> e/o formato per le fatture pro-"
571
- "forma e le note di credito, oppure usa il sistema di numerazione principale."
572
-
573
- #: includes/views/wcpdf-extensions.php:30
574
- #: includes/views/wcpdf-extensions.php:60
575
- msgid ""
576
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
577
- "additional custom fields, font sizes etc. without the need to create a "
578
- "custom template."
579
- msgstr ""
580
- "<b>Personalizza l'indirizzo di fatturazione e di spedizione</b> per "
581
- "includere campi aggiuntivi, dimensione del font etc. senza dover create un "
582
- "template personalizzato."
583
-
584
- #: includes/views/wcpdf-extensions.php:31
585
- #: includes/views/wcpdf-extensions.php:61
586
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
587
- msgstr "Usa il plugin con <b>WPML</b>"
588
-
589
- #: includes/views/wcpdf-extensions.php:33
590
- #: includes/views/wcpdf-extensions.php:131
591
- msgid "Advanced, customizable templates"
592
- msgstr ""
593
-
594
- #: includes/views/wcpdf-extensions.php:35
595
- #: includes/views/wcpdf-extensions.php:134
596
- msgid ""
597
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
598
- "your needs with a drag & drop customizer"
599
- msgstr ""
600
-
601
- #: includes/views/wcpdf-extensions.php:36
602
- #: includes/views/wcpdf-extensions.php:135
603
- msgid "Two extra stylish premade templates (Modern & Business)"
604
- msgstr ""
605
-
606
- #: includes/views/wcpdf-extensions.php:38
607
- msgid "Upload automatically to dropbox"
608
- msgstr ""
609
-
610
- #: includes/views/wcpdf-extensions.php:40
611
- #: includes/views/wcpdf-extensions.php:97
612
- msgid ""
613
- "This extension conveniently uploads all the invoices (and other pdf "
614
- "documents from the professional extension) that are emailed to your "
615
- "customers to Dropbox. The best way to keep your invoice administration up to "
616
- "date!"
617
- msgstr ""
618
- "Questa estensione carica facilmente su Dropbox tutte le fatture (e gli altri "
619
- "documenti pdf della estensione professional) che vengono inviati via email "
620
- "ai vostri clienti. Il modo migliore per tenere aggiornata la gestione delle "
621
- "fatture!"
622
-
623
- #: includes/views/wcpdf-extensions.php:43
624
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
625
- msgstr ""
626
-
627
- #: includes/views/wcpdf-extensions.php:52
628
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
629
- msgstr "Go Pro: Fatture pro-forma, note di credito (= rimborsi) e molto altro!"
630
-
631
- #: includes/views/wcpdf-extensions.php:54
632
- msgid ""
633
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
634
- "features:"
635
- msgstr "Aggiungi funzionalità a WooCommerce PDF Invoices & Packing Slips:"
636
-
637
- #: includes/views/wcpdf-extensions.php:63
638
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
639
- msgstr "Acquista WooCommerce PDF Invoices & Packing Slips Professional!"
640
-
641
- #: includes/views/wcpdf-extensions.php:71
642
- msgid "Automatically send payment reminders to your customers"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:73
646
- msgid "WooCommerce Smart Reminder emails"
647
- msgstr ""
648
-
649
- #: includes/views/wcpdf-extensions.php:75
650
- msgid "<b>Completely automatic</b> scheduled emails"
651
- msgstr ""
652
-
653
- #: includes/views/wcpdf-extensions.php:76
654
- msgid ""
655
- "<b>Rich text editor</b> for the email text, including placeholders for data "
656
- "from the order (name, order total, etc)"
657
- msgstr ""
658
-
659
- #: includes/views/wcpdf-extensions.php:77
660
- msgid ""
661
- "Configure the exact requirements for sending an email (time after order, "
662
- "order status, payment method)"
663
- msgstr ""
664
-
665
- #: includes/views/wcpdf-extensions.php:78
666
- msgid ""
667
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
668
- "order language."
669
- msgstr ""
670
-
671
- #: includes/views/wcpdf-extensions.php:79
672
- msgid ""
673
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
674
- "reminders, repeat purchases)"
675
- msgstr ""
676
-
677
- #: includes/views/wcpdf-extensions.php:80
678
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
679
- msgstr ""
680
-
681
- #: includes/views/wcpdf-extensions.php:82
682
- msgid "Get WooCommerce Smart Reminder Emails"
683
- msgstr ""
684
-
685
- #: includes/views/wcpdf-extensions.php:91
686
- msgid "Upload all invoices automatically to your dropbox"
687
- msgstr "Carica tutte le fatture in automatico nel tuo Dropbox"
688
-
689
- #: includes/views/wcpdf-extensions.php:98
690
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
691
- msgstr "Acquista WooCommerce PDF Invoices & Packing Slips to dropbox"
692
-
693
- #: includes/views/wcpdf-extensions.php:110
694
- msgid ""
695
- "Automatically send new orders or packing slips to your printer, as soon as "
696
- "the customer orders!"
697
- msgstr ""
698
- "Invia automaticamente i nuovi ordini o documenti di trasporto alla tua "
699
- "stampante, non appena il cliente ordina!"
700
-
701
- #: includes/views/wcpdf-extensions.php:116
702
- msgid ""
703
- "Check out the WooCommerce Automatic Order Printing extension from our "
704
- "partners at Simba Hosting"
705
- msgstr ""
706
- "Leggi di più sull'estensione WooCommerce Automatic Order Printing sul sito "
707
- "del nostro partner Simba Hosting"
708
-
709
- #: includes/views/wcpdf-extensions.php:117
710
- msgid "WooCommerce Automatic Order Printing"
711
- msgstr ""
712
-
713
- #: includes/views/wcpdf-extensions.php:136
714
- #, php-format
715
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
716
- msgstr "Visualizza i modelli Premium PDF Invoice & Packing Slips su %s."
717
-
718
- #: includes/views/wcpdf-extensions.php:137
719
- #, php-format
720
- msgid "For custom templates, contact us at %s."
721
- msgstr "Contattaci via %s per modelli personalizzati."
722
-
723
- #: includes/views/wcpdf-extensions.php:146
724
- msgid "Hide this message"
725
- msgstr ""
726
-
727
- #: includes/views/wcpdf-settings-page.php:8
728
- msgid "WooCommerce PDF Invoices"
729
- msgstr "WooCommerce Fatture PDF"
730
-
731
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
732
- msgid "Billing Address:"
733
- msgstr "Indirizzo di fatturazione:"
734
-
735
- #: templates/Simple/invoice.php:41
736
- msgid "Ship To:"
737
- msgstr "Spedire a:"
738
-
739
- #: templates/Simple/invoice.php:50
740
- msgid "Invoice Number:"
741
- msgstr "Fattura N.:"
742
-
743
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
744
- msgid "Order Number:"
745
- msgstr "Ordine N.:"
746
-
747
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
748
- msgid "Order Date:"
749
- msgstr "Data Ordine:"
750
-
751
- #: templates/Simple/invoice.php:69
752
- msgid "Payment Method:"
753
- msgstr "Metodo di pagamento:"
754
-
755
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
756
- msgid "Product"
757
- msgstr "Prodotto"
758
-
759
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
760
- msgid "Quantity"
761
- msgstr "Quantità"
762
-
763
- #: templates/Simple/invoice.php:85
764
- msgid "Price"
765
- msgstr "Prezzo"
766
-
767
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
768
- msgid "Description"
769
- msgstr "Descrizione"
770
-
771
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
772
- msgid "SKU"
773
- msgstr "Codice prod."
774
-
775
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
776
- msgid "SKU:"
777
- msgstr "Codice prod.:"
778
-
779
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
780
- msgid "Weight:"
781
- msgstr "Peso:"
782
-
783
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
784
- msgid "Customer Notes"
785
- msgstr "Note del Cliente"
786
-
787
- #: templates/Simple/packing-slip.php:30
788
- msgid "Shipping Address:"
789
- msgstr "Indirizzo di spedizione:"
790
-
791
- #: templates/Simple/packing-slip.php:57
792
- msgid "Shipping Method:"
793
- msgstr "Metodo di spedizione:"
794
-
795
- #: woocommerce-pdf-invoices-packingslips.php:231
796
- #, php-format
797
- msgid ""
798
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
799
- "installed & activated!"
800
- msgstr ""
801
- "WooCommerce PDF Invoices & Packing Slips richiede %sWooCommerce%s per essere "
802
- "installato e attivato!"
803
-
804
- #: woocommerce-pdf-invoices-packingslips.php:243
805
- msgid ""
806
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
807
- "higher recommended)."
808
- msgstr ""
809
-
810
- #: woocommerce-pdf-invoices-packingslips.php:244
811
- msgid "How to update your PHP version"
812
- msgstr ""
813
-
814
- #~ msgid "Attach invoice to:"
815
- #~ msgstr "Allega la fattura a:"
816
-
817
- #~ msgid ""
818
- #~ "Display shipping address on invoice (in addition to the default billing "
819
- #~ "address) if different from billing address"
820
- #~ msgstr ""
821
- #~ "Mostra l'indirizzo del destinatario sulla fattura (oltre all'indirizzo di "
822
- #~ "fatturazione) se è differente dall'indirizzo di fatturazione"
823
-
824
- #~ msgid ""
825
- #~ "This is the number that will be used on the next invoice that is created. "
826
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
827
- #~ "first invoice that is created and increases for every new invoice. Note "
828
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
829
- #~ "number, this could create double invoice numbers!"
830
- #~ msgstr ""
831
- #~ "Questo è il numero che verrà utilizzato nella prossima fattura creata. La "
832
- #~ "numerazione di default inizia dal numero d'ordine WooCommerce della prima "
833
- #~ "fattura creata e si incrementa con ogni nuova fattura. Attenzione: se qui "
834
- #~ "viene impostato un numero più basso del numero di fattura più elevato, "
835
- #~ "questo può portare alla creazione di numeri di fattura doppi!"
836
-
837
- #~ msgid "Invoice number format"
838
- #~ msgstr "Formato numero fattura"
839
-
840
- #~ msgid ""
841
- #~ "Disable automatic creation/attachment of invoices when only free products "
842
- #~ "are ordered"
843
- #~ msgstr ""
844
- #~ "Disabilita la creazione automatica della fattura quando nell'ordine sono "
845
- #~ "presenti soltanto prodotti gratuiti"
846
-
847
- #~ msgid ""
848
- #~ "Display billing address on packing slip (in addition to the default "
849
- #~ "shipping address) if different from shipping address"
850
- #~ msgstr ""
851
- #~ "Mostra indirizzo di fatturazione sul DDT (oltre all'indirizzo di "
852
- #~ "spedizione) se è differente dall'indirizzo di spedizione"
853
-
854
- #~ msgid "Template"
855
- #~ msgstr "Modello"
856
-
857
- #~ msgid "Admin New Order email"
858
- #~ msgstr "Email Amministrazione Nuovo Ordine"
859
-
860
- #~ msgid "Customer Processing Order email"
861
- #~ msgstr "Email Cliente Ordine in Lavorazione"
862
-
863
- #~ msgid "Customer Completed Order email"
864
- #~ msgstr "Email Cliente Ordine Completato"
865
-
866
- #~ msgid "Customer Invoice email"
867
- #~ msgstr "Email Cliente Fattura"
868
-
869
- #~ msgid "Interface"
870
- #~ msgstr "Interfaccia"
871
-
872
- #~ msgid "PDF Template settings"
873
- #~ msgstr "Impostazioni modello PDF "
874
-
875
- #~ msgid "Display built-in sequential invoice number"
876
- #~ msgstr "Mostra numero fattura sequenziale generato automaticamente"
877
-
878
- #~ msgid ""
879
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
880
- #~ "respectively"
881
- #~ msgstr ""
882
- #~ "per utilizzare l'anno o il mese dell'ordine, inserisci rispettivamente "
883
- #~ "[order_year] o [order_month]"
884
-
885
- #~ msgid "Use old tmp folder"
886
- #~ msgstr "Usa la vecchia cartella 'tmp'"
887
-
888
- #~ msgid ""
889
- #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
890
- #~ "plugin folder. This setting is only intended for backwards compatibility, "
891
- #~ "not recommended on new installs!"
892
- #~ msgstr ""
893
- #~ "Dalla versione 1.5 di PDF Invoices, i file temporanei sono registrati "
894
- #~ "nella cartella del plugin. Questa impostazione è intesa solo per "
895
- #~ "compatibilità con le versioni precedenti. È sconsigliata per le nuove "
896
- #~ "installazioni."
897
-
898
- #~ msgid "PDF Packing Slips"
899
- #~ msgstr "PDF Documenti di Trasporto"
900
-
901
- #~ msgid "PDF Invoice"
902
- #~ msgstr "Fattura PDF"
903
-
904
- #~ msgid "PDF Packing Slip"
905
- #~ msgstr "PDF Documento di Trasporto"
906
-
907
- #~ msgid "PDF Invoice Number (unformatted!)"
908
- #~ msgstr "Numero Fattura PDF (non formattato)"
909
-
910
- #~ msgid "More advanced templates"
911
- #~ msgstr "Molti altri modelli avanzati"
912
-
913
- #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
914
- #~ msgstr ""
915
- #~ "Fatture e Documenti di trasporto eleganti e moderni con le miniature dei "
916
- #~ "prodotti!"
917
-
918
- #~ msgid "More tax details on the invoices!"
919
- #~ msgstr "Più dettagli sulle imposte nelle fatture!"
920
-
921
- #~ msgid "Number to display on invoice"
922
- #~ msgstr "Numero da visualizzare sulla fattura"
923
-
924
- #~ msgid ""
925
- #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
926
- #~ "the WooCommerce order number"
927
- #~ msgstr ""
928
- #~ "Se stai utilizzando il plugin WooCommerce Sequential Order Numbers, "
929
- #~ "seleziona il numero ordine WooCommerce"
930
-
931
- #~ msgid "Order date"
932
- #~ msgstr "Data Ordine"
933
-
934
- #~ msgid "PDF invoice"
935
- #~ msgstr "PDF Fattura"
936
-
937
- #~ msgid "..."
938
- #~ msgstr "..."
939
-
940
- #~ msgid "Email invoice (attach to order confirmation or invoice email)"
941
- #~ msgstr "Email Fattura (allegare alla conferma dell'ordine o e-mail fattura)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:38+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:38+0200\n"
6
+ "Last-Translator: Astrid Virili <avirili@gmail.com>\n"
7
+ "Language-Team: WP Overnight <support@wpovernight.com>\n"
8
+ "Language: it\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "Fattura Numero"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "Crea PDF"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "Fattura"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "Data Fattura:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr ""
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr ""
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "Scarica fattura (PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr ""
68
+ "Non disponi di autorizzazioni sufficienti per accedere a questa pagina."
69
+
70
+ #: includes/class-wcpdf-main.php:141
71
+ msgid "Some of the export parameters are missing."
72
+ msgstr "Alcuni parametri di esportazione sono mancanti."
73
+
74
+ #: includes/class-wcpdf-settings-callbacks.php:27
75
+ msgid ""
76
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
77
+ "Do not use them on a live website!"
78
+ msgstr ""
79
+ "<b>Attenzione!</b> Le impostazioni di seguito sono intese per il debug o per "
80
+ "l'ambiente di sviluppo. NON vanno usate sul sito di produzione!"
81
+
82
+ #: includes/class-wcpdf-settings-callbacks.php:36
83
+ msgid ""
84
+ "These are used for the (optional) footer columns in the <em>Modern "
85
+ "(Premium)</em> template, but can also be used for other elements in your "
86
+ "custom template"
87
+ msgstr ""
88
+ "Questi sono utilizzati per le colonne a piè di pagina (opzionali) nel "
89
+ "template <em>Modern (Premium)</ em> di modello, ma possono essere utilizzati "
90
+ "anche per altri elementi nel vostro modello personalizzato"
91
+
92
+ #: includes/class-wcpdf-settings-callbacks.php:301
93
+ msgid "Image resolution"
94
+ msgstr "Risoluzione immagine"
95
+
96
+ #: includes/class-wcpdf-settings-callbacks.php:325
97
+ msgid "Save"
98
+ msgstr ""
99
+
100
+ #: includes/class-wcpdf-settings-debug.php:34
101
+ msgid "Debug settings"
102
+ msgstr "Impostazioni di debug"
103
+
104
+ #: includes/class-wcpdf-settings-debug.php:40
105
+ msgid "Legacy mode"
106
+ msgstr ""
107
+
108
+ #: includes/class-wcpdf-settings-debug.php:46
109
+ msgid ""
110
+ "Legacy mode ensures compatibility with templates and filters from previous "
111
+ "versions."
112
+ msgstr ""
113
+
114
+ #: includes/class-wcpdf-settings-debug.php:52
115
+ msgid "Enable debug output"
116
+ msgstr "Abilita il debug"
117
+
118
+ #: includes/class-wcpdf-settings-debug.php:58
119
+ msgid ""
120
+ "Enable this option to output plugin errors if you're getting a blank page or "
121
+ "other PDF generation issues"
122
+ msgstr ""
123
+ "Abilita questa opzione per mostrare gli errori del plugin. È utile quando il "
124
+ "PDF della fattura è una pagina vuota."
125
+
126
+ #: includes/class-wcpdf-settings-debug.php:64
127
+ msgid "Output to HTML"
128
+ msgstr "In formato HTML"
129
+
130
+ #: includes/class-wcpdf-settings-debug.php:70
131
+ msgid ""
132
+ "Send the template output as HTML to the browser instead of creating a PDF."
133
+ msgstr "Mostra il modello "
134
+
135
+ #: includes/class-wcpdf-settings-documents.php:29
136
+ #: includes/class-wcpdf-settings.php:84
137
+ msgid "Documents"
138
+ msgstr ""
139
+
140
+ #: includes/class-wcpdf-settings-documents.php:45
141
+ msgid ""
142
+ "All available documents are listed below. Click on a document to configure "
143
+ "it."
144
+ msgstr ""
145
+
146
+ #: includes/class-wcpdf-settings-general.php:37
147
+ msgid "General settings"
148
+ msgstr "Impostazioni generali"
149
+
150
+ #: includes/class-wcpdf-settings-general.php:43
151
+ msgid "How do you want to view the PDF?"
152
+ msgstr "Come desideri visualizzare il file PDF?"
153
+
154
+ #: includes/class-wcpdf-settings-general.php:50
155
+ msgid "Download the PDF"
156
+ msgstr "Scarica il PDF"
157
+
158
+ #: includes/class-wcpdf-settings-general.php:51
159
+ msgid "Open the PDF in a new browser tab/window"
160
+ msgstr "Apri il PDF in una nuova scheda/finestra del browser"
161
+
162
+ #: includes/class-wcpdf-settings-general.php:58
163
+ msgid "Choose a template"
164
+ msgstr "Scegli un modello"
165
+
166
+ #: includes/class-wcpdf-settings-general.php:65
167
+ #, php-format
168
+ msgid ""
169
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
170
+ "your (child) theme in <code>%s</code> to customize them"
171
+ msgstr ""
172
+ "Vuoi usare il tuo template? Copia tutti i file della cartella <code>%s</"
173
+ "code> nel tuo tema (o child theme) nella cartella <code>%s</code> e "
174
+ "personalizzali"
175
+
176
+ #: includes/class-wcpdf-settings-general.php:71
177
+ msgid "Paper size"
178
+ msgstr "Formato carta"
179
+
180
+ #: includes/class-wcpdf-settings-general.php:78
181
+ msgid "A4"
182
+ msgstr "A4"
183
+
184
+ #: includes/class-wcpdf-settings-general.php:79
185
+ msgid "Letter"
186
+ msgstr "Lettera"
187
+
188
+ #: includes/class-wcpdf-settings-general.php:86
189
+ msgid "Extended currency symbol support"
190
+ msgstr ""
191
+
192
+ #: includes/class-wcpdf-settings-general.php:92
193
+ msgid "Enable this if your currency symbol is not displaying properly"
194
+ msgstr ""
195
+
196
+ #: includes/class-wcpdf-settings-general.php:98
197
+ msgid "Shop header/logo"
198
+ msgstr "Intestazione/logo Negozio"
199
+
200
+ #: includes/class-wcpdf-settings-general.php:104
201
+ msgid "Select or upload your invoice header/logo"
202
+ msgstr "Seleziona o carica l'intestazione/logo della fattura"
203
+
204
+ #: includes/class-wcpdf-settings-general.php:105
205
+ msgid "Set image"
206
+ msgstr "Imposta immagine "
207
+
208
+ #: includes/class-wcpdf-settings-general.php:106
209
+ msgid "Remove image"
210
+ msgstr "Rimuovi immagine"
211
+
212
+ #: includes/class-wcpdf-settings-general.php:113
213
+ msgid "Shop Name"
214
+ msgstr "Nome negozio"
215
+
216
+ #: includes/class-wcpdf-settings-general.php:126
217
+ msgid "Shop Address"
218
+ msgstr "Indirizzo negozio"
219
+
220
+ #: includes/class-wcpdf-settings-general.php:141
221
+ msgid "Footer: terms & conditions, policies, etc."
222
+ msgstr "Piè di pagina: termini e condizioni, politiche, ecc"
223
+
224
+ #: includes/class-wcpdf-settings-general.php:156
225
+ msgid "Extra template fields"
226
+ msgstr "Campi modello Extra"
227
+
228
+ #: includes/class-wcpdf-settings-general.php:162
229
+ msgid "Extra field 1"
230
+ msgstr "Campo Extra 1"
231
+
232
+ #: includes/class-wcpdf-settings-general.php:170
233
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
234
+ msgstr "Questa è la colonna 1 del footer nel modello <i>Modern (Premium)</ i>"
235
+
236
+ #: includes/class-wcpdf-settings-general.php:177
237
+ msgid "Extra field 2"
238
+ msgstr "Campo Extra 2"
239
+
240
+ #: includes/class-wcpdf-settings-general.php:185
241
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
242
+ msgstr "Questa è la colonna 2 del footer nel modello <i>Modern (Premium)</ i>"
243
+
244
+ #: includes/class-wcpdf-settings-general.php:192
245
+ msgid "Extra field 3"
246
+ msgstr "Campo Extra 3"
247
+
248
+ #: includes/class-wcpdf-settings-general.php:200
249
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
250
+ msgstr "Questa è la colonna 3 del footer nel modello <i>Modern (Premium)</ i>"
251
+
252
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
253
+ msgid "PDF Invoices"
254
+ msgstr "Fatture PDF"
255
+
256
+ #: includes/class-wcpdf-settings.php:58
257
+ msgid "Settings"
258
+ msgstr "Impostazioni"
259
+
260
+ #: includes/class-wcpdf-settings.php:71
261
+ msgid "Documentation"
262
+ msgstr ""
263
+
264
+ #: includes/class-wcpdf-settings.php:72
265
+ msgid "Support Forum"
266
+ msgstr ""
267
+
268
+ #: includes/class-wcpdf-settings.php:83
269
+ msgid "General"
270
+ msgstr "Generale"
271
+
272
+ #: includes/class-wcpdf-settings.php:89
273
+ msgid "Status"
274
+ msgstr "Status"
275
+
276
+ #: includes/compatibility/class-wc-core-compatibility.php:222
277
+ msgid "WooCommerce"
278
+ msgstr ""
279
+
280
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
281
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
282
+ msgid "N/A"
283
+ msgstr "N/A"
284
+
285
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
286
+ msgid "Payment method"
287
+ msgstr "Metodo di pagamento"
288
+
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
290
+ msgid "Shipping method"
291
+ msgstr "Metodo di spedizione"
292
+
293
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
294
+ #, php-format
295
+ msgid "(includes %s)"
296
+ msgstr ""
297
+
298
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
299
+ #, php-format
300
+ msgid "(Includes %s)"
301
+ msgstr ""
302
+
303
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
304
+ msgid "Subtotal"
305
+ msgstr "Totale parziale"
306
+
307
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
308
+ msgid "Shipping"
309
+ msgstr "Spedizione"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
312
+ msgid "Discount"
313
+ msgstr "Sconto"
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
316
+ msgid "VAT"
317
+ msgstr "IVA"
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
320
+ msgid "Tax rate"
321
+ msgstr "IVA"
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
324
+ msgid "Total ex. VAT"
325
+ msgstr "Totale (IVA esclusa)"
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
328
+ msgid "Total"
329
+ msgstr "Totale"
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document.php:674
332
+ msgid "Admin email"
333
+ msgstr ""
334
+
335
+ #: includes/documents/abstract-wcpdf-order-document.php:677
336
+ msgid "Manual email"
337
+ msgstr ""
338
+
339
+ #: includes/documents/class-wcpdf-invoice.php:85
340
+ msgid "invoice"
341
+ msgid_plural "invoices"
342
+ msgstr[0] "fattura"
343
+ msgstr[1] "fatture"
344
+
345
+ #: includes/documents/class-wcpdf-invoice.php:130
346
+ #: includes/documents/class-wcpdf-packing-slip.php:94
347
+ msgid "Enable"
348
+ msgstr ""
349
+
350
+ #: includes/documents/class-wcpdf-invoice.php:141
351
+ msgid "Attach to:"
352
+ msgstr ""
353
+
354
+ #: includes/documents/class-wcpdf-invoice.php:148
355
+ #, php-format
356
+ msgid ""
357
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
358
+ "permissions for this folder! Without having write access to this folder, the "
359
+ "plugin will not be able to email invoices."
360
+ msgstr ""
361
+ "Sembra che la cartella temp (<code>%s</code>) non sia scrivibile, verifica "
362
+ "le autorizzazioni per questa cartella! Se il plugin non ha accesso in "
363
+ "scrittura a questa cartella, non sarà in grado di inviare le fatture via "
364
+ "email."
365
+
366
+ #: includes/documents/class-wcpdf-invoice.php:154
367
+ msgid "Display shipping address"
368
+ msgstr "Mostra l'indirizzo del destinatario"
369
+
370
+ #: includes/documents/class-wcpdf-invoice.php:160
371
+ msgid ""
372
+ "Display shipping address (in addition to the default billing address) if "
373
+ "different from billing address"
374
+ msgstr ""
375
+
376
+ #: includes/documents/class-wcpdf-invoice.php:166
377
+ #: includes/documents/class-wcpdf-packing-slip.php:117
378
+ msgid "Display email address"
379
+ msgstr "Mostra l'indirizzo email"
380
+
381
+ #: includes/documents/class-wcpdf-invoice.php:177
382
+ #: includes/documents/class-wcpdf-packing-slip.php:128
383
+ msgid "Display phone number"
384
+ msgstr "Mostra il numero di telefono"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:188
387
+ msgid "Display invoice date"
388
+ msgstr "Mostra Data Fattura"
389
+
390
+ #: includes/documents/class-wcpdf-invoice.php:200
391
+ msgid "Display invoice number"
392
+ msgstr ""
393
+
394
+ #: includes/documents/class-wcpdf-invoice.php:212
395
+ msgid "Next invoice number (without prefix/suffix etc.)"
396
+ msgstr "Numero della prossima fattura (senza prefisso, suffisso, ecc.)"
397
+
398
+ #: includes/documents/class-wcpdf-invoice.php:218
399
+ msgid ""
400
+ "This is the number that will be used for the next document. By default, "
401
+ "numbering starts from 1 and increases for every new document. Note that if "
402
+ "you override this and set it lower than the current/highest number, this "
403
+ "could create duplicate numbers!"
404
+ msgstr ""
405
+
406
+ #: includes/documents/class-wcpdf-invoice.php:224
407
+ msgid "Number format"
408
+ msgstr ""
409
+
410
+ #: includes/documents/class-wcpdf-invoice.php:232
411
+ msgid "Prefix"
412
+ msgstr "Prefisso"
413
+
414
+ #: includes/documents/class-wcpdf-invoice.php:234
415
+ msgid ""
416
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
417
+ "respectively"
418
+ msgstr ""
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:237
421
+ msgid "Suffix"
422
+ msgstr "Suffisso"
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:242
425
+ msgid "Padding"
426
+ msgstr "Numero Cifre"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:245
429
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
430
+ msgstr ""
431
+ "inserisci qui il numero di cifre - scrivi \"6\" per visualizzare 42 come "
432
+ "000042"
433
+
434
+ #: includes/documents/class-wcpdf-invoice.php:248
435
+ msgid ""
436
+ "note: if you have already created a custom invoice number format with a "
437
+ "filter, the above settings will be ignored"
438
+ msgstr ""
439
+ "nota: se hai già creato un numero di fattura personalizzato con un filtro, "
440
+ "queste impostazioni verranno ignorate."
441
+
442
+ #: includes/documents/class-wcpdf-invoice.php:254
443
+ msgid "Reset invoice number yearly"
444
+ msgstr ""
445
+
446
+ #: includes/documents/class-wcpdf-invoice.php:265
447
+ msgid "Allow My Account invoice download"
448
+ msgstr "Abilita il download della fattura dalla pagina My Account"
449
+
450
+ #: includes/documents/class-wcpdf-invoice.php:272
451
+ msgid "Only when an invoice is already created/emailed"
452
+ msgstr "Solo quando una fattura è già stata generata o spedita per email"
453
+
454
+ #: includes/documents/class-wcpdf-invoice.php:273
455
+ msgid "Only for specific order statuses (define below)"
456
+ msgstr "Solo per specifici status dell'ordine (definiti di seguito)"
457
+
458
+ #: includes/documents/class-wcpdf-invoice.php:274
459
+ msgid "Always"
460
+ msgstr "Sempre"
461
+
462
+ #: includes/documents/class-wcpdf-invoice.php:275
463
+ msgid "Never"
464
+ msgstr ""
465
+
466
+ #: includes/documents/class-wcpdf-invoice.php:290
467
+ msgid "Enable invoice number column in the orders list"
468
+ msgstr "Abilita la colonna del numero fattura nella lista ordini"
469
+
470
+ #: includes/documents/class-wcpdf-invoice.php:301
471
+ msgid "Disable for free products"
472
+ msgstr "Disabilita per i prodotti gratuiti"
473
+
474
+ #: includes/documents/class-wcpdf-invoice.php:307
475
+ msgid ""
476
+ "Disable automatic creation/attachment when only free products are ordered"
477
+ msgstr ""
478
+
479
+ #: includes/documents/class-wcpdf-invoice.php:321
480
+ msgid "Invoice numbers are created by a third-party extension."
481
+ msgstr ""
482
+
483
+ #: includes/documents/class-wcpdf-invoice.php:323
484
+ #, php-format
485
+ msgid "Configure it <a href=\"%s\">here</a>."
486
+ msgstr ""
487
+
488
+ #: includes/documents/class-wcpdf-packing-slip.php:32
489
+ #: includes/documents/class-wcpdf-packing-slip.php:41
490
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
491
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
492
+ msgid "Packing Slip"
493
+ msgstr "Documento di Trasporto"
494
+
495
+ #: includes/documents/class-wcpdf-packing-slip.php:53
496
+ msgid "packing-slip"
497
+ msgid_plural "packing-slips"
498
+ msgstr[0] "DDT"
499
+ msgstr[1] "DDT"
500
+
501
+ #: includes/documents/class-wcpdf-packing-slip.php:105
502
+ msgid "Display billing address"
503
+ msgstr "Mostra indirizzo di fatturazione"
504
+
505
+ #: includes/documents/class-wcpdf-packing-slip.php:111
506
+ msgid ""
507
+ "Display billing address (in addition to the default shipping address) if "
508
+ "different from shipping address"
509
+ msgstr ""
510
+
511
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
512
+ msgid "Legacy Document"
513
+ msgstr ""
514
+
515
+ #: includes/views/wcpdf-extensions.php:15
516
+ msgid "Check out these premium extensions!"
517
+ msgstr "Prova queste estensioni Premium"
518
+
519
+ #: includes/views/wcpdf-extensions.php:16
520
+ msgid "click items to read more"
521
+ msgstr "clicca sugli elementi per saperne di più"
522
+
523
+ #: includes/views/wcpdf-extensions.php:21
524
+ msgid ""
525
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
526
+ "system"
527
+ msgstr ""
528
+
529
+ #: includes/views/wcpdf-extensions.php:23
530
+ msgid ""
531
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
532
+ "premium extensions:"
533
+ msgstr ""
534
+
535
+ #: includes/views/wcpdf-extensions.php:24
536
+ msgid "Professional features:"
537
+ msgstr ""
538
+
539
+ #: includes/views/wcpdf-extensions.php:26
540
+ #: includes/views/wcpdf-extensions.php:56
541
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
542
+ msgstr ""
543
+ "Stampa/scarica/invia per email <b>Note di credito p Fatture pro-forma in "
544
+ "PDF</b>"
545
+
546
+ #: includes/views/wcpdf-extensions.php:27
547
+ #: includes/views/wcpdf-extensions.php:57
548
+ msgid ""
549
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
550
+ "packing slips, for example to a drop-shipper or a supplier."
551
+ msgstr ""
552
+ "Invia una <b>email di notifica</> separata con (o senza) Fattura o DDT in "
553
+ "PDF, per esempio a uno spedizioniere o un fornitore."
554
+
555
+ #: includes/views/wcpdf-extensions.php:28
556
+ #: includes/views/wcpdf-extensions.php:58
557
+ msgid ""
558
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
559
+ "document) to the WooCommerce emails of your choice."
560
+ msgstr ""
561
+ "Allega <b>fino a 3 file</b> a tua scelta (per esempio il documento dell "
562
+ "Condizioni Generali) alle email di WooCommerce."
563
+
564
+ #: includes/views/wcpdf-extensions.php:29
565
+ #: includes/views/wcpdf-extensions.php:59
566
+ msgid ""
567
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
568
+ "and credit notes or utilize the main invoice numbering system"
569
+ msgstr ""
570
+ "Usa un <b>sistema di numerazione separato</b> e/o formato per le fatture pro-"
571
+ "forma e le note di credito, oppure usa il sistema di numerazione principale."
572
+
573
+ #: includes/views/wcpdf-extensions.php:30
574
+ #: includes/views/wcpdf-extensions.php:60
575
+ msgid ""
576
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
577
+ "additional custom fields, font sizes etc. without the need to create a "
578
+ "custom template."
579
+ msgstr ""
580
+ "<b>Personalizza l'indirizzo di fatturazione e di spedizione</b> per "
581
+ "includere campi aggiuntivi, dimensione del font etc. senza dover create un "
582
+ "template personalizzato."
583
+
584
+ #: includes/views/wcpdf-extensions.php:31
585
+ #: includes/views/wcpdf-extensions.php:61
586
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
587
+ msgstr "Usa il plugin con <b>WPML</b>"
588
+
589
+ #: includes/views/wcpdf-extensions.php:33
590
+ #: includes/views/wcpdf-extensions.php:131
591
+ msgid "Advanced, customizable templates"
592
+ msgstr ""
593
+
594
+ #: includes/views/wcpdf-extensions.php:35
595
+ #: includes/views/wcpdf-extensions.php:134
596
+ msgid ""
597
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
598
+ "your needs with a drag & drop customizer"
599
+ msgstr ""
600
+
601
+ #: includes/views/wcpdf-extensions.php:36
602
+ #: includes/views/wcpdf-extensions.php:135
603
+ msgid "Two extra stylish premade templates (Modern & Business)"
604
+ msgstr ""
605
+
606
+ #: includes/views/wcpdf-extensions.php:38
607
+ msgid "Upload automatically to dropbox"
608
+ msgstr ""
609
+
610
+ #: includes/views/wcpdf-extensions.php:40
611
+ #: includes/views/wcpdf-extensions.php:97
612
+ msgid ""
613
+ "This extension conveniently uploads all the invoices (and other pdf "
614
+ "documents from the professional extension) that are emailed to your "
615
+ "customers to Dropbox. The best way to keep your invoice administration up to "
616
+ "date!"
617
+ msgstr ""
618
+ "Questa estensione carica facilmente su Dropbox tutte le fatture (e gli altri "
619
+ "documenti pdf della estensione professional) che vengono inviati via email "
620
+ "ai vostri clienti. Il modo migliore per tenere aggiornata la gestione delle "
621
+ "fatture!"
622
+
623
+ #: includes/views/wcpdf-extensions.php:43
624
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
625
+ msgstr ""
626
+
627
+ #: includes/views/wcpdf-extensions.php:52
628
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
629
+ msgstr "Go Pro: Fatture pro-forma, note di credito (= rimborsi) e molto altro!"
630
+
631
+ #: includes/views/wcpdf-extensions.php:54
632
+ msgid ""
633
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
634
+ "features:"
635
+ msgstr "Aggiungi funzionalità a WooCommerce PDF Invoices & Packing Slips:"
636
+
637
+ #: includes/views/wcpdf-extensions.php:63
638
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
639
+ msgstr "Acquista WooCommerce PDF Invoices & Packing Slips Professional!"
640
+
641
+ #: includes/views/wcpdf-extensions.php:71
642
+ msgid "Automatically send payment reminders to your customers"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:73
646
+ msgid "WooCommerce Smart Reminder emails"
647
+ msgstr ""
648
+
649
+ #: includes/views/wcpdf-extensions.php:75
650
+ msgid "<b>Completely automatic</b> scheduled emails"
651
+ msgstr ""
652
+
653
+ #: includes/views/wcpdf-extensions.php:76
654
+ msgid ""
655
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
656
+ "from the order (name, order total, etc)"
657
+ msgstr ""
658
+
659
+ #: includes/views/wcpdf-extensions.php:77
660
+ msgid ""
661
+ "Configure the exact requirements for sending an email (time after order, "
662
+ "order status, payment method)"
663
+ msgstr ""
664
+
665
+ #: includes/views/wcpdf-extensions.php:78
666
+ msgid ""
667
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
668
+ "order language."
669
+ msgstr ""
670
+
671
+ #: includes/views/wcpdf-extensions.php:79
672
+ msgid ""
673
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
674
+ "reminders, repeat purchases)"
675
+ msgstr ""
676
+
677
+ #: includes/views/wcpdf-extensions.php:80
678
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
679
+ msgstr ""
680
+
681
+ #: includes/views/wcpdf-extensions.php:82
682
+ msgid "Get WooCommerce Smart Reminder Emails"
683
+ msgstr ""
684
+
685
+ #: includes/views/wcpdf-extensions.php:91
686
+ msgid "Upload all invoices automatically to your dropbox"
687
+ msgstr "Carica tutte le fatture in automatico nel tuo Dropbox"
688
+
689
+ #: includes/views/wcpdf-extensions.php:98
690
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
691
+ msgstr "Acquista WooCommerce PDF Invoices & Packing Slips to dropbox"
692
+
693
+ #: includes/views/wcpdf-extensions.php:110
694
+ msgid ""
695
+ "Automatically send new orders or packing slips to your printer, as soon as "
696
+ "the customer orders!"
697
+ msgstr ""
698
+ "Invia automaticamente i nuovi ordini o documenti di trasporto alla tua "
699
+ "stampante, non appena il cliente ordina!"
700
+
701
+ #: includes/views/wcpdf-extensions.php:116
702
+ msgid ""
703
+ "Check out the WooCommerce Automatic Order Printing extension from our "
704
+ "partners at Simba Hosting"
705
+ msgstr ""
706
+ "Leggi di più sull'estensione WooCommerce Automatic Order Printing sul sito "
707
+ "del nostro partner Simba Hosting"
708
+
709
+ #: includes/views/wcpdf-extensions.php:117
710
+ msgid "WooCommerce Automatic Order Printing"
711
+ msgstr ""
712
+
713
+ #: includes/views/wcpdf-extensions.php:136
714
+ #, php-format
715
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
716
+ msgstr "Visualizza i modelli Premium PDF Invoice & Packing Slips su %s."
717
+
718
+ #: includes/views/wcpdf-extensions.php:137
719
+ #, php-format
720
+ msgid "For custom templates, contact us at %s."
721
+ msgstr "Contattaci via %s per modelli personalizzati."
722
+
723
+ #: includes/views/wcpdf-extensions.php:146
724
+ msgid "Hide this message"
725
+ msgstr ""
726
+
727
+ #: includes/views/wcpdf-settings-page.php:8
728
+ msgid "WooCommerce PDF Invoices"
729
+ msgstr "WooCommerce Fatture PDF"
730
+
731
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
732
+ msgid "Billing Address:"
733
+ msgstr "Indirizzo di fatturazione:"
734
+
735
+ #: templates/Simple/invoice.php:41
736
+ msgid "Ship To:"
737
+ msgstr "Spedire a:"
738
+
739
+ #: templates/Simple/invoice.php:50
740
+ msgid "Invoice Number:"
741
+ msgstr "Fattura N.:"
742
+
743
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
744
+ msgid "Order Number:"
745
+ msgstr "Ordine N.:"
746
+
747
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
748
+ msgid "Order Date:"
749
+ msgstr "Data Ordine:"
750
+
751
+ #: templates/Simple/invoice.php:69
752
+ msgid "Payment Method:"
753
+ msgstr "Metodo di pagamento:"
754
+
755
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
756
+ msgid "Product"
757
+ msgstr "Prodotto"
758
+
759
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
760
+ msgid "Quantity"
761
+ msgstr "Quantità"
762
+
763
+ #: templates/Simple/invoice.php:85
764
+ msgid "Price"
765
+ msgstr "Prezzo"
766
+
767
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
768
+ msgid "Description"
769
+ msgstr "Descrizione"
770
+
771
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
772
+ msgid "SKU"
773
+ msgstr "Codice prod."
774
+
775
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
776
+ msgid "SKU:"
777
+ msgstr "Codice prod.:"
778
+
779
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
780
+ msgid "Weight:"
781
+ msgstr "Peso:"
782
+
783
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
784
+ msgid "Customer Notes"
785
+ msgstr "Note del Cliente"
786
+
787
+ #: templates/Simple/packing-slip.php:30
788
+ msgid "Shipping Address:"
789
+ msgstr "Indirizzo di spedizione:"
790
+
791
+ #: templates/Simple/packing-slip.php:57
792
+ msgid "Shipping Method:"
793
+ msgstr "Metodo di spedizione:"
794
+
795
+ #: woocommerce-pdf-invoices-packingslips.php:231
796
+ #, php-format
797
+ msgid ""
798
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
799
+ "installed & activated!"
800
+ msgstr ""
801
+ "WooCommerce PDF Invoices & Packing Slips richiede %sWooCommerce%s per essere "
802
+ "installato e attivato!"
803
+
804
+ #: woocommerce-pdf-invoices-packingslips.php:243
805
+ msgid ""
806
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
807
+ "higher recommended)."
808
+ msgstr ""
809
+
810
+ #: woocommerce-pdf-invoices-packingslips.php:244
811
+ msgid "How to update your PHP version"
812
+ msgstr ""
813
+
814
+ #~ msgid "Attach invoice to:"
815
+ #~ msgstr "Allega la fattura a:"
816
+
817
+ #~ msgid ""
818
+ #~ "Display shipping address on invoice (in addition to the default billing "
819
+ #~ "address) if different from billing address"
820
+ #~ msgstr ""
821
+ #~ "Mostra l'indirizzo del destinatario sulla fattura (oltre all'indirizzo di "
822
+ #~ "fatturazione) se è differente dall'indirizzo di fatturazione"
823
+
824
+ #~ msgid ""
825
+ #~ "This is the number that will be used on the next invoice that is created. "
826
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
827
+ #~ "first invoice that is created and increases for every new invoice. Note "
828
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
829
+ #~ "number, this could create double invoice numbers!"
830
+ #~ msgstr ""
831
+ #~ "Questo è il numero che verrà utilizzato nella prossima fattura creata. La "
832
+ #~ "numerazione di default inizia dal numero d'ordine WooCommerce della prima "
833
+ #~ "fattura creata e si incrementa con ogni nuova fattura. Attenzione: se qui "
834
+ #~ "viene impostato un numero più basso del numero di fattura più elevato, "
835
+ #~ "questo può portare alla creazione di numeri di fattura doppi!"
836
+
837
+ #~ msgid "Invoice number format"
838
+ #~ msgstr "Formato numero fattura"
839
+
840
+ #~ msgid ""
841
+ #~ "Disable automatic creation/attachment of invoices when only free products "
842
+ #~ "are ordered"
843
+ #~ msgstr ""
844
+ #~ "Disabilita la creazione automatica della fattura quando nell'ordine sono "
845
+ #~ "presenti soltanto prodotti gratuiti"
846
+
847
+ #~ msgid ""
848
+ #~ "Display billing address on packing slip (in addition to the default "
849
+ #~ "shipping address) if different from shipping address"
850
+ #~ msgstr ""
851
+ #~ "Mostra indirizzo di fatturazione sul DDT (oltre all'indirizzo di "
852
+ #~ "spedizione) se è differente dall'indirizzo di spedizione"
853
+
854
+ #~ msgid "Template"
855
+ #~ msgstr "Modello"
856
+
857
+ #~ msgid "Admin New Order email"
858
+ #~ msgstr "Email Amministrazione Nuovo Ordine"
859
+
860
+ #~ msgid "Customer Processing Order email"
861
+ #~ msgstr "Email Cliente Ordine in Lavorazione"
862
+
863
+ #~ msgid "Customer Completed Order email"
864
+ #~ msgstr "Email Cliente Ordine Completato"
865
+
866
+ #~ msgid "Customer Invoice email"
867
+ #~ msgstr "Email Cliente Fattura"
868
+
869
+ #~ msgid "Interface"
870
+ #~ msgstr "Interfaccia"
871
+
872
+ #~ msgid "PDF Template settings"
873
+ #~ msgstr "Impostazioni modello PDF "
874
+
875
+ #~ msgid "Display built-in sequential invoice number"
876
+ #~ msgstr "Mostra numero fattura sequenziale generato automaticamente"
877
+
878
+ #~ msgid ""
879
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
880
+ #~ "respectively"
881
+ #~ msgstr ""
882
+ #~ "per utilizzare l'anno o il mese dell'ordine, inserisci rispettivamente "
883
+ #~ "[order_year] o [order_month]"
884
+
885
+ #~ msgid "Use old tmp folder"
886
+ #~ msgstr "Usa la vecchia cartella 'tmp'"
887
+
888
+ #~ msgid ""
889
+ #~ "Before version 1.5 of PDF Invoices, temporary files were stored in the "
890
+ #~ "plugin folder. This setting is only intended for backwards compatibility, "
891
+ #~ "not recommended on new installs!"
892
+ #~ msgstr ""
893
+ #~ "Dalla versione 1.5 di PDF Invoices, i file temporanei sono registrati "
894
+ #~ "nella cartella del plugin. Questa impostazione è intesa solo per "
895
+ #~ "compatibilità con le versioni precedenti. È sconsigliata per le nuove "
896
+ #~ "installazioni."
897
+
898
+ #~ msgid "PDF Packing Slips"
899
+ #~ msgstr "PDF Documenti di Trasporto"
900
+
901
+ #~ msgid "PDF Invoice"
902
+ #~ msgstr "Fattura PDF"
903
+
904
+ #~ msgid "PDF Packing Slip"
905
+ #~ msgstr "PDF Documento di Trasporto"
906
+
907
+ #~ msgid "PDF Invoice Number (unformatted!)"
908
+ #~ msgstr "Numero Fattura PDF (non formattato)"
909
+
910
+ #~ msgid "More advanced templates"
911
+ #~ msgstr "Molti altri modelli avanzati"
912
+
913
+ #~ msgid "Stylish modern invoices & packing slips with product thumbnails!"
914
+ #~ msgstr ""
915
+ #~ "Fatture e Documenti di trasporto eleganti e moderni con le miniature dei "
916
+ #~ "prodotti!"
917
+
918
+ #~ msgid "More tax details on the invoices!"
919
+ #~ msgstr "Più dettagli sulle imposte nelle fatture!"
920
+
921
+ #~ msgid "Number to display on invoice"
922
+ #~ msgstr "Numero da visualizzare sulla fattura"
923
+
924
+ #~ msgid ""
925
+ #~ "If you are using the WooCommerce Sequential Order Numbers plugin, select "
926
+ #~ "the WooCommerce order number"
927
+ #~ msgstr ""
928
+ #~ "Se stai utilizzando il plugin WooCommerce Sequential Order Numbers, "
929
+ #~ "seleziona il numero ordine WooCommerce"
930
+
931
+ #~ msgid "Order date"
932
+ #~ msgstr "Data Ordine"
933
+
934
+ #~ msgid "PDF invoice"
935
+ #~ msgstr "PDF Fattura"
936
+
937
+ #~ msgid "..."
938
+ #~ msgstr "..."
939
+
940
+ #~ msgid "Email invoice (attach to order confirmation or invoice email)"
941
+ #~ msgstr "Email Fattura (allegare alla conferma dell'ordine o e-mail fattura)"
languages/woocommerce-pdf-invoices-packing-slips-ja.po CHANGED
@@ -1,868 +1,868 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
- "POT-Creation-Date: 2017-06-09 16:38+0200\n"
5
- "PO-Revision-Date: 2017-06-09 16:38+0200\n"
6
- "Last-Translator: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
7
- "Language-Team: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
8
- "Language: ja\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.8.12\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
- msgid "Invoice Number"
21
- msgstr "請求書番号"
22
-
23
- #: includes/class-wcpdf-admin.php:105
24
- msgid "Create PDF"
25
- msgstr "PDF書類の作成"
26
-
27
- #: includes/class-wcpdf-admin.php:115
28
- msgid "PDF Invoice data"
29
- msgstr ""
30
-
31
- #: includes/class-wcpdf-admin.php:166
32
- #: includes/documents/class-wcpdf-invoice.php:32
33
- #: includes/documents/class-wcpdf-invoice.php:41
34
- #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
- #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
- msgid "Invoice"
37
- msgstr "請求書"
38
-
39
- #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
- #: templates/Simple/invoice.php:56
41
- msgid "Invoice Date:"
42
- msgstr "請求日:"
43
-
44
- #: includes/class-wcpdf-admin.php:189
45
- msgid "Set invoice number & date"
46
- msgstr ""
47
-
48
- #: includes/class-wcpdf-admin.php:196
49
- msgid "Invoice Number (unformatted!)"
50
- msgstr ""
51
-
52
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
- msgid "h"
54
- msgstr ""
55
-
56
- #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
- msgid "m"
58
- msgstr ""
59
-
60
- #: includes/class-wcpdf-frontend.php:55
61
- msgid "Download invoice (PDF)"
62
- msgstr "ダウンロード請求書(PDF)"
63
-
64
- #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
- #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "このページにアクセスするための十分な権限がありません。"
68
-
69
- #: includes/class-wcpdf-main.php:141
70
- msgid "Some of the export parameters are missing."
71
- msgstr ""
72
-
73
- #: includes/class-wcpdf-settings-callbacks.php:27
74
- msgid ""
75
- "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
- "Do not use them on a live website!"
77
- msgstr ""
78
-
79
- #: includes/class-wcpdf-settings-callbacks.php:36
80
- msgid ""
81
- "These are used for the (optional) footer columns in the <em>Modern "
82
- "(Premium)</em> template, but can also be used for other elements in your "
83
- "custom template"
84
- msgstr ""
85
- "これらは、フッター項目(オプション)の<em>Modern (Premium)</em>テンプレート "
86
- "で使いますが、カスタムテンプレート内の他の要素のために使用することができま"
87
- "す。"
88
-
89
- #: includes/class-wcpdf-settings-callbacks.php:301
90
- msgid "Image resolution"
91
- msgstr ""
92
-
93
- #: includes/class-wcpdf-settings-callbacks.php:325
94
- msgid "Save"
95
- msgstr ""
96
-
97
- #: includes/class-wcpdf-settings-debug.php:34
98
- msgid "Debug settings"
99
- msgstr ""
100
-
101
- #: includes/class-wcpdf-settings-debug.php:40
102
- msgid "Legacy mode"
103
- msgstr ""
104
-
105
- #: includes/class-wcpdf-settings-debug.php:46
106
- msgid ""
107
- "Legacy mode ensures compatibility with templates and filters from previous "
108
- "versions."
109
- msgstr ""
110
-
111
- #: includes/class-wcpdf-settings-debug.php:52
112
- msgid "Enable debug output"
113
- msgstr ""
114
-
115
- #: includes/class-wcpdf-settings-debug.php:58
116
- msgid ""
117
- "Enable this option to output plugin errors if you're getting a blank page or "
118
- "other PDF generation issues"
119
- msgstr ""
120
-
121
- #: includes/class-wcpdf-settings-debug.php:64
122
- msgid "Output to HTML"
123
- msgstr ""
124
-
125
- #: includes/class-wcpdf-settings-debug.php:70
126
- msgid ""
127
- "Send the template output as HTML to the browser instead of creating a PDF."
128
- msgstr ""
129
-
130
- #: includes/class-wcpdf-settings-documents.php:29
131
- #: includes/class-wcpdf-settings.php:84
132
- msgid "Documents"
133
- msgstr ""
134
-
135
- #: includes/class-wcpdf-settings-documents.php:45
136
- msgid ""
137
- "All available documents are listed below. Click on a document to configure "
138
- "it."
139
- msgstr ""
140
-
141
- #: includes/class-wcpdf-settings-general.php:37
142
- msgid "General settings"
143
- msgstr "一般設定"
144
-
145
- #: includes/class-wcpdf-settings-general.php:43
146
- msgid "How do you want to view the PDF?"
147
- msgstr "PDFファイルをどのようにして見ますか?"
148
-
149
- #: includes/class-wcpdf-settings-general.php:50
150
- msgid "Download the PDF"
151
- msgstr " PDFをダウンロード"
152
-
153
- #: includes/class-wcpdf-settings-general.php:51
154
- msgid "Open the PDF in a new browser tab/window"
155
- msgstr "ブラウザーの新しいタブかウインドウを開く"
156
-
157
- #: includes/class-wcpdf-settings-general.php:58
158
- msgid "Choose a template"
159
- msgstr "テンプレートを選ぶ"
160
-
161
- #: includes/class-wcpdf-settings-general.php:65
162
- #, php-format
163
- msgid ""
164
- "Want to use your own template? Copy all the files from <code>%s</code> to "
165
- "your (child) theme in <code>%s</code> to customize them"
166
- msgstr ""
167
-
168
- #: includes/class-wcpdf-settings-general.php:71
169
- msgid "Paper size"
170
- msgstr "印刷用紙サイズ"
171
-
172
- #: includes/class-wcpdf-settings-general.php:78
173
- msgid "A4"
174
- msgstr "A4"
175
-
176
- #: includes/class-wcpdf-settings-general.php:79
177
- msgid "Letter"
178
- msgstr "レターサイズ"
179
-
180
- #: includes/class-wcpdf-settings-general.php:86
181
- msgid "Extended currency symbol support"
182
- msgstr ""
183
-
184
- #: includes/class-wcpdf-settings-general.php:92
185
- msgid "Enable this if your currency symbol is not displaying properly"
186
- msgstr ""
187
-
188
- #: includes/class-wcpdf-settings-general.php:98
189
- msgid "Shop header/logo"
190
- msgstr "店舗ヘッダー/ロゴ"
191
-
192
- #: includes/class-wcpdf-settings-general.php:104
193
- msgid "Select or upload your invoice header/logo"
194
- msgstr ""
195
- "請求書のヘッダー/ロゴに使用するイメージを選ぶかアップロードしてください"
196
-
197
- #: includes/class-wcpdf-settings-general.php:105
198
- msgid "Set image"
199
- msgstr "イメージ設定"
200
-
201
- #: includes/class-wcpdf-settings-general.php:106
202
- msgid "Remove image"
203
- msgstr "イメージ削除"
204
-
205
- #: includes/class-wcpdf-settings-general.php:113
206
- msgid "Shop Name"
207
- msgstr "店舗名"
208
-
209
- #: includes/class-wcpdf-settings-general.php:126
210
- msgid "Shop Address"
211
- msgstr "店舗住所"
212
-
213
- #: includes/class-wcpdf-settings-general.php:141
214
- msgid "Footer: terms & conditions, policies, etc."
215
- msgstr "フッター : 規約、方針など"
216
-
217
- #: includes/class-wcpdf-settings-general.php:156
218
- msgid "Extra template fields"
219
- msgstr "追加項目"
220
-
221
- #: includes/class-wcpdf-settings-general.php:162
222
- msgid "Extra field 1"
223
- msgstr "追加項目1"
224
-
225
- #: includes/class-wcpdf-settings-general.php:170
226
- msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
227
- msgstr ""
228
- "これはフッターカラム1の<i>Modern (Premium)</i> テンプレートで使います。"
229
-
230
- #: includes/class-wcpdf-settings-general.php:177
231
- msgid "Extra field 2"
232
- msgstr "追加項目2"
233
-
234
- #: includes/class-wcpdf-settings-general.php:185
235
- msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
236
- msgstr ""
237
- "これはフッターカラム2の<i>Modern (Premium)</i> テンプレートで使います。"
238
-
239
- #: includes/class-wcpdf-settings-general.php:192
240
- msgid "Extra field 3"
241
- msgstr "追加項目3"
242
-
243
- #: includes/class-wcpdf-settings-general.php:200
244
- msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
245
- msgstr ""
246
- "これはフッターカラム3の<i>Modern (Premium)</i> テンプレートで使います。"
247
-
248
- #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
249
- msgid "PDF Invoices"
250
- msgstr "PDF請求書"
251
-
252
- #: includes/class-wcpdf-settings.php:58
253
- msgid "Settings"
254
- msgstr "設定"
255
-
256
- #: includes/class-wcpdf-settings.php:71
257
- msgid "Documentation"
258
- msgstr ""
259
-
260
- #: includes/class-wcpdf-settings.php:72
261
- msgid "Support Forum"
262
- msgstr ""
263
-
264
- #: includes/class-wcpdf-settings.php:83
265
- msgid "General"
266
- msgstr "一般設定"
267
-
268
- #: includes/class-wcpdf-settings.php:89
269
- msgid "Status"
270
- msgstr "状況"
271
-
272
- #: includes/compatibility/class-wc-core-compatibility.php:222
273
- msgid "WooCommerce"
274
- msgstr ""
275
-
276
- #: includes/documents/abstract-wcpdf-order-document-methods.php:113
277
- #: includes/documents/abstract-wcpdf-order-document-methods.php:176
278
- msgid "N/A"
279
- msgstr "N/A"
280
-
281
- #: includes/documents/abstract-wcpdf-order-document-methods.php:305
282
- msgid "Payment method"
283
- msgstr "支払い方法"
284
-
285
- #: includes/documents/abstract-wcpdf-order-document-methods.php:326
286
- msgid "Shipping method"
287
- msgstr "発送方法"
288
-
289
- #: includes/documents/abstract-wcpdf-order-document-methods.php:669
290
- #, php-format
291
- msgid "(includes %s)"
292
- msgstr ""
293
-
294
- #: includes/documents/abstract-wcpdf-order-document-methods.php:672
295
- #, php-format
296
- msgid "(Includes %s)"
297
- msgstr ""
298
-
299
- #: includes/documents/abstract-wcpdf-order-document-methods.php:702
300
- msgid "Subtotal"
301
- msgstr "小計"
302
-
303
- #: includes/documents/abstract-wcpdf-order-document-methods.php:727
304
- msgid "Shipping"
305
- msgstr "配送"
306
-
307
- #: includes/documents/abstract-wcpdf-order-document-methods.php:790
308
- msgid "Discount"
309
- msgstr "値引き"
310
-
311
- #: includes/documents/abstract-wcpdf-order-document-methods.php:831
312
- msgid "VAT"
313
- msgstr ""
314
-
315
- #: includes/documents/abstract-wcpdf-order-document-methods.php:832
316
- msgid "Tax rate"
317
- msgstr ""
318
-
319
- #: includes/documents/abstract-wcpdf-order-document-methods.php:876
320
- msgid "Total ex. VAT"
321
- msgstr ""
322
-
323
- #: includes/documents/abstract-wcpdf-order-document-methods.php:879
324
- msgid "Total"
325
- msgstr "合計"
326
-
327
- #: includes/documents/abstract-wcpdf-order-document.php:674
328
- msgid "Admin email"
329
- msgstr ""
330
-
331
- #: includes/documents/abstract-wcpdf-order-document.php:677
332
- msgid "Manual email"
333
- msgstr ""
334
-
335
- # This is a filename (prefix). do not use spaces or special characters!
336
- #: includes/documents/class-wcpdf-invoice.php:85
337
- msgid "invoice"
338
- msgid_plural "invoices"
339
- msgstr[0] "請求書"
340
- msgstr[1] "請求書"
341
-
342
- #: includes/documents/class-wcpdf-invoice.php:130
343
- #: includes/documents/class-wcpdf-packing-slip.php:94
344
- msgid "Enable"
345
- msgstr ""
346
-
347
- #: includes/documents/class-wcpdf-invoice.php:141
348
- msgid "Attach to:"
349
- msgstr ""
350
-
351
- #: includes/documents/class-wcpdf-invoice.php:148
352
- #, php-format
353
- msgid ""
354
- "It looks like the temp folder (<code>%s</code>) is not writable, check the "
355
- "permissions for this folder! Without having write access to this folder, the "
356
- "plugin will not be able to email invoices."
357
- msgstr ""
358
- " (<code>%s</code>) のフォルダが書き込み不可になっているようです。フォルダーの"
359
- "パーミッションを確認して下さい。このフォルダに書き込みが出来ないと、このプラ"
360
- "グインは請求書をメールで送ることが出来ません。"
361
-
362
- #: includes/documents/class-wcpdf-invoice.php:154
363
- msgid "Display shipping address"
364
- msgstr ""
365
-
366
- #: includes/documents/class-wcpdf-invoice.php:160
367
- msgid ""
368
- "Display shipping address (in addition to the default billing address) if "
369
- "different from billing address"
370
- msgstr ""
371
-
372
- #: includes/documents/class-wcpdf-invoice.php:166
373
- #: includes/documents/class-wcpdf-packing-slip.php:117
374
- msgid "Display email address"
375
- msgstr ""
376
-
377
- #: includes/documents/class-wcpdf-invoice.php:177
378
- #: includes/documents/class-wcpdf-packing-slip.php:128
379
- msgid "Display phone number"
380
- msgstr ""
381
-
382
- #: includes/documents/class-wcpdf-invoice.php:188
383
- msgid "Display invoice date"
384
- msgstr "請求日を表示"
385
-
386
- #: includes/documents/class-wcpdf-invoice.php:200
387
- msgid "Display invoice number"
388
- msgstr ""
389
-
390
- #: includes/documents/class-wcpdf-invoice.php:212
391
- msgid "Next invoice number (without prefix/suffix etc.)"
392
- msgstr "次の請求書番号(接頭辞や接尾辞など無し)"
393
-
394
- #: includes/documents/class-wcpdf-invoice.php:218
395
- msgid ""
396
- "This is the number that will be used for the next document. By default, "
397
- "numbering starts from 1 and increases for every new document. Note that if "
398
- "you override this and set it lower than the current/highest number, this "
399
- "could create duplicate numbers!"
400
- msgstr ""
401
-
402
- #: includes/documents/class-wcpdf-invoice.php:224
403
- msgid "Number format"
404
- msgstr ""
405
-
406
- #: includes/documents/class-wcpdf-invoice.php:232
407
- msgid "Prefix"
408
- msgstr "接頭辞"
409
-
410
- #: includes/documents/class-wcpdf-invoice.php:234
411
- msgid ""
412
- "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
413
- "respectively"
414
- msgstr ""
415
-
416
- #: includes/documents/class-wcpdf-invoice.php:237
417
- msgid "Suffix"
418
- msgstr "接尾辞"
419
-
420
- #: includes/documents/class-wcpdf-invoice.php:242
421
- msgid "Padding"
422
- msgstr "桁数"
423
-
424
- #: includes/documents/class-wcpdf-invoice.php:245
425
- msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
426
- msgstr "ここには桁数を入れてください。42の場合は000042と表示されます。"
427
-
428
- #: includes/documents/class-wcpdf-invoice.php:248
429
- msgid ""
430
- "note: if you have already created a custom invoice number format with a "
431
- "filter, the above settings will be ignored"
432
- msgstr ""
433
- "注意 : すでにフィルターを使用してカスタム請求書番号の書式を作成している場合、"
434
- "上記の設定は無視されます。"
435
-
436
- #: includes/documents/class-wcpdf-invoice.php:254
437
- msgid "Reset invoice number yearly"
438
- msgstr ""
439
-
440
- #: includes/documents/class-wcpdf-invoice.php:265
441
- msgid "Allow My Account invoice download"
442
- msgstr ""
443
-
444
- #: includes/documents/class-wcpdf-invoice.php:272
445
- msgid "Only when an invoice is already created/emailed"
446
- msgstr ""
447
-
448
- #: includes/documents/class-wcpdf-invoice.php:273
449
- msgid "Only for specific order statuses (define below)"
450
- msgstr ""
451
-
452
- #: includes/documents/class-wcpdf-invoice.php:274
453
- msgid "Always"
454
- msgstr ""
455
-
456
- #: includes/documents/class-wcpdf-invoice.php:275
457
- msgid "Never"
458
- msgstr ""
459
-
460
- #: includes/documents/class-wcpdf-invoice.php:290
461
- msgid "Enable invoice number column in the orders list"
462
- msgstr "請求書番号を注文一覧の項目に表示する"
463
-
464
- #: includes/documents/class-wcpdf-invoice.php:301
465
- msgid "Disable for free products"
466
- msgstr ""
467
-
468
- #: includes/documents/class-wcpdf-invoice.php:307
469
- msgid ""
470
- "Disable automatic creation/attachment when only free products are ordered"
471
- msgstr ""
472
-
473
- #: includes/documents/class-wcpdf-invoice.php:321
474
- msgid "Invoice numbers are created by a third-party extension."
475
- msgstr ""
476
-
477
- #: includes/documents/class-wcpdf-invoice.php:323
478
- #, php-format
479
- msgid "Configure it <a href=\"%s\">here</a>."
480
- msgstr ""
481
-
482
- #: includes/documents/class-wcpdf-packing-slip.php:32
483
- #: includes/documents/class-wcpdf-packing-slip.php:41
484
- #: includes/legacy/class-wcpdf-legacy-functions.php:25
485
- #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
486
- msgid "Packing Slip"
487
- msgstr "納品明細書"
488
-
489
- # This is a filename (prefix). do not use spaces or special characters!
490
- #: includes/documents/class-wcpdf-packing-slip.php:53
491
- msgid "packing-slip"
492
- msgid_plural "packing-slips"
493
- msgstr[0] "納品明細書"
494
- msgstr[1] "納品明細書"
495
-
496
- #: includes/documents/class-wcpdf-packing-slip.php:105
497
- msgid "Display billing address"
498
- msgstr ""
499
-
500
- #: includes/documents/class-wcpdf-packing-slip.php:111
501
- msgid ""
502
- "Display billing address (in addition to the default shipping address) if "
503
- "different from shipping address"
504
- msgstr ""
505
-
506
- #: includes/legacy/class-wcpdf-legacy-document.php:32
507
- msgid "Legacy Document"
508
- msgstr ""
509
-
510
- #: includes/views/wcpdf-extensions.php:15
511
- msgid "Check out these premium extensions!"
512
- msgstr ""
513
-
514
- #: includes/views/wcpdf-extensions.php:16
515
- msgid "click items to read more"
516
- msgstr ""
517
-
518
- #: includes/views/wcpdf-extensions.php:21
519
- msgid ""
520
- "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
521
- "system"
522
- msgstr ""
523
-
524
- #: includes/views/wcpdf-extensions.php:23
525
- msgid ""
526
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
527
- "premium extensions:"
528
- msgstr ""
529
-
530
- #: includes/views/wcpdf-extensions.php:24
531
- msgid "Professional features:"
532
- msgstr ""
533
-
534
- #: includes/views/wcpdf-extensions.php:26
535
- #: includes/views/wcpdf-extensions.php:56
536
- msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
537
- msgstr ""
538
-
539
- #: includes/views/wcpdf-extensions.php:27
540
- #: includes/views/wcpdf-extensions.php:57
541
- msgid ""
542
- "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
543
- "packing slips, for example to a drop-shipper or a supplier."
544
- msgstr ""
545
-
546
- #: includes/views/wcpdf-extensions.php:28
547
- #: includes/views/wcpdf-extensions.php:58
548
- msgid ""
549
- "Attach <b>up to 3 static files</b> (for example a terms & conditions "
550
- "document) to the WooCommerce emails of your choice."
551
- msgstr ""
552
-
553
- #: includes/views/wcpdf-extensions.php:29
554
- #: includes/views/wcpdf-extensions.php:59
555
- msgid ""
556
- "Use <b>separate numbering systems</b> and/or format for proforma invoices "
557
- "and credit notes or utilize the main invoice numbering system"
558
- msgstr ""
559
-
560
- #: includes/views/wcpdf-extensions.php:30
561
- #: includes/views/wcpdf-extensions.php:60
562
- msgid ""
563
- "<b>Customize</b> the <b>shipping & billing address</b> format to include "
564
- "additional custom fields, font sizes etc. without the need to create a "
565
- "custom template."
566
- msgstr ""
567
-
568
- #: includes/views/wcpdf-extensions.php:31
569
- #: includes/views/wcpdf-extensions.php:61
570
- msgid "Use the plugin in multilingual <b>WPML</b> setups"
571
- msgstr ""
572
-
573
- #: includes/views/wcpdf-extensions.php:33
574
- #: includes/views/wcpdf-extensions.php:131
575
- msgid "Advanced, customizable templates"
576
- msgstr ""
577
-
578
- #: includes/views/wcpdf-extensions.php:35
579
- #: includes/views/wcpdf-extensions.php:134
580
- msgid ""
581
- "Completely customize the invoice contents (prices, taxes, thumbnails) to "
582
- "your needs with a drag & drop customizer"
583
- msgstr ""
584
-
585
- #: includes/views/wcpdf-extensions.php:36
586
- #: includes/views/wcpdf-extensions.php:135
587
- msgid "Two extra stylish premade templates (Modern & Business)"
588
- msgstr ""
589
-
590
- #: includes/views/wcpdf-extensions.php:38
591
- msgid "Upload automatically to dropbox"
592
- msgstr ""
593
-
594
- #: includes/views/wcpdf-extensions.php:40
595
- #: includes/views/wcpdf-extensions.php:97
596
- msgid ""
597
- "This extension conveniently uploads all the invoices (and other pdf "
598
- "documents from the professional extension) that are emailed to your "
599
- "customers to Dropbox. The best way to keep your invoice administration up to "
600
- "date!"
601
- msgstr ""
602
-
603
- #: includes/views/wcpdf-extensions.php:43
604
- msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
605
- msgstr ""
606
-
607
- #: includes/views/wcpdf-extensions.php:52
608
- msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
609
- msgstr ""
610
-
611
- #: includes/views/wcpdf-extensions.php:54
612
- msgid ""
613
- "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
614
- "features:"
615
- msgstr ""
616
-
617
- #: includes/views/wcpdf-extensions.php:63
618
- msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
619
- msgstr ""
620
-
621
- #: includes/views/wcpdf-extensions.php:71
622
- msgid "Automatically send payment reminders to your customers"
623
- msgstr ""
624
-
625
- #: includes/views/wcpdf-extensions.php:73
626
- msgid "WooCommerce Smart Reminder emails"
627
- msgstr ""
628
-
629
- #: includes/views/wcpdf-extensions.php:75
630
- msgid "<b>Completely automatic</b> scheduled emails"
631
- msgstr ""
632
-
633
- #: includes/views/wcpdf-extensions.php:76
634
- msgid ""
635
- "<b>Rich text editor</b> for the email text, including placeholders for data "
636
- "from the order (name, order total, etc)"
637
- msgstr ""
638
-
639
- #: includes/views/wcpdf-extensions.php:77
640
- msgid ""
641
- "Configure the exact requirements for sending an email (time after order, "
642
- "order status, payment method)"
643
- msgstr ""
644
-
645
- #: includes/views/wcpdf-extensions.php:78
646
- msgid ""
647
- "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
648
- "order language."
649
- msgstr ""
650
-
651
- #: includes/views/wcpdf-extensions.php:79
652
- msgid ""
653
- "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
654
- "reminders, repeat purchases)"
655
- msgstr ""
656
-
657
- #: includes/views/wcpdf-extensions.php:80
658
- msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
659
- msgstr ""
660
-
661
- #: includes/views/wcpdf-extensions.php:82
662
- msgid "Get WooCommerce Smart Reminder Emails"
663
- msgstr ""
664
-
665
- #: includes/views/wcpdf-extensions.php:91
666
- msgid "Upload all invoices automatically to your dropbox"
667
- msgstr ""
668
-
669
- #: includes/views/wcpdf-extensions.php:98
670
- msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
671
- msgstr ""
672
-
673
- #: includes/views/wcpdf-extensions.php:110
674
- msgid ""
675
- "Automatically send new orders or packing slips to your printer, as soon as "
676
- "the customer orders!"
677
- msgstr ""
678
-
679
- #: includes/views/wcpdf-extensions.php:116
680
- msgid ""
681
- "Check out the WooCommerce Automatic Order Printing extension from our "
682
- "partners at Simba Hosting"
683
- msgstr ""
684
-
685
- #: includes/views/wcpdf-extensions.php:117
686
- msgid "WooCommerce Automatic Order Printing"
687
- msgstr ""
688
-
689
- #: includes/views/wcpdf-extensions.php:136
690
- #, php-format
691
- msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
692
- msgstr ""
693
-
694
- #: includes/views/wcpdf-extensions.php:137
695
- #, php-format
696
- msgid "For custom templates, contact us at %s."
697
- msgstr ""
698
- "テンプレートのカスタマイズが必要でしたら、%sに英語でお問い合わせください。"
699
-
700
- #: includes/views/wcpdf-extensions.php:146
701
- msgid "Hide this message"
702
- msgstr ""
703
-
704
- #: includes/views/wcpdf-settings-page.php:8
705
- msgid "WooCommerce PDF Invoices"
706
- msgstr "WooCommerce PDF請求書"
707
-
708
- #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
709
- msgid "Billing Address:"
710
- msgstr ""
711
-
712
- #: templates/Simple/invoice.php:41
713
- msgid "Ship To:"
714
- msgstr ""
715
-
716
- #: templates/Simple/invoice.php:50
717
- msgid "Invoice Number:"
718
- msgstr "請求書番号:"
719
-
720
- #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
721
- msgid "Order Number:"
722
- msgstr "注文番号:"
723
-
724
- #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
725
- msgid "Order Date:"
726
- msgstr "注文日:"
727
-
728
- #: templates/Simple/invoice.php:69
729
- msgid "Payment Method:"
730
- msgstr "支払い方法:"
731
-
732
- #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
733
- msgid "Product"
734
- msgstr "商品"
735
-
736
- #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
737
- msgid "Quantity"
738
- msgstr "数"
739
-
740
- #: templates/Simple/invoice.php:85
741
- msgid "Price"
742
- msgstr "価格"
743
-
744
- #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
745
- msgid "Description"
746
- msgstr "説明"
747
-
748
- #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
749
- msgid "SKU"
750
- msgstr "SKU"
751
-
752
- #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
753
- msgid "SKU:"
754
- msgstr "SKU:"
755
-
756
- #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
757
- msgid "Weight:"
758
- msgstr "重さ:"
759
-
760
- #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
761
- msgid "Customer Notes"
762
- msgstr "お客様からの注意事項"
763
-
764
- #: templates/Simple/packing-slip.php:30
765
- msgid "Shipping Address:"
766
- msgstr ""
767
-
768
- #: templates/Simple/packing-slip.php:57
769
- msgid "Shipping Method:"
770
- msgstr ""
771
-
772
- #: woocommerce-pdf-invoices-packingslips.php:231
773
- #, php-format
774
- msgid ""
775
- "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
776
- "installed & activated!"
777
- msgstr ""
778
- "WooCommerce PDF Invoices & Packing Slips は%sWooCommerce%sがインストールされ"
779
- "てアクティブになっていないといけません。"
780
-
781
- #: woocommerce-pdf-invoices-packingslips.php:243
782
- msgid ""
783
- "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
784
- "higher recommended)."
785
- msgstr ""
786
-
787
- #: woocommerce-pdf-invoices-packingslips.php:244
788
- msgid "How to update your PHP version"
789
- msgstr ""
790
-
791
- #~ msgid "Attach invoice to:"
792
- #~ msgstr "チェックのメールに請求書を付ける"
793
-
794
- #~ msgid ""
795
- #~ "This is the number that will be used on the next invoice that is created. "
796
- #~ "By default, numbering starts from the WooCommerce Order Number of the "
797
- #~ "first invoice that is created and increases for every new invoice. Note "
798
- #~ "that if you override this and set it lower than the highest (PDF) invoice "
799
- #~ "number, this could create double invoice numbers!"
800
- #~ msgstr ""
801
- #~ "これは、次の請求書が発行される際に使われる請求書番号です。デフォルトでは、"
802
- #~ "最初に請求書を作ったWooCommerceの注文番号から始まります。この番号の指定の"
803
- #~ "注意点ですが、現時点の番号より小さくすると請求書番号が重複しますので、注意"
804
- #~ "してください。"
805
-
806
- #~ msgid "Invoice number format"
807
- #~ msgstr "請求書番号の形式"
808
-
809
- #~ msgid "Template"
810
- #~ msgstr "テンプレート"
811
-
812
- #~ msgid ""
813
- #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
814
- #~ "extension."
815
- #~ msgstr ""
816
- #~ "自動的に指定したDropBoxに請求書をアップロードします。<br/>%sの拡張プラグイ"
817
- #~ "ンをチェックしてみてください。"
818
-
819
- #~ msgid ""
820
- #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
821
- #~ "Packing Slips templates at %s."
822
- #~ msgstr ""
823
- #~ "もっとテンプレートが見たいですか?Premium PDF Invoice & Packing Slips "
824
- #~ "templatesを%sでチェックしてください。"
825
-
826
- #~ msgid "Admin New Order email"
827
- #~ msgstr "管理者の新しい注文メール"
828
-
829
- #~ msgid "Customer Processing Order email"
830
- #~ msgstr "お客様の進行中の注文メール"
831
-
832
- #~ msgid "Customer Completed Order email"
833
- #~ msgstr "お客様の注文完了メール"
834
-
835
- #~ msgid "Customer Invoice email"
836
- #~ msgstr "お客様の請求メール"
837
-
838
- #~ msgid "PDF Template settings"
839
- #~ msgstr "PDF テンプレート設定"
840
-
841
- #~ msgid ""
842
- #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
843
- #~ "<code>%s</code> to customize them"
844
- #~ msgstr ""
845
- #~ "もし、ご自身でテンプレートをカスタマイズしたいのなら、<code>%s</code> か"
846
- #~ "ら <code>%s</code>へ全てのファイルをコピーしてカスタマイズしてください。"
847
-
848
- #~ msgid "Display built-in sequential invoice number"
849
- #~ msgstr "請求書番号の連番を表示"
850
-
851
- #~ msgid ""
852
- #~ "to use the order year and/or month, use [order_year] or [order_month] "
853
- #~ "respectively"
854
- #~ msgstr ""
855
- #~ "年や月を使いたい場合は[order_year]と[order_month]をそれぞれ使ってくださ"
856
- #~ "い。"
857
-
858
- #~ msgid "PDF Packing Slips"
859
- #~ msgstr "PDF納品明細書"
860
-
861
- #~ msgid "PDF Invoice"
862
- #~ msgstr "PDF請求書"
863
-
864
- #~ msgid "PDF Packing Slip"
865
- #~ msgstr "PDF 納品明細票"
866
-
867
- #~ msgid "PDF Invoice Number (unformatted!)"
868
- #~ msgstr "PDF 請求書番号(フォーマットされていません)"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WooCommerce PDF Invoices & Packing Slips\n"
4
+ "POT-Creation-Date: 2017-06-09 16:38+0200\n"
5
+ "PO-Revision-Date: 2017-06-09 16:38+0200\n"
6
+ "Last-Translator: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
7
+ "Language-Team: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
8
+ "Language: ja\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.8.12\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_x;_n:1,2\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: includes/class-wcpdf-admin.php:72 includes/class-wcpdf-admin.php:174
20
+ msgid "Invoice Number"
21
+ msgstr "請求書番号"
22
+
23
+ #: includes/class-wcpdf-admin.php:105
24
+ msgid "Create PDF"
25
+ msgstr "PDF書類の作成"
26
+
27
+ #: includes/class-wcpdf-admin.php:115
28
+ msgid "PDF Invoice data"
29
+ msgstr ""
30
+
31
+ #: includes/class-wcpdf-admin.php:166
32
+ #: includes/documents/class-wcpdf-invoice.php:32
33
+ #: includes/documents/class-wcpdf-invoice.php:41
34
+ #: includes/legacy/class-wcpdf-legacy-functions.php:22
35
+ #: templates/Simple/invoice.php:10 templates/Simple/invoice.php:22
36
+ msgid "Invoice"
37
+ msgstr "請求書"
38
+
39
+ #: includes/class-wcpdf-admin.php:183 includes/class-wcpdf-admin.php:204
40
+ #: templates/Simple/invoice.php:56
41
+ msgid "Invoice Date:"
42
+ msgstr "請求日:"
43
+
44
+ #: includes/class-wcpdf-admin.php:189
45
+ msgid "Set invoice number & date"
46
+ msgstr ""
47
+
48
+ #: includes/class-wcpdf-admin.php:196
49
+ msgid "Invoice Number (unformatted!)"
50
+ msgstr ""
51
+
52
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
53
+ msgid "h"
54
+ msgstr ""
55
+
56
+ #: includes/class-wcpdf-admin.php:206 includes/class-wcpdf-admin.php:208
57
+ msgid "m"
58
+ msgstr ""
59
+
60
+ #: includes/class-wcpdf-frontend.php:55
61
+ msgid "Download invoice (PDF)"
62
+ msgstr "ダウンロード請求書(PDF)"
63
+
64
+ #: includes/class-wcpdf-main.php:132 includes/class-wcpdf-main.php:153
65
+ #: includes/class-wcpdf-main.php:160 includes/class-wcpdf-main.php:166
66
+ msgid "You do not have sufficient permissions to access this page."
67
+ msgstr "このページにアクセスするための十分な権限がありません。"
68
+
69
+ #: includes/class-wcpdf-main.php:141
70
+ msgid "Some of the export parameters are missing."
71
+ msgstr ""
72
+
73
+ #: includes/class-wcpdf-settings-callbacks.php:27
74
+ msgid ""
75
+ "<b>Warning!</b> The settings below are meant for debugging/development only. "
76
+ "Do not use them on a live website!"
77
+ msgstr ""
78
+
79
+ #: includes/class-wcpdf-settings-callbacks.php:36
80
+ msgid ""
81
+ "These are used for the (optional) footer columns in the <em>Modern "
82
+ "(Premium)</em> template, but can also be used for other elements in your "
83
+ "custom template"
84
+ msgstr ""
85
+ "これらは、フッター項目(オプション)の<em>Modern (Premium)</em>テンプレート "
86
+ "で使いますが、カスタムテンプレート内の他の要素のために使用することができま"
87
+ "す。"
88
+
89
+ #: includes/class-wcpdf-settings-callbacks.php:301
90
+ msgid "Image resolution"
91
+ msgstr ""
92
+
93
+ #: includes/class-wcpdf-settings-callbacks.php:325
94
+ msgid "Save"
95
+ msgstr ""
96
+
97
+ #: includes/class-wcpdf-settings-debug.php:34
98
+ msgid "Debug settings"
99
+ msgstr ""
100
+
101
+ #: includes/class-wcpdf-settings-debug.php:40
102
+ msgid "Legacy mode"
103
+ msgstr ""
104
+
105
+ #: includes/class-wcpdf-settings-debug.php:46
106
+ msgid ""
107
+ "Legacy mode ensures compatibility with templates and filters from previous "
108
+ "versions."
109
+ msgstr ""
110
+
111
+ #: includes/class-wcpdf-settings-debug.php:52
112
+ msgid "Enable debug output"
113
+ msgstr ""
114
+
115
+ #: includes/class-wcpdf-settings-debug.php:58
116
+ msgid ""
117
+ "Enable this option to output plugin errors if you're getting a blank page or "
118
+ "other PDF generation issues"
119
+ msgstr ""
120
+
121
+ #: includes/class-wcpdf-settings-debug.php:64
122
+ msgid "Output to HTML"
123
+ msgstr ""
124
+
125
+ #: includes/class-wcpdf-settings-debug.php:70
126
+ msgid ""
127
+ "Send the template output as HTML to the browser instead of creating a PDF."
128
+ msgstr ""
129
+
130
+ #: includes/class-wcpdf-settings-documents.php:29
131
+ #: includes/class-wcpdf-settings.php:84
132
+ msgid "Documents"
133
+ msgstr ""
134
+
135
+ #: includes/class-wcpdf-settings-documents.php:45
136
+ msgid ""
137
+ "All available documents are listed below. Click on a document to configure "
138
+ "it."
139
+ msgstr ""
140
+
141
+ #: includes/class-wcpdf-settings-general.php:37
142
+ msgid "General settings"
143
+ msgstr "一般設定"
144
+
145
+ #: includes/class-wcpdf-settings-general.php:43
146
+ msgid "How do you want to view the PDF?"
147
+ msgstr "PDFファイルをどのようにして見ますか?"
148
+
149
+ #: includes/class-wcpdf-settings-general.php:50
150
+ msgid "Download the PDF"
151
+ msgstr " PDFをダウンロード"
152
+
153
+ #: includes/class-wcpdf-settings-general.php:51
154
+ msgid "Open the PDF in a new browser tab/window"
155
+ msgstr "ブラウザーの新しいタブかウインドウを開く"
156
+
157
+ #: includes/class-wcpdf-settings-general.php:58
158
+ msgid "Choose a template"
159
+ msgstr "テンプレートを選ぶ"
160
+
161
+ #: includes/class-wcpdf-settings-general.php:65
162
+ #, php-format
163
+ msgid ""
164
+ "Want to use your own template? Copy all the files from <code>%s</code> to "
165
+ "your (child) theme in <code>%s</code> to customize them"
166
+ msgstr ""
167
+
168
+ #: includes/class-wcpdf-settings-general.php:71
169
+ msgid "Paper size"
170
+ msgstr "印刷用紙サイズ"
171
+
172
+ #: includes/class-wcpdf-settings-general.php:78
173
+ msgid "A4"
174
+ msgstr "A4"
175
+
176
+ #: includes/class-wcpdf-settings-general.php:79
177
+ msgid "Letter"
178
+ msgstr "レターサイズ"
179
+
180
+ #: includes/class-wcpdf-settings-general.php:86
181
+ msgid "Extended currency symbol support"
182
+ msgstr ""
183
+
184
+ #: includes/class-wcpdf-settings-general.php:92
185
+ msgid "Enable this if your currency symbol is not displaying properly"
186
+ msgstr ""
187
+
188
+ #: includes/class-wcpdf-settings-general.php:98
189
+ msgid "Shop header/logo"
190
+ msgstr "店舗ヘッダー/ロゴ"
191
+
192
+ #: includes/class-wcpdf-settings-general.php:104
193
+ msgid "Select or upload your invoice header/logo"
194
+ msgstr ""
195
+ "請求書のヘッダー/ロゴに使用するイメージを選ぶかアップロードしてください"
196
+
197
+ #: includes/class-wcpdf-settings-general.php:105
198
+ msgid "Set image"
199
+ msgstr "イメージ設定"
200
+
201
+ #: includes/class-wcpdf-settings-general.php:106
202
+ msgid "Remove image"
203
+ msgstr "イメージ削除"
204
+
205
+ #: includes/class-wcpdf-settings-general.php:113
206
+ msgid "Shop Name"
207
+ msgstr "店舗名"
208
+
209
+ #: includes/class-wcpdf-settings-general.php:126
210
+ msgid "Shop Address"
211
+ msgstr "店舗住所"
212
+
213
+ #: includes/class-wcpdf-settings-general.php:141
214
+ msgid "Footer: terms & conditions, policies, etc."
215
+ msgstr "フッター : 規約、方針など"
216
+
217
+ #: includes/class-wcpdf-settings-general.php:156
218
+ msgid "Extra template fields"
219
+ msgstr "追加項目"
220
+
221
+ #: includes/class-wcpdf-settings-general.php:162
222
+ msgid "Extra field 1"
223
+ msgstr "追加項目1"
224
+
225
+ #: includes/class-wcpdf-settings-general.php:170
226
+ msgid "This is footer column 1 in the <i>Modern (Premium)</i> template"
227
+ msgstr ""
228
+ "これはフッターカラム1の<i>Modern (Premium)</i> テンプレートで使います。"
229
+
230
+ #: includes/class-wcpdf-settings-general.php:177
231
+ msgid "Extra field 2"
232
+ msgstr "追加項目2"
233
+
234
+ #: includes/class-wcpdf-settings-general.php:185
235
+ msgid "This is footer column 2 in the <i>Modern (Premium)</i> template"
236
+ msgstr ""
237
+ "これはフッターカラム2の<i>Modern (Premium)</i> テンプレートで使います。"
238
+
239
+ #: includes/class-wcpdf-settings-general.php:192
240
+ msgid "Extra field 3"
241
+ msgstr "追加項目3"
242
+
243
+ #: includes/class-wcpdf-settings-general.php:200
244
+ msgid "This is footer column 3 in the <i>Modern (Premium)</i> template"
245
+ msgstr ""
246
+ "これはフッターカラム3の<i>Modern (Premium)</i> テンプレートで使います。"
247
+
248
+ #: includes/class-wcpdf-settings.php:45 includes/class-wcpdf-settings.php:46
249
+ msgid "PDF Invoices"
250
+ msgstr "PDF請求書"
251
+
252
+ #: includes/class-wcpdf-settings.php:58
253
+ msgid "Settings"
254
+ msgstr "設定"
255
+
256
+ #: includes/class-wcpdf-settings.php:71
257
+ msgid "Documentation"
258
+ msgstr ""
259
+
260
+ #: includes/class-wcpdf-settings.php:72
261
+ msgid "Support Forum"
262
+ msgstr ""
263
+
264
+ #: includes/class-wcpdf-settings.php:83
265
+ msgid "General"
266
+ msgstr "一般設定"
267
+
268
+ #: includes/class-wcpdf-settings.php:89
269
+ msgid "Status"
270
+ msgstr "状況"
271
+
272
+ #: includes/compatibility/class-wc-core-compatibility.php:222
273
+ msgid "WooCommerce"
274
+ msgstr ""
275
+
276
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:113
277
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:176
278
+ msgid "N/A"
279
+ msgstr "N/A"
280
+
281
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:305
282
+ msgid "Payment method"
283
+ msgstr "支払い方法"
284
+
285
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:326
286
+ msgid "Shipping method"
287
+ msgstr "発送方法"
288
+
289
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:669
290
+ #, php-format
291
+ msgid "(includes %s)"
292
+ msgstr ""
293
+
294
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:672
295
+ #, php-format
296
+ msgid "(Includes %s)"
297
+ msgstr ""
298
+
299
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:702
300
+ msgid "Subtotal"
301
+ msgstr "小計"
302
+
303
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:727
304
+ msgid "Shipping"
305
+ msgstr "配送"
306
+
307
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:790
308
+ msgid "Discount"
309
+ msgstr "値引き"
310
+
311
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:831
312
+ msgid "VAT"
313
+ msgstr ""
314
+
315
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:832
316
+ msgid "Tax rate"
317
+ msgstr ""
318
+
319
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:876
320
+ msgid "Total ex. VAT"
321
+ msgstr ""
322
+
323
+ #: includes/documents/abstract-wcpdf-order-document-methods.php:879
324
+ msgid "Total"
325
+ msgstr "合計"
326
+
327
+ #: includes/documents/abstract-wcpdf-order-document.php:674
328
+ msgid "Admin email"
329
+ msgstr ""
330
+
331
+ #: includes/documents/abstract-wcpdf-order-document.php:677
332
+ msgid "Manual email"
333
+ msgstr ""
334
+
335
+ # This is a filename (prefix). do not use spaces or special characters!
336
+ #: includes/documents/class-wcpdf-invoice.php:85
337
+ msgid "invoice"
338
+ msgid_plural "invoices"
339
+ msgstr[0] "請求書"
340
+ msgstr[1] "請求書"
341
+
342
+ #: includes/documents/class-wcpdf-invoice.php:130
343
+ #: includes/documents/class-wcpdf-packing-slip.php:94
344
+ msgid "Enable"
345
+ msgstr ""
346
+
347
+ #: includes/documents/class-wcpdf-invoice.php:141
348
+ msgid "Attach to:"
349
+ msgstr ""
350
+
351
+ #: includes/documents/class-wcpdf-invoice.php:148
352
+ #, php-format
353
+ msgid ""
354
+ "It looks like the temp folder (<code>%s</code>) is not writable, check the "
355
+ "permissions for this folder! Without having write access to this folder, the "
356
+ "plugin will not be able to email invoices."
357
+ msgstr ""
358
+ " (<code>%s</code>) のフォルダが書き込み不可になっているようです。フォルダーの"
359
+ "パーミッションを確認して下さい。このフォルダに書き込みが出来ないと、このプラ"
360
+ "グインは請求書をメールで送ることが出来ません。"
361
+
362
+ #: includes/documents/class-wcpdf-invoice.php:154
363
+ msgid "Display shipping address"
364
+ msgstr ""
365
+
366
+ #: includes/documents/class-wcpdf-invoice.php:160
367
+ msgid ""
368
+ "Display shipping address (in addition to the default billing address) if "
369
+ "different from billing address"
370
+ msgstr ""
371
+
372
+ #: includes/documents/class-wcpdf-invoice.php:166
373
+ #: includes/documents/class-wcpdf-packing-slip.php:117
374
+ msgid "Display email address"
375
+ msgstr ""
376
+
377
+ #: includes/documents/class-wcpdf-invoice.php:177
378
+ #: includes/documents/class-wcpdf-packing-slip.php:128
379
+ msgid "Display phone number"
380
+ msgstr ""
381
+
382
+ #: includes/documents/class-wcpdf-invoice.php:188
383
+ msgid "Display invoice date"
384
+ msgstr "請求日を表示"
385
+
386
+ #: includes/documents/class-wcpdf-invoice.php:200
387
+ msgid "Display invoice number"
388
+ msgstr ""
389
+
390
+ #: includes/documents/class-wcpdf-invoice.php:212
391
+ msgid "Next invoice number (without prefix/suffix etc.)"
392
+ msgstr "次の請求書番号(接頭辞や接尾辞など無し)"
393
+
394
+ #: includes/documents/class-wcpdf-invoice.php:218
395
+ msgid ""
396
+ "This is the number that will be used for the next document. By default, "
397
+ "numbering starts from 1 and increases for every new document. Note that if "
398
+ "you override this and set it lower than the current/highest number, this "
399
+ "could create duplicate numbers!"
400
+ msgstr ""
401
+
402
+ #: includes/documents/class-wcpdf-invoice.php:224
403
+ msgid "Number format"
404
+ msgstr ""
405
+
406
+ #: includes/documents/class-wcpdf-invoice.php:232
407
+ msgid "Prefix"
408
+ msgstr "接頭辞"
409
+
410
+ #: includes/documents/class-wcpdf-invoice.php:234
411
+ msgid ""
412
+ "to use the invoice year and/or month, use [invoice_year] or [invoice_month] "
413
+ "respectively"
414
+ msgstr ""
415
+
416
+ #: includes/documents/class-wcpdf-invoice.php:237
417
+ msgid "Suffix"
418
+ msgstr "接尾辞"
419
+
420
+ #: includes/documents/class-wcpdf-invoice.php:242
421
+ msgid "Padding"
422
+ msgstr "桁数"
423
+
424
+ #: includes/documents/class-wcpdf-invoice.php:245
425
+ msgid "enter the number of digits here - enter \"6\" to display 42 as 000042"
426
+ msgstr "ここには桁数を入れてください。42の場合は000042と表示されます。"
427
+
428
+ #: includes/documents/class-wcpdf-invoice.php:248
429
+ msgid ""
430
+ "note: if you have already created a custom invoice number format with a "
431
+ "filter, the above settings will be ignored"
432
+ msgstr ""
433
+ "注意 : すでにフィルターを使用してカスタム請求書番号の書式を作成している場合、"
434
+ "上記の設定は無視されます。"
435
+
436
+ #: includes/documents/class-wcpdf-invoice.php:254
437
+ msgid "Reset invoice number yearly"
438
+ msgstr ""
439
+
440
+ #: includes/documents/class-wcpdf-invoice.php:265
441
+ msgid "Allow My Account invoice download"
442
+ msgstr ""
443
+
444
+ #: includes/documents/class-wcpdf-invoice.php:272
445
+ msgid "Only when an invoice is already created/emailed"
446
+ msgstr ""
447
+
448
+ #: includes/documents/class-wcpdf-invoice.php:273
449
+ msgid "Only for specific order statuses (define below)"
450
+ msgstr ""
451
+
452
+ #: includes/documents/class-wcpdf-invoice.php:274
453
+ msgid "Always"
454
+ msgstr ""
455
+
456
+ #: includes/documents/class-wcpdf-invoice.php:275
457
+ msgid "Never"
458
+ msgstr ""
459
+
460
+ #: includes/documents/class-wcpdf-invoice.php:290
461
+ msgid "Enable invoice number column in the orders list"
462
+ msgstr "請求書番号を注文一覧の項目に表示する"
463
+
464
+ #: includes/documents/class-wcpdf-invoice.php:301
465
+ msgid "Disable for free products"
466
+ msgstr ""
467
+
468
+ #: includes/documents/class-wcpdf-invoice.php:307
469
+ msgid ""
470
+ "Disable automatic creation/attachment when only free products are ordered"
471
+ msgstr ""
472
+
473
+ #: includes/documents/class-wcpdf-invoice.php:321
474
+ msgid "Invoice numbers are created by a third-party extension."
475
+ msgstr ""
476
+
477
+ #: includes/documents/class-wcpdf-invoice.php:323
478
+ #, php-format
479
+ msgid "Configure it <a href=\"%s\">here</a>."
480
+ msgstr ""
481
+
482
+ #: includes/documents/class-wcpdf-packing-slip.php:32
483
+ #: includes/documents/class-wcpdf-packing-slip.php:41
484
+ #: includes/legacy/class-wcpdf-legacy-functions.php:25
485
+ #: templates/Simple/packing-slip.php:10 templates/Simple/packing-slip.php:22
486
+ msgid "Packing Slip"
487
+ msgstr "納品明細書"
488
+
489
+ # This is a filename (prefix). do not use spaces or special characters!
490
+ #: includes/documents/class-wcpdf-packing-slip.php:53
491
+ msgid "packing-slip"
492
+ msgid_plural "packing-slips"
493
+ msgstr[0] "納品明細書"
494
+ msgstr[1] "納品明細書"
495
+
496
+ #: includes/documents/class-wcpdf-packing-slip.php:105
497
+ msgid "Display billing address"
498
+ msgstr ""
499
+
500
+ #: includes/documents/class-wcpdf-packing-slip.php:111
501
+ msgid ""
502
+ "Display billing address (in addition to the default shipping address) if "
503
+ "different from shipping address"
504
+ msgstr ""
505
+
506
+ #: includes/legacy/class-wcpdf-legacy-document.php:32
507
+ msgid "Legacy Document"
508
+ msgstr ""
509
+
510
+ #: includes/views/wcpdf-extensions.php:15
511
+ msgid "Check out these premium extensions!"
512
+ msgstr ""
513
+
514
+ #: includes/views/wcpdf-extensions.php:16
515
+ msgid "click items to read more"
516
+ msgstr ""
517
+
518
+ #: includes/views/wcpdf-extensions.php:21
519
+ msgid ""
520
+ "Premium PDF Invoice bundle: Everything you need for a perfect invoicing "
521
+ "system"
522
+ msgstr ""
523
+
524
+ #: includes/views/wcpdf-extensions.php:23
525
+ msgid ""
526
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the all our "
527
+ "premium extensions:"
528
+ msgstr ""
529
+
530
+ #: includes/views/wcpdf-extensions.php:24
531
+ msgid "Professional features:"
532
+ msgstr ""
533
+
534
+ #: includes/views/wcpdf-extensions.php:26
535
+ #: includes/views/wcpdf-extensions.php:56
536
+ msgid "Email/print/download <b>PDF Credit Notes & Proforma invoices</b>"
537
+ msgstr ""
538
+
539
+ #: includes/views/wcpdf-extensions.php:27
540
+ #: includes/views/wcpdf-extensions.php:57
541
+ msgid ""
542
+ "Send out a separate <b>notification email</b> with (or without) PDF invoices/"
543
+ "packing slips, for example to a drop-shipper or a supplier."
544
+ msgstr ""
545
+
546
+ #: includes/views/wcpdf-extensions.php:28
547
+ #: includes/views/wcpdf-extensions.php:58
548
+ msgid ""
549
+ "Attach <b>up to 3 static files</b> (for example a terms & conditions "
550
+ "document) to the WooCommerce emails of your choice."
551
+ msgstr ""
552
+
553
+ #: includes/views/wcpdf-extensions.php:29
554
+ #: includes/views/wcpdf-extensions.php:59
555
+ msgid ""
556
+ "Use <b>separate numbering systems</b> and/or format for proforma invoices "
557
+ "and credit notes or utilize the main invoice numbering system"
558
+ msgstr ""
559
+
560
+ #: includes/views/wcpdf-extensions.php:30
561
+ #: includes/views/wcpdf-extensions.php:60
562
+ msgid ""
563
+ "<b>Customize</b> the <b>shipping & billing address</b> format to include "
564
+ "additional custom fields, font sizes etc. without the need to create a "
565
+ "custom template."
566
+ msgstr ""
567
+
568
+ #: includes/views/wcpdf-extensions.php:31
569
+ #: includes/views/wcpdf-extensions.php:61
570
+ msgid "Use the plugin in multilingual <b>WPML</b> setups"
571
+ msgstr ""
572
+
573
+ #: includes/views/wcpdf-extensions.php:33
574
+ #: includes/views/wcpdf-extensions.php:131
575
+ msgid "Advanced, customizable templates"
576
+ msgstr ""
577
+
578
+ #: includes/views/wcpdf-extensions.php:35
579
+ #: includes/views/wcpdf-extensions.php:134
580
+ msgid ""
581
+ "Completely customize the invoice contents (prices, taxes, thumbnails) to "
582
+ "your needs with a drag & drop customizer"
583
+ msgstr ""
584
+
585
+ #: includes/views/wcpdf-extensions.php:36
586
+ #: includes/views/wcpdf-extensions.php:135
587
+ msgid "Two extra stylish premade templates (Modern & Business)"
588
+ msgstr ""
589
+
590
+ #: includes/views/wcpdf-extensions.php:38
591
+ msgid "Upload automatically to dropbox"
592
+ msgstr ""
593
+
594
+ #: includes/views/wcpdf-extensions.php:40
595
+ #: includes/views/wcpdf-extensions.php:97
596
+ msgid ""
597
+ "This extension conveniently uploads all the invoices (and other pdf "
598
+ "documents from the professional extension) that are emailed to your "
599
+ "customers to Dropbox. The best way to keep your invoice administration up to "
600
+ "date!"
601
+ msgstr ""
602
+
603
+ #: includes/views/wcpdf-extensions.php:43
604
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Bundle"
605
+ msgstr ""
606
+
607
+ #: includes/views/wcpdf-extensions.php:52
608
+ msgid "Go Pro: Proforma invoices, credit notes (=refunds) & more!"
609
+ msgstr ""
610
+
611
+ #: includes/views/wcpdf-extensions.php:54
612
+ msgid ""
613
+ "Supercharge WooCommerce PDF Invoices & Packing Slips with the following "
614
+ "features:"
615
+ msgstr ""
616
+
617
+ #: includes/views/wcpdf-extensions.php:63
618
+ msgid "Get WooCommerce PDF Invoices & Packing Slips Professional!"
619
+ msgstr ""
620
+
621
+ #: includes/views/wcpdf-extensions.php:71
622
+ msgid "Automatically send payment reminders to your customers"
623
+ msgstr ""
624
+
625
+ #: includes/views/wcpdf-extensions.php:73
626
+ msgid "WooCommerce Smart Reminder emails"
627
+ msgstr ""
628
+
629
+ #: includes/views/wcpdf-extensions.php:75
630
+ msgid "<b>Completely automatic</b> scheduled emails"
631
+ msgstr ""
632
+
633
+ #: includes/views/wcpdf-extensions.php:76
634
+ msgid ""
635
+ "<b>Rich text editor</b> for the email text, including placeholders for data "
636
+ "from the order (name, order total, etc)"
637
+ msgstr ""
638
+
639
+ #: includes/views/wcpdf-extensions.php:77
640
+ msgid ""
641
+ "Configure the exact requirements for sending an email (time after order, "
642
+ "order status, payment method)"
643
+ msgstr ""
644
+
645
+ #: includes/views/wcpdf-extensions.php:78
646
+ msgid ""
647
+ "Fully <b>WPML Compatible</b> – emails will be automatically sent in the "
648
+ "order language."
649
+ msgstr ""
650
+
651
+ #: includes/views/wcpdf-extensions.php:79
652
+ msgid ""
653
+ "<b>Super versatile!</b> Can be used for any kind of reminder email (review "
654
+ "reminders, repeat purchases)"
655
+ msgstr ""
656
+
657
+ #: includes/views/wcpdf-extensions.php:80
658
+ msgid "Integrates seamlessly with the PDF Invoices & Packing Slips plugin"
659
+ msgstr ""
660
+
661
+ #: includes/views/wcpdf-extensions.php:82
662
+ msgid "Get WooCommerce Smart Reminder Emails"
663
+ msgstr ""
664
+
665
+ #: includes/views/wcpdf-extensions.php:91
666
+ msgid "Upload all invoices automatically to your dropbox"
667
+ msgstr ""
668
+
669
+ #: includes/views/wcpdf-extensions.php:98
670
+ msgid "Get WooCommerce PDF Invoices & Packing Slips to dropbox!"
671
+ msgstr ""
672
+
673
+ #: includes/views/wcpdf-extensions.php:110
674
+ msgid ""
675
+ "Automatically send new orders or packing slips to your printer, as soon as "
676
+ "the customer orders!"
677
+ msgstr ""
678
+
679
+ #: includes/views/wcpdf-extensions.php:116
680
+ msgid ""
681
+ "Check out the WooCommerce Automatic Order Printing extension from our "
682
+ "partners at Simba Hosting"
683
+ msgstr ""
684
+
685
+ #: includes/views/wcpdf-extensions.php:117
686
+ msgid "WooCommerce Automatic Order Printing"
687
+ msgstr ""
688
+
689
+ #: includes/views/wcpdf-extensions.php:136
690
+ #, php-format
691
+ msgid "Check out the Premium PDF Invoice & Packing Slips templates at %s."
692
+ msgstr ""
693
+
694
+ #: includes/views/wcpdf-extensions.php:137
695
+ #, php-format
696
+ msgid "For custom templates, contact us at %s."
697
+ msgstr ""
698
+ "テンプレートのカスタマイズが必要でしたら、%sに英語でお問い合わせください。"
699
+
700
+ #: includes/views/wcpdf-extensions.php:146
701
+ msgid "Hide this message"
702
+ msgstr ""
703
+
704
+ #: includes/views/wcpdf-settings-page.php:8
705
+ msgid "WooCommerce PDF Invoices"
706
+ msgstr "WooCommerce PDF請求書"
707
+
708
+ #: templates/Simple/invoice.php:30 templates/Simple/packing-slip.php:41
709
+ msgid "Billing Address:"
710
+ msgstr ""
711
+
712
+ #: templates/Simple/invoice.php:41
713
+ msgid "Ship To:"
714
+ msgstr ""
715
+
716
+ #: templates/Simple/invoice.php:50
717
+ msgid "Invoice Number:"
718
+ msgstr "請求書番号:"
719
+
720
+ #: templates/Simple/invoice.php:61 templates/Simple/packing-slip.php:49
721
+ msgid "Order Number:"
722
+ msgstr "注文番号:"
723
+
724
+ #: templates/Simple/invoice.php:65 templates/Simple/packing-slip.php:53
725
+ msgid "Order Date:"
726
+ msgstr "注文日:"
727
+
728
+ #: templates/Simple/invoice.php:69
729
+ msgid "Payment Method:"
730
+ msgstr "支払い方法:"
731
+
732
+ #: templates/Simple/invoice.php:83 templates/Simple/packing-slip.php:71
733
+ msgid "Product"
734
+ msgstr "商品"
735
+
736
+ #: templates/Simple/invoice.php:84 templates/Simple/packing-slip.php:72
737
+ msgid "Quantity"
738
+ msgstr "数"
739
+
740
+ #: templates/Simple/invoice.php:85
741
+ msgid "Price"
742
+ msgstr "価格"
743
+
744
+ #: templates/Simple/invoice.php:92 templates/Simple/packing-slip.php:79
745
+ msgid "Description"
746
+ msgstr "説明"
747
+
748
+ #: templates/Simple/invoice.php:97 templates/Simple/packing-slip.php:84
749
+ msgid "SKU"
750
+ msgstr "SKU"
751
+
752
+ #: templates/Simple/invoice.php:98 templates/Simple/packing-slip.php:85
753
+ msgid "SKU:"
754
+ msgstr "SKU:"
755
+
756
+ #: templates/Simple/invoice.php:99 templates/Simple/packing-slip.php:86
757
+ msgid "Weight:"
758
+ msgstr "重さ:"
759
+
760
+ #: templates/Simple/invoice.php:114 templates/Simple/packing-slip.php:101
761
+ msgid "Customer Notes"
762
+ msgstr "お客様からの注意事項"
763
+
764
+ #: templates/Simple/packing-slip.php:30
765
+ msgid "Shipping Address:"
766
+ msgstr ""
767
+
768
+ #: templates/Simple/packing-slip.php:57
769
+ msgid "Shipping Method:"
770
+ msgstr ""
771
+
772
+ #: woocommerce-pdf-invoices-packingslips.php:231
773
+ #, php-format
774
+ msgid ""
775
+ "WooCommerce PDF Invoices & Packing Slips requires %sWooCommerce%s to be "
776
+ "installed & activated!"
777
+ msgstr ""
778
+ "WooCommerce PDF Invoices & Packing Slips は%sWooCommerce%sがインストールされ"
779
+ "てアクティブになっていないといけません。"
780
+
781
+ #: woocommerce-pdf-invoices-packingslips.php:243
782
+ msgid ""
783
+ "WooCommerce PDF Invoices & Packing Slips requires PHP 5.3 or higher (5.6 or "
784
+ "higher recommended)."
785
+ msgstr ""
786
+
787
+ #: woocommerce-pdf-invoices-packingslips.php:244
788
+ msgid "How to update your PHP version"
789
+ msgstr ""
790
+
791
+ #~ msgid "Attach invoice to:"
792
+ #~ msgstr "チェックのメールに請求書を付ける"
793
+
794
+ #~ msgid ""
795
+ #~ "This is the number that will be used on the next invoice that is created. "
796
+ #~ "By default, numbering starts from the WooCommerce Order Number of the "
797
+ #~ "first invoice that is created and increases for every new invoice. Note "
798
+ #~ "that if you override this and set it lower than the highest (PDF) invoice "
799
+ #~ "number, this could create double invoice numbers!"
800
+ #~ msgstr ""
801
+ #~ "これは、次の請求書が発行される際に使われる請求書番号です。デフォルトでは、"
802
+ #~ "最初に請求書を作ったWooCommerceの注文番号から始まります。この番号の指定の"
803
+ #~ "注意点ですが、現時点の番号より小さくすると請求書番号が重複しますので、注意"
804
+ #~ "してください。"
805
+
806
+ #~ msgid "Invoice number format"
807
+ #~ msgstr "請求書番号の形式"
808
+
809
+ #~ msgid "Template"
810
+ #~ msgstr "テンプレート"
811
+
812
+ #~ msgid ""
813
+ #~ "Upload all invoices automatically to your dropbox!<br/>Check out the %s "
814
+ #~ "extension."
815
+ #~ msgstr ""
816
+ #~ "自動的に指定したDropBoxに請求書をアップロードします。<br/>%sの拡張プラグイ"
817
+ #~ "ンをチェックしてみてください。"
818
+
819
+ #~ msgid ""
820
+ #~ "Looking for more advanced templates? Check out the Premium PDF Invoice & "
821
+ #~ "Packing Slips templates at %s."
822
+ #~ msgstr ""
823
+ #~ "もっとテンプレートが見たいですか?Premium PDF Invoice & Packing Slips "
824
+ #~ "templatesを%sでチェックしてください。"
825
+
826
+ #~ msgid "Admin New Order email"
827
+ #~ msgstr "管理者の新しい注文メール"
828
+
829
+ #~ msgid "Customer Processing Order email"
830
+ #~ msgstr "お客様の進行中の注文メール"
831
+
832
+ #~ msgid "Customer Completed Order email"
833
+ #~ msgstr "お客様の注文完了メール"
834
+
835
+ #~ msgid "Customer Invoice email"
836
+ #~ msgstr "お客様の請求メール"
837
+
838
+ #~ msgid "PDF Template settings"
839
+ #~ msgstr "PDF テンプレート設定"
840
+
841
+ #~ msgid ""
842
+ #~ "Want to use your own template? Copy all the files from <code>%s</code> to "
843
+ #~ "<code>%s</code> to customize them"
844
+ #~ msgstr ""
845
+ #~ "もし、ご自身でテンプレートをカスタマイズしたいのなら、<code>%s</code> か"
846
+ #~ "ら <code>%s</code>へ全てのファイルをコピーしてカスタマイズしてください。"
847
+
848
+ #~ msgid "Display built-in sequential invoice number"
849
+ #~ msgstr "請求書番号の連番を表示"
850
+
851
+ #~ msgid ""
852
+ #~ "to use the order year and/or month, use [order_year] or [order_month] "
853
+ #~ "respectively"
854
+ #~ msgstr ""
855
+ #~ "年や月を使いたい場合は[order_year]と[order_month]をそれぞれ使ってくださ"
856
+ #~ "い。"
857
+
858
+ #~ msgid "PDF Packing Slips"
859
+ #~ msgstr "PDF納品明細書"
860
+
861
+ #~ msgid "PDF Invoice"
862
+ #~ msgstr "PDF請求書"
863
+
864
+ #~ msgid "PDF Packing Slip"
865
+ #~ msgstr "PDF 納品明細票"
866
+
867
+ #~ msgid "PDF Invoice Number (unformatted!)"
868
+ #~ msgstr "PDF 請求書番号(フォーマットされていません)"
languages/woocommerce-pdf-invoices-packing-slips-lv.po CHANGED
@@ -1,1311 +1,1311 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-V