forked from franzholz/tt_products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocallang_db.xml
executable file
·1375 lines (1375 loc) · 93.9 KB
/
locallang_db.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<T3locallang>
<meta type="array">
<description>database fields</description>
<type>database</type>
<csh_table></csh_table>
<fileId>EXT:tt_products/locallang_db.xml</fileId>
<labelContext type="array">
</labelContext>
</meta>
<data type="array">
<languageKey index="default" type="array">
<label index="tstamp">Time stamp</label>
<label index="crdate">Creation date</label>
<label index="tt_products">Products</label>
<label index="tt_products.accessory_uid">Accessory products</label>
<label index="tt_products.prod_uid">Template Products</label>
<label index="tt_products.related_uid">Related Products</label>
<label index="tt_products.directcost">Direct Cost:</label>
<label index="tt_products.regular_price">Regular Price:</label>
<label index="tt_products.price">Price:</label>
<label index="tt_products.price2">Price (2):</label>
<label index="tt_products.discount">Possible Discount:</label>
<label index="tt_products.discount_disable">Disable Discounts:</label>
<label index="tt_products.unit">Unit of Measure</label>
<label index="tt_products.unit_factor">Unit Factor</label>
<label index="tt_products.graduated_price_enable">Enable Graduated Prices:</label>
<label index="tt_products.graduated_price_round">Round format for Graduated Prices:</label>
<label index="tt_products.graduated_price_uid">Graduated Prices:</label>
<label index="tt_products.article_uid">Articles:</label>
<label index="tt_products.note_uid">Describing Pages:</label>
<label index="tt_products.note">Description</label>
<label index="tt_products.note2">Commentary</label>
<label index="tt_products.text_uid">Additional texts:</label>
<label index="tt_products.itemnumber">Identifier:</label>
<label index="tt_products.ean">EAN Code:</label>
<label index="tt_products.shipping_point">Shipping point:</label>
<label index="tt_products.inStock">In Stock (pcs):</label>
<label index="tt_products.basketminquantity">Minimum quantity in basket:</label>
<label index="tt_products.basketmaxquantity">Maximum quantity in basket:</label>
<label index="tt_products.datasheet">Datasheet</label>
<label index="tt_products.www">WWW URL</label>
<label index="tt_products.tax_free">Tax-free:</label>
<label index="tt_products.tax">Tax:</label>
<label index="tt_products.deposit">Deposit:</label>
<label index="tt_products.weight">Weight (kg):</label>
<label index="tt_products.usebydate">Use by date:</label>
<label index="tt_products.bulkily">Bulkily:</label>
<label index="tt_products.offer">Offer:</label>
<label index="tt_products.highlight">Highlight:</label>
<label index="tt_products.bargain">Bargain:</label>
<label index="tt_products.color">Colour (Variant 1):</label>
<label index="tt_products.color2">2nd Colour (Variant 6):</label>
<label index="tt_products.color3">3rd Colour (Variant 7):</label>
<label index="tt_products.color4">4th Colour (Variant 12):</label>
<label index="tt_products.size">Size Length (Variant 2):</label>
<label index="tt_products.size2">2nd Size Width (Variant 8):</label>
<label index="tt_products.size3">3rd Size Height (Variant 9):</label>
<label index="tt_products.size4">4th Size (Variant 13):</label>
<label index="tt_products.description">Description (Variant 3):</label>
<label index="tt_products.description2">2nd Description (Variant 14):</label>
<label index="tt_products.description3">3rd Description (Variant 15):</label>
<label index="tt_products.descriptions">Descriptions </label>
<label index="tt_products.gradings">Gradings (Variant 4):</label>
<label index="tt_products.material">Material (Variant 10):</label>
<label index="tt_products.quality">Quality (Variant 11):</label>
<label index="tt_products.form">Form (Variant 16):</label>
<label index="tt_products.form2">2nd Form (Variant 17):</label>
<label index="tt_products.type">Type (Variant 18):</label>
<label index="tt_products.pattern">Pattern (Variant 19):</label>
<label index="tt_products.surface">Surface (Variant 20):</label>
<label index="tt_products.angular">Angular (Variant 21):</label>
<label index="tt_products.time">Time (Variant 22):</label>
<label index="tt_products.time2">2nd Time (Variant 23):</label>
<label index="tt_products.guarantee">Guarantee (Variant 24):</label>
<label index="tt_products.elements">Elements (Variant 25):</label>
<label index="tt_products.boundary">Boundary (Variant 26):</label>
<label index="tt_products.costs">Costs (Variant 27):</label>
<label index="tt_products.additionaltab">Addition</label>
<label index="tt_products.additional_type">internal additional type:</label>
<label index="tt_products.additional">Additional (Variant 5):</label>
<label index="tt_products.additional.isSingle">Buy only once:</label>
<label index="tt_products.additional.isImage">Is an image:</label>
<label index="tt_products.additional.alwaysInStock">always in stock:</label>
<label index="tt_products.additional.noMinPrice">no minimum price:</label>
<label index="tt_products.additional.noMaxPrice">no maximum price:</label>
<label index="tt_products.additional.noGiftService">no gift service:</label>
<label index="tt_products.creditpoints">credit points</label>
<label index="tt_products.damcat">DAM category for product:</label>
<label index="tt_products.syscat">System category for product:</label>
<label index="tt_products.special_preparation">Special Preparation:</label>
<label index="tt_products.articles">Articles </label>
<label index="tt_products.graduated">Graduated Prices</label>
<label index="tt_products.subtitle">Subtitle </label>
<label index="tt_products.keyword">Keywords (,): </label>
<label index="tt_products.variants">Variants </label>
<label index="tt_products.extravariants">Extra Variants </label>
<label index="tt_products.relations">Relations </label>
<label index="tt_products.smallimage">Small image</label>
<label index="tt_products.shippingdiv">Shipping </label>
<label index="tt_products.shipping">shipping costs for first item</label>
<label index="tt_products.shipping2">shipping costs for each additional item</label>
<label index="tt_products.handling">fee for handling</label>
<label index="tt_products.delivery">delivery:</label>
<label index="tt_products.delivery.availableNot">not available</label>
<label index="tt_products.delivery.availableImmediate">immediate delivery</label>
<label index="tt_products.delivery.availableShort">soon available</label>
<label index="tt_products.delivery.availableDemand">only on demand</label>
<label index="tt_products.categorydiv">Categories </label>
<label index="tt_products.download_type">internal download type:</label>
<label index="tt_products.download_uid">Downloads</label>
<label index="tt_products.download_info">Information required from the download</label>
<label index="tt_products.download_info.limitedToDomain">limited to a domain</label>
<label index="tt_products.title">Name:</label>
<label index="tt_products.sellstarttime">Starttime for selling:</label>
<label index="tt_products.sellendtime">Endtime for selling:</label>
<label index="tt_products_language">Products (alternative language)</label>
<label index="tt_products_language.prod_uid">Product record</label>
<label index="tt_products_language.sys_language_uid">Language</label>
<label index="tt_products_language.text_uid">Additional texts:</label>
<label index="tt_products_language.datasheet">Datasheet</label>
<label index="tt_products_cat">Product categories</label>
<label index="tt_products_cat.catid">Category Identifier</label>
<label index="tt_products_cat.email_uid">Confirmation email</label>
<label index="tt_products_cat.discount">Possible Discount:</label>
<label index="tt_products_cat.discount_disable">Disable Discount:</label>
<label index="tt_products_cat.highlight">Highlight</label>
<label index="tt_products_cat.sliderimage">Slider Image</label>
<label index="tt_products_cat.parent_category">Parent category</label>
<label index="tt_products_cat_language">Product category (alternative language)</label>
<label index="tt_products_cat_language.sys_language_uid">Language</label>
<label index="tt_products_cat_language.cat_uid">Product category record</label>
<label index="tt_products_articles">Product articles</label>
<label index="tt_products_articles.uid_product">Product</label>
<label index="tt_products_articles.config_type">internal config type:</label>
<label index="tt_products_articles.config">Configuration:</label>
<label index="tt_products_articles.config.isaddedprice">price is added</label>
<label index="tt_products_articles.graduated_config_type">internal graduated config type:</label>
<label index="tt_products_articles.graduated_config">Graduated Price Configuration:</label>
<label index="tt_products_articles.graduated_config.addParentProductCount">Add the product counts of the parent product</label>
<label index="tt_products_articles_language">Product articles (alternative language)</label>
<label index="tt_products_articles_language.article_uid">Product article</label>
<label index="tt_products_attribute_mm_graduated_price">Relation product attributes to gradutated prices</label>
<label index="tt_products_attribute_mm_graduated_price.uid_local">Product attribute using it.</label>
<label index="tt_products_attribute_mm_graduated_price.uid_foreign">Price formula.</label>
<label index="tt_products_emails">Products emails</label>
<label index="tt_products_emails.suffix">Template Suffix</label>
<label index="tt_products_texts">Product texts</label>
<label index="tt_products_texts.marker">Marker</label>
<label index="tt_products_texts.parentid">Parent product</label>
<label index="tt_products_texts.parenttable">Parent table</label>
<label index="tt_products_texts_language">Product texts (alternative language)</label>
<label index="tt_products_texts_language.text_uid">Parent text</label>
<label index="tt_products_texts_language.sys_language_uid">Language</label>
<label index="tt_products_texts_language.parentid">Parent product (alternative language)</label>
<label index="tt_products_texts_language.parenttable">Parent table</label>
<label index="tt_products_downloads">Product Downloads</label>
<label index="tt_products_downloads.title">Title</label>
<label index="tt_products_downloads.marker">Marker</label>
<label index="tt_products_downloads.path">Path</label>
<label index="tt_products_downloads.file_uid">Files</label>
<label index="tt_products_downloads.author">Author</label>
<label index="tt_products_downloads.edition">Edition</label>
<label index="tt_products_downloads.edition.complete">Complete</label>
<label index="tt_products_downloads.edition.partial">Partial</label>
<label index="tt_products_downloads.price_enable">Enable the Price</label>
<label index="tt_products_downloads.price">Price</label>
<label index="tt_products_downloads_language">Product Downloads (alternative language)</label>
<label index="tt_products_downloads_language.parent_uid">Parent download</label>
<label index="tt_products_downloads_language.sys_language_uid">Language</label>
<label index="tt_products_products_mm_tax_categories">Relation products to tax categories</label>
<label index="tt_products_products_mm_downloads">Relation products to downloads</label>
<label index="tt_products_products_mm_downloads.uid_local">Product using it</label>
<label index="tt_products_products_mm_downloads.uid_foreign">Download for it</label>
<label index="tt_products_mm_graduated_price">Relation products to gradutated prices</label>
<label index="tt_products_mm_graduated_price.product_uid">Product using it.</label>
<label index="tt_products_mm_graduated_price.graduated_price_uid">Price formula.</label>
<label index="tt_products_products_mm_articles">Relation products to articles</label>
<label index="tt_products_products_mm_articles.product_uid">Product using it</label>
<label index="tt_products_products_mm_articles.article_uid">Article</label>
<label index="tt_products_related_products_products_mm">Relation products to related products</label>
<label index="tt_products_related_products_products_mm.uid_local">Origin Product</label>
<label index="tt_products_related_products_products_mm.uid_foreign">Related Product</label>
<label index="tt_products_accessory_products_products_mm">Relation products to accessory products</label>
<label index="tt_products_accessory_products_products_mm.uid_local">Origin Product</label>
<label index="tt_products_accessory_products_products_mm.uid_foreign">Accessory Product</label>
<label index="tt_products_mm_graduated_price.product_uid">Product using it.</label>
<label index="tt_products_mm_graduated_price.graduated_price_uid">Price formula.</label>
<label index="tt_products_graduated_price">Graduated prices</label>
<label index="tt_products_graduated_price.formula">Price formula:</label>
<label index="tt_products_graduated_price.startamount">Start amount of items:</label>
<label index="tt_products_graduated_price.items">Items</label>
<label index="tt_products_graduated_price.starttime">valid from</label>
<label index="tt_products_graduated_price.endtime">valid until</label>
<label index="sys_file_reference.tx_ttproducts_author">Author</label>
<label index="sys_file_reference.tx_ttproducts_startpoint">Start Point</label>
<label index="sys_file_reference.tx_ttproducts_endpoint">End Point</label>
<label index="sys_file_reference.tx_ttproducts_price_enable">Enable the Price</label>
<label index="sys_file_reference.tx_ttproducts_price">Price</label>
<label index="sys_file_reference.shopAttributes">Shop Attributes</label>
<label index="sys_products_cards">Credit cards for orders</label>
<label index="sys_products_cards.owner_name">owner name</label>
<label index="sys_products_cards.cc_number">number</label>
<label index="sys_products_cards.cc_number_1">number part 1</label>
<label index="sys_products_cards.cc_number_2">number part 2</label>
<label index="sys_products_cards.cc_number_3">number part 3</label>
<label index="sys_products_cards.cc_number_4">number part 4</label>
<label index="sys_products_cards.cc_type">organization</label>
<label index="sys_products_cards.cc_type.I.0">American Express</label>
<label index="sys_products_cards.cc_type.I.1">Diners Club</label>
<label index="sys_products_cards.cc_type.I.2">Mastercard</label>
<label index="sys_products_cards.cc_type.I.3">Visa</label>
<label index="sys_products_cards.cvv2">Card Security Code</label>
<label index="sys_products_cards.endtime_mm">Card endtime: month</label>
<label index="sys_products_cards.endtime_yy">Card endtime: year</label>
<label index="sys_products_accounts">Bank accounts for orders</label>
<label index="sys_products_accounts.owner_name">owner name</label>
<label index="sys_products_accounts.ac_number">account number</label>
<label index="sys_products_accounts.bic">bank identifier code</label>
<label index="sys_products_accounts.iban">IBAN</label>
<label index="sys_products_orders">Sys products orders</label>
<label index="sys_products_orders.payment">payment</label>
<label index="sys_products_orders.shipping">shipping</label>
<label index="sys_products_orders.amount">amount</label>
<label index="sys_products_orders.tax_mode">tax mode</label>
<label index="sys_products_orders.tax_mode.I.0">taxed</label>
<label index="sys_products_orders.tax_mode.I.1">duty free</label>
<label index="sys_products_orders.pay_mode">payment mode</label>
<label index="sys_products_orders.pay_mode.I.0">unpaid</label>
<label index="sys_products_orders.pay_mode.I.1">bank transfer</label>
<label index="sys_products_orders.pay_mode.I.2">credit card</label>
<label index="sys_products_orders.pay_mode.I.3">cash</label>
<label index="sys_products_orders.pay_mode.I.4">Paypal</label>
<label index="sys_products_orders.pay_mode.I.5">Saferpay</label>
<label index="sys_products_orders.pay_mode.I.6">iPayment</label>
<label index="sys_products_orders.pay_mode.I.7">Payone</label>
<label index="sys_products_orders.pay_mode.I.8">ClickandBuy</label>
<label index="sys_products_orders.pay_mode.I.9">vrepay</label>
<label index="sys_products_orders.pay_mode.I.10">Authorize.net</label>
<label index="sys_products_orders.pay_mode.I.11">Arrangement</label>
<label index="sys_products_orders.pay_mode.I.12">Concardis</label>
<label index="sys_products_orders.pay_mode.I.13">Dibs</label>
<label index="sys_products_orders.pay_mode.I.14">Sofortueberweisung</label>
<label index="sys_products_orders.pay_mode.I.15">Stripe</label>
<label index="sys_products_orders.pay_mode.I.16">Expercash</label>
<label index="sys_products_orders.pay_mode.I.17">Paymill</label>
<label index="sys_products_orders.email_notify">email notification</label>
<label index="sys_products_orders.tracking_code">tracking code</label>
<label index="sys_products_orders.status">status</label>
<label index="sys_products_orders.status_log">status_log</label>
<label index="sys_products_orders.orderData">order data</label>
<label index="sys_products_orders.orderHtml">Order Html</label>
<label index="sys_products_orders.orderHtmlDiv">Html</label>
<label index="sys_products_orders.agb">agb</label>
<label index="sys_products_orders.feusers_uid">frontend user</label>
<label index="sys_products_orders.creditpoints">credit points</label>
<label index="sys_products_orders.creditpoints_spended">spended creditpoints</label>
<label index="sys_products_orders.creditpoints_saved">saved creditpoints</label>
<label index="sys_products_orders.creditpoints_gifts">gifts creditpoints</label>
<label index="sys_products_orders.desired_date">desired date</label>
<label index="sys_products_orders.desired_time">desired time</label>
<label index="sys_products_orders.client_ip">used IP address</label>
<label index="sys_products_orders.vat_id">EU VAT number</label>
<label index="sys_products_orders.salutation">salutation</label>
<label index="sys_products_orders.salutation.I.0">Mr.</label>
<label index="sys_products_orders.salutation.I.1">Mrs.</label>
<label index="sys_products_orders.salutation.I.2">Company.</label>
<label index="sys_products_orders.salutation.I.3">To</label>
<label index="sys_products_orders.foundby">found by</label>
<label index="sys_products_orders.foundby.I.0">undefined</label>
<label index="sys_products_orders.foundby.I.1">company 1</label>
<label index="sys_products_orders.foundby.I.2">company 2</label>
<label index="sys_products_orders.foundby.I.3">friends and acquaintances</label>
<label index="sys_products_orders.foundby.I.4">internet search engine</label>
<label index="sys_products_orders.foundby.I.5">newspaper</label>
<label index="sys_products_orders.foundby.I.6">others</label>
<label index="sys_products_orders.first_name">first name</label>
<label index="sys_products_orders.last_name">last name</label>
<label index="sys_products_orders.address">street / address</label>
<label index="sys_products_orders.house_no">house number</label>
<label index="sys_products_orders.order_code">Order code</label>
<label index="sys_products_orders.date_of_birth">Date of birth</label>
<label index="sys_products_orders.date_of_payment">Date of payment</label>
<label index="sys_products_orders.date_of_delivery">Date of delivery</label>
<label index="sys_products_orders.bill_no">Bill number</label>
<label index="sys_products_orders.radio1">checked items</label>
<label index="sys_products_orders.radio1.I.0">nothing checked</label>
<label index="sys_products_orders.radio1.I.1">checked 1</label>
<label index="sys_products_orders.radio1.I.2">checked 2</label>
<label index="sys_products_orders.giftservice">Gift service</label>
<label index="sys_products_orders.ordered_products">Bought products</label>
<label index="sys_products_orders.fal_uid">Bought files</label>
<label index="sys_products_orders.gained_uid">Gained products</label>
<label index="sys_products_orders.gained_voucher">Gained voucher codes</label>
<label index="sys_products_orders_mm_gained_voucher_codes">Relations Order to Voucher Code</label>
<label index="sys_products_orders_mm_gained_voucher_codes.uid_local">Order</label>
<label index="sys_products_orders_mm_gained_voucher_codes.uid_foreign">Voucher</label>
<label index="fe_groups.tt_products_discount">Discount</label>
<label index="fe_users.cnum">Customer Number:</label>
<label index="fe_users.static_info_country">Country Code:</label>
<label index="fe_users.zone">State/province:</label>
<label index="fe_users.tt_products_memoItems">Memo Items</label>
<label index="fe_users.tt_products_memodam">Memo DAM</label>
<label index="fe_users.tt_products_discount">Discount</label>
<label index="fe_users.tt_products_creditpoints">Creditpoints</label>
<label index="fe_users.tt_products_vouchercode">Vouchercode</label>
<label index="fe_users.tt_products_vat">EU VAT number</label>
<label index="fe_users.tt_products_payment_bill">Allow payment by bill</label>
<label index="fe_users.tt_products_business_partner">Business Partner</label>
<label index="fe_users.tt_products_business_partner.I.0">Private Customer</label>
<label index="fe_users.tt_products_business_partner.I.1">Business Customer</label>
<label index="fe_users.tt_products_organisation_form">Form of Organisation</label>
<label index="fe_users.tt_products_organisation_form.A1">Aktiengesellschaft</label>
<label index="fe_users.tt_products_organisation_form.A2">Aktiengesellschaft & Co. KG</label>
<label index="fe_users.tt_products_organisation_form.A3">Aktiengesellschaft & Co. OHG</label>
<label index="fe_users.tt_products_organisation_form.BH">Kommunalverwaltung</label>
<label index="fe_users.tt_products_organisation_form.E1">Eingetragene Genossenschaft</label>
<label index="fe_users.tt_products_organisation_form.E2">Eingetragener Verein</label>
<label index="fe_users.tt_products_organisation_form.E3">Einzelunternehmen</label>
<label index="fe_users.tt_products_organisation_form.E4">Eingetragener Kaufmann</label>
<label index="fe_users.tt_products_organisation_form.G1">Ges. bürgerlichen Rechts</label>
<label index="fe_users.tt_products_organisation_form.G2">GmbH</label>
<label index="fe_users.tt_products_organisation_form.G3">GmbH & Co.</label>
<label index="fe_users.tt_products_organisation_form.G4">GmbH & Co. KG</label>
<label index="fe_users.tt_products_organisation_form.G5">GmbH & Co. OHG</label>
<label index="fe_users.tt_products_organisation_form.G6">GmbH gemeinschaftlich</label>
<label index="fe_users.tt_products_organisation_form.G7">Gemeinnützige GmbH (gGmbH)</label>
<label index="fe_users.tt_products_organisation_form.K2">Kommanditgesellsch. auf Aktien</label>
<label index="fe_users.tt_products_organisation_form.K3">KG auf Aktien & Co. KG</label>
<label index="fe_users.tt_products_organisation_form.KG">Kommanditgesellschaft</label>
<label index="fe_users.tt_products_organisation_form.KO">Körperschaft öffentl. Rechts</label>
<label index="fe_users.tt_products_organisation_form.O1">Offene Handelsgesellschaft</label>
<label index="fe_users.tt_products_organisation_form.P">Privatperson</label>
<label index="fe_users.tt_products_organisation_form.S1">Stiftung Öffentlichen Rechts</label>
<label index="fe_users.tt_products_organisation_form.S2">Stiftung Privaten Rechts</label>
<label index="fe_users.tt_products_organisation_form.S3">Stiftung & Co. Handels KG</label>
<label index="fe_users.tt_products_organisation_form.U">Rechtsform klären</label>
<label index="fe_users.tt_products_organisation_form.V1">Versicherungsverein a. Gegens.</label>
<label index="fe_users.tt_products_organisation_form.Z1">Ausländische Rechtsformen</label>
<label index="fe_users.tt_products_vat">EU VAT number</label>
<label index="tt_content.list_type_pi1">Shop System</label>
<label index="tt_content.pi_flexform.param_mode">Parameter: mode</label>
<label index="tt_content.pi_flexform.param_mode.0">0</label>
<label index="tt_content.pi_flexform.param_mode.1">1</label>
<label index="tt_content.pi_flexform.param_mode.2">2</label>
<label index="tt_content.pi_flexform.param_mode.3">3</label>
<label index="tt_content.pi_flexform.display_mode">Display mode</label>
<label index="tt_content.pi_flexform.display_mode.1">Products: list</label>
<label index="tt_content.pi_flexform.display_mode.2">Products: list gifts</label>
<label index="tt_content.pi_flexform.display_mode.3">Products: list highlights</label>
<label index="tt_content.pi_flexform.display_mode.4">Products: list offers</label>
<label index="tt_content.pi_flexform.display_mode.5">Products: list new items</label>
<label index="tt_content.pi_flexform.display_mode.6">Products: single view</label>
<label index="tt_content.pi_flexform.display_mode.7">Products: search</label>
<label index="tt_content.pi_flexform.display_mode.8">Test: various</label>
<label index="tt_content.pi_flexform.display_mode.9">Basket: shopping cart, options</label>
<label index="tt_content.pi_flexform.display_mode.10">Basket: overview</label>
<label index="tt_content.pi_flexform.display_mode.11">Basket: collect addresses</label>
<label index="tt_content.pi_flexform.display_mode.12">Basket: order review, payment</label>
<label index="tt_content.pi_flexform.display_mode.13">Basket: order confirmation</label>
<label index="tt_content.pi_flexform.display_mode.14">Orders: tracking</label>
<label index="tt_content.pi_flexform.display_mode.15">Orders: billing</label>
<label index="tt_content.pi_flexform.display_mode.16">Orders: delivery</label>
<label index="tt_content.pi_flexform.display_mode.17">Orders: list</label>
<label index="tt_content.pi_flexform.display_mode.18">Products: memo</label>
<label index="tt_content.pi_flexform.display_mode.19">General: help</label>
<label index="tt_content.pi_flexform.display_mode.20">Categories: list</label>
<label index="tt_content.pi_flexform.display_mode.21">Articles: list</label>
<label index="tt_content.pi_flexform.display_mode.22">Categories: select</label>
<label index="tt_content.pi_flexform.display_mode.23">DAM: list</label>
<label index="tt_content.pi_flexform.display_mode.24">DAM Categories: list</label>
<label index="tt_content.pi_flexform.display_mode.25">Addresses: select</label>
<label index="tt_content.pi_flexform.display_mode.26">Addresses: list</label>
<label index="tt_content.pi_flexform.display_mode.27">Categories: menu</label>
<label index="tt_content.pi_flexform.display_mode.28">Addresses: menu</label>
<label index="tt_content.pi_flexform.display_mode.29">DAM Categories: select</label>
<label index="tt_content.pi_flexform.display_mode.30">DAM Categories: menu</label>
<label index="tt_content.pi_flexform.display_mode.31">Categories: single</label>
<label index="tt_content.pi_flexform.display_mode.32">Addresses: single</label>
<label index="tt_content.pi_flexform.display_mode.33">DAM Categories: single</label>
<label index="tt_content.pi_flexform.display_mode.34">DAM: memo</label>
<label index="tt_content.pi_flexform.display_mode.35">DAM: memo overview</label>
<label index="tt_content.pi_flexform.display_mode.36"></label>
<label index="tt_content.pi_flexform.display_mode.37">User: plugin 1 for external extension</label>
<label index="tt_content.pi_flexform.display_mode.38">User: plugin 2 for external extension</label>
<label index="tt_content.pi_flexform.display_mode.39">User: plugin 3 for external extension</label>
<label index="tt_content.pi_flexform.display_mode.40">User: plugin 4 for external extension</label>
<label index="tt_content.pi_flexform.display_mode.41">User: plugin 5 for external extension</label>
<label index="tt_content.pi_flexform.display_mode.42">Products: list recently visited items</label>
<label index="tt_content.pi_flexform.display_mode.43">Products: list mostly visited</label>
<label index="tt_content.pi_flexform.display_mode.44">Products: list all users mostly visited</label>
<label index="tt_content.pi_flexform.display_mode.45">Products: list affordable items</label>
<label index="tt_content.pi_flexform.display_mode.46">Orders: downloads</label>
<label index="tt_content.pi_flexform.display_mode.unused">Unused</label>
<label index="tt_content.pi_flexform.product_selection">Product selection</label>
<label index="tt_content.pi_flexform.category_selection">Category selection</label>
<label index="tt_content.pi_flexform.required_pivars">Required parameters</label>
<label index="tt_content.pi_flexform.required_pivars.1"> </label>
<label index="tt_content.pi_flexform.required_pivars.2">Product</label>
<label index="tt_content.pi_flexform.required_pivars.3">Category</label>
<label index="tt_content.pi_flexform.required_pivars.4">DAM (deprecated)</label>
<label index="tt_content.pi_flexform.required_pivars.5">DAM-category (deprecated)</label>
<label index="tt_content.pi_flexform.required_pivars.6">Address</label>
<label index="tt_content.pi_flexform.required_pivars.7">Language</label>
<label index="tt_content.pi_flexform.required_pivars.8">Search</label>
<label index="tt_content.pi_flexform.template_suffix">Template suffix</label>
<label index="tt_content.pi_flexform.product_where">Product: WHERE</label>
<label index="tt_content.pi_flexform.dam_where">DAM: WHERE</label>
<label index="tt_content.pi_flexform.dam_group_by">DAM: GROUP BY</label>
<label index="tt_content.pi_flexform.dam_join_tables">DAM: JOIN tables</label>
<label index="tt_content.pi_flexform.tsconfig">Typoscript</label>
</languageKey>
<languageKey index="de" type="array">
<label index="tstamp">Zeitstempel</label>
<label index="crdate">Bestelldatum</label>
<label index="tt_products">Produkte</label>
<label index="tt_products.prod_uid">Template Produkte</label>
<label index="tt_products.accessory_uid">Zubehör</label>
<label index="tt_products.related_uid">verwandte Produkte</label>
<label index="tt_products.directcost">Einkaufspreis:</label>
<label index="tt_products.regular_price">Regulärer Preis:</label>
<label index="tt_products.price">Preis:</label>
<label index="tt_products.price2">Preis (2):</label>
<label index="tt_products.discount">Möglicher Rabatt:</label>
<label index="tt_products.discount_disable">kein Rabatt:</label>
<label index="tt_products.unit">Maßeinheit:</label>
<label index="tt_products.unit_factor">Faktor der Maßeinheit:</label>
<label index="tt_products.graduated_price_enable">Staffelpreise einschalten:</label>
<label index="tt_products.graduated_price_round">Rundungsformat für Staffelpreise:</label>
<label index="tt_products.graduated_price_uid">Staffelpreise:</label>
<label index="tt_products.article_uid">Artikel:</label>
<label index="tt_products.note_uid">beschreibende Seiten:</label>
<label index="tt_products.note">Beschreibung</label>
<label index="tt_products.note2">Kommentar</label>
<label index="tt_products.text_uid">zusätzliche Texte</label>
<label index="tt_products.itemnumber">Artikel Nr.:</label>
<label index="tt_products.ean">EAN Code:</label>
<label index="tt_products.shipping_point">Versandstelle:</label>
<label index="tt_products.inStock">Am Lager (St.):</label>
<label index="tt_products.basketminquantity">Mindestbestellmenge im Warenkorb:</label>
<label index="tt_products.basketmaxquantity">Maximalbestellmenge im Warenkorb:</label>
<label index="tt_products.datasheet">Datenblatt:</label>
<label index="tt_products.tax">MwSt:</label>
<label index="tt_products.deposit">Pfand:</label>
<label index="tt_products.weight">Gewicht (kg):</label>
<label index="tt_products.usebydate">Haltbarkeitsdatum:</label>
<label index="tt_products.bulkily">Sperrig:</label>
<label index="tt_products.offer">Aktion:</label>
<label index="tt_products.highlight">Besonderheit:</label>
<label index="tt_products.bargain">Schnäppchen:</label>
<label index="tt_products.color">Farbe (Variante 1):</label>
<label index="tt_products.color2">2. Farbe (Variante 6):</label>
<label index="tt_products.color3">3. Farbe (Variante 7):</label>
<label index="tt_products.color4">4. Farbe (Variant 12):</label>
<label index="tt_products.size">Größe Länge (Variante 2):</label>
<label index="tt_products.size2">2. Größe Breite (Variante 8):</label>
<label index="tt_products.size3">3. Größe Höhe (Variante 9):</label>
<label index="tt_products.size4">4. Größe (Variant 13):</label>
<label index="tt_products.description">Beschreibung (Variante 3):</label>
<label index="tt_products.description2">2. Beschreibung (Variant 14):</label>
<label index="tt_products.description3">3. Beschreibung (Variant 15):</label>
<label index="tt_products.descriptions">Beschreibungen </label>
<label index="tt_products.gradings">Staffelungen (Variante 4):</label>
<label index="tt_products.material">Material (Variante 10):</label>
<label index="tt_products.quality">Qualität (Variante 11):</label>
<label index="tt_products.form">Form (Variant 16):</label>
<label index="tt_products.form2">2. Form (Variant 17):</label>
<label index="tt_products.type">Art (Variant 18):</label>
<label index="tt_products.pattern">Muster (Variant 19):</label>
<label index="tt_products.surface">Oberfläche (Variant 20):</label>
<label index="tt_products.angular">Winkel (Variant 21):</label>
<label index="tt_products.time">Zeit (Variant 22):</label>
<label index="tt_products.time2">2. Zeit (Variant 23):</label>
<label index="tt_products.guarantee">Garantie (Variant 24):</label>
<label index="tt_products.elements">Elemente (Variant 25):</label>
<label index="tt_products.boundary">Umgebung (Variant 26):</label>
<label index="tt_products.costs">Kosten (Variant 27):</label>
<label index="tt_products.additionaltab">Zusatz</label>
<label index="tt_products.additional">Zusätzliches (Variante 5):</label>
<label index="tt_products.additional.isSingle">nur einzeln:</label>
<label index="tt_products.additional.isImage">ist ein Bild:</label>
<label index="tt_products.additional.alwaysInStock">immer auf Lager:</label>
<label index="tt_products.additional.noMinPrice">kein Mindestbestellwert:</label>
<label index="tt_products.additional.noMaxPrice">kein Maximalbestellwert:</label>
<label index="tt_products.additional.noGiftService">kein Geschenkservice:</label>
<label index="tt_products.creditpoints">Kontopunkte</label>
<label index="tt_products.damcat">DAM Kategorien für Produkt:</label>
<label index="tt_products.syscat">System Kategorien für Produkt:</label>
<label index="tt_products.special_preparation">Spezialanfertigung:</label>
<label index="tt_products.articles">Artikel </label>
<label index="tt_products.graduated">Staffelpreise</label>
<label index="tt_products.subtitle">Untertitel </label>
<label index="tt_products.keyword">Schlagwort (,): </label>
<label index="tt_products.variants">Varianten </label>
<label index="tt_products.extravariants">Extra Varianten </label>
<label index="tt_products.relations">Beziehungen </label>
<label index="tt_products.smallimage">Kleine Bilder</label>
<label index="tt_products.shippingdiv">Versand </label>
<label index="tt_products.shipping">Versandkosten für 1. Produkt</label>
<label index="tt_products.shipping2">Versandkosten für jedes weitere Produkt</label>
<label index="tt_products.handling">Bearbeitungsgebühr</label>
<label index="tt_products.download_info.limitedToDomain">Auf eine Domäne begrenzt</label>
<label index="tt_products.download_info">Vom Download benötigte Informationen</label>
<label index="tt_products.title">Name:</label>
<label index="tt_products.sellstarttime">Verkaufsstart:</label>
<label index="tt_products.sellendtime">Verkaufsende:</label>
<label index="tt_products.delivery">Lieferung:</label>
<label index="tt_products.delivery.availableNot">nicht lieferbar</label>
<label index="tt_products.delivery.availableImmediate">sofort lieferbar</label>
<label index="tt_products.delivery.availableShort">in kürze lieferbar</label>
<label index="tt_products.delivery.availableDemand">auf Kundenwunsch</label>
<label index="tt_products.categorydiv">Kategorien </label>
<label index="tt_products_language">Produkte (alternative Sprache)</label>
<label index="tt_products_language.prod_uid">Produkte Datensatz</label>
<label index="tt_products_language.sys_language_uid">Sprache</label>
<label index="tt_products_language.datasheet">Datenblatt</label>
<label index="tt_products_cat">Produkt Kategorie</label>
<label index="tt_products_cat.catid">Kategorie Identifizierungszeichen</label>
<label index="tt_products_cat.email_uid">Bestätigungsemail</label>
<label index="tt_products_cat.discount">Möglicher Rabatt:</label>
<label index="tt_products_cat.discount_disable">kein Rabatt:</label>
<label index="tt_products_cat.sliderimage">Slider Bild</label>
<label index="tt_products_cat_language">Produkt Kategorie (alternative Sprache)</label>
<label index="tt_products_cat_language.sys_language_uid">Sprache</label>
<label index="tt_products_cat_language.cat_uid">Produkt Kategorie Datensatz</label>
<label index="tt_products_articles">Produkt Artikel</label>
<label index="tt_products_articles.uid_product">Produkt</label>
<label index="tt_products_articles.config">Einstellungen:</label>
<label index="tt_products_articles.config.isaddedprice">Aufpreis</label>
<label index="tt_products_articles_language">Produkt Artikel (alternative Sprache)</label>
<label index="tt_products_articles_language.article_uid">Produkt Artikel</label>
<label index="tt_products_emails">Produkt Emails</label>
<label index="tt_products_texts">Produkt Texte</label>
<label index="tt_products_texts.parentid">Eltern Produkt</label>
<label index="tt_products_texts.parenttable">Eltern Tabelle</label>
<label index="tt_products_texts_language">Produkt Texte (alternative Sprache)</label>
<label index="tt_products_texts_language.text_uid">Eltern Text</label>
<label index="tt_products_texts_language.sys_language_uid">Sprache</label>
<label index="tt_products_downloads">Produkt herunterladbare Dateien</label>
<label index="tt_products_downloads.title">Titel</label>
<label index="tt_products_downloads.author">Autor</label>
<label index="tt_products_downloads.marker">Marker</label>
<label index="tt_products_downloads.path">Pfad</label>
<label index="tt_products_downloads.file_uid">Dateien</label>
<label index="tt_products_downloads.author">Autor</label>
<label index="tt_products_downloads.edition">Ausgabe</label>
<label index="tt_products_downloads.edition.complete">Gesamtausgabe</label>
<label index="tt_products_downloads.edition.partial">Teilausgabe</label>
<label index="tt_products_downloads.price_enable">Aktivieren des Preises</label>
<label index="tt_products_downloads.price">Preis</label>
<label index="tt_products_downloads_language">Produkt herunterladbare Dateien (alternative Sprache)</label>
<label index="tt_products_downloads_language.parent_uid">Eltern herunterladbare Dateien</label>
<label index="tt_products_downloads_language.sys_language_uid">Sprache</label>
<label index="tt_products_mm_graduated_price">Beziehung Produkte zu Staffelpreisen</label>
<label index="tt_products_mm_graduated_price.product_uid">Produkt zum Staffelpreis</label>
<label index="tt_products_mm_graduated_price.graduated_price_uid">Preisformel</label>
<label index="tt_products_products_mm_articles">Beziehung des Produktes zu Artikeln</label>
<label index="tt_products_products_mm_articles.product_uid">Produkt verwendet Artikel</label>
<label index="tt_products_products_mm_articles.article_uid">Artikel</label>
<label index="tt_products_related_products_products_mm">Beziehung eines Produktes zu zugewiesenen Produkten</label>
<label index="tt_products_related_products_products_mm.uid_local">Ausgangsprodukt</label>
<label index="tt_products_related_products_products_mm.uid_foreign">zugewiesenes Produkt</label>
<label index="tt_products_accessory_products_products_mm">Relation products to accessory products</label>
<label index="tt_products_accessory_products_products_mm.uid_local">Ausgangsprodukt</label>
<label index="tt_products_accessory_products_products_mm.uid_foreign">Zubehör Produkt</label>
<label index="tt_products_graduated_price">Staffelpreise</label>
<label index="tt_products_graduated_price.formula">Preisformel:</label>
<label index="tt_products_graduated_price.startamount">ab Menge:</label>
<label index="tt_products_graduated_price.items">Artikel</label>
<label index="tt_products_graduated_price.starttime">gültig ab</label>
<label index="tt_products_graduated_price.endtime">gültig bis</label>
<label index="sys_file_reference.tx_ttproducts_author">Author</label>
<label index="sys_file_reference.tx_ttproducts_startpoint">Startpunkt</label>
<label index="sys_file_reference.tx_ttproducts_endpoint">Endpunkt</label>
<label index="sys_file_reference.tx_ttproducts_price_enable">Enable the Price</label>
<label index="sys_file_reference.tx_ttproducts_price">Price</label>
<label index="sys_file_reference.shopAttributes">Shop Attribute</label>
<label index="sys_products_cards">Kreditkarten für Bestellungen</label>
<label index="sys_products_cards.owner_name">Name des Besitzers</label>
<label index="sys_products_cards.cc_number">Nummer</label>
<label index="sys_products_cards.cc_number_1">Nummer Teil 1</label>
<label index="sys_products_cards.cc_number_2">Nummer Teil 2</label>
<label index="sys_products_cards.cc_number_3">Nummer Teil 3</label>
<label index="sys_products_cards.cc_number_4">Nummer Teil 4</label>
<label index="sys_products_cards.cc_type">Organisation</label>
<label index="sys_products_cards.cvv2">Kartenprüfnummer</label>
<label index="sys_products_cards.endtime_mm">Kreditkarte Endedatum: Monat</label>
<label index="sys_products_cards.endtime_yy">Kreditkarte Endedatum: Jahr</label>
<label index="sys_products_accounts">Bankverbindungen für Bestellungen</label>
<label index="sys_products_accounts.owner_name">Name des Besitzers</label>
<label index="sys_products_accounts.ac_number">Kontonummer</label>
<label index="sys_products_accounts.bic">Bankleitzahl</label>
<label index="sys_products_orders">Sys Produkte Bestellungen</label>
<label index="sys_products_orders.payment">Bezahlung</label>
<label index="sys_products_orders.shipping">Versand</label>
<label index="sys_products_orders.amount">Betrag</label>
<label index="sys_products_orders.tax_mode">Steuerart</label>
<label index="sys_products_orders.tax_mode.I.0">versteuert</label>
<label index="sys_products_orders.tax_mode.I.1">steuerfrei</label>
<label index="sys_products_orders.pay_mode">Bezahl Modus</label>
<label index="sys_products_orders.pay_mode.I.0">nicht bezahlt</label>
<label index="sys_products_orders.pay_mode.I.1">Banküberweisung</label>
<label index="sys_products_orders.pay_mode.I.2">Kreditkarte</label>
<label index="sys_products_orders.pay_mode.I.3">bar</label>
<label index="sys_products_orders.pay_mode.I.11">Vereinbarung</label>
<label index="sys_products_orders.email_notify">Email Benachrichtigung</label>
<label index="sys_products_orders.tracking_code">Nachverfolgung Code</label>
<label index="sys_products_orders.status">Zustand</label>
<label index="sys_products_orders.status_log">Zustands Logdatei</label>
<label index="sys_products_orders.orderData">Bestelldaten</label>
<label index="sys_products_orders.orderHtml">Bestellung Html</label>
<label index="sys_products_orders.agb">AGB</label>
<label index="sys_products_orders.feusers_uid">Frontend Benutzer</label>
<label index="sys_products_orders.creditpoints">Kontopunkte</label>
<label index="sys_products_orders.creditpoints_spended">ausgegebene Kontopunkte</label>
<label index="sys_products_orders.creditpoints_saved">erhaltene Kontopunkte</label>
<label index="sys_products_orders.creditpoints_gifts">Geschenke Kontopunkte</label>
<label index="sys_products_orders.desired_date">gewünschtes Zustelldatum</label>
<label index="sys_products_orders.desired_time">gewünschte Zustellzeit</label>
<label index="sys_products_orders.client_ip">verwendete IP Adresse</label>
<label index="sys_products_orders.vat_id">EU USt. - Identifikationsnummer</label>
<label index="sys_products_orders.salutation">Anrede</label>
<label index="sys_products_orders.salutation.I.0">Herr</label>
<label index="sys_products_orders.salutation.I.1">Frau</label>
<label index="sys_products_orders.salutation.I.2">Firma</label>
<label index="sys_products_orders.salutation.I.3">An</label>
<label index="sys_products_orders.foundby">gefunden durch</label>
<label index="sys_products_orders.foundby.I.0">keine Angabe</label>
<label index="sys_products_orders.foundby.I.1">Firma 1</label>
<label index="sys_products_orders.foundby.I.2">Firma 2</label>
<label index="sys_products_orders.foundby.I.3">Freunde und Bekannte</label>
<label index="sys_products_orders.foundby.I.4">Internet Suchmaschine</label>
<label index="sys_products_orders.foundby.I.5">Zeitung</label>
<label index="sys_products_orders.foundby.I.6">Sonstiges</label>
<label index="sys_products_orders.first_name">Vorname</label>
<label index="sys_products_orders.last_name">Nachname</label>
<label index="sys_products_orders.address">Straße / Adresse</label>
<label index="sys_products_orders.house_no">Hausnummer</label>
<label index="sys_products_orders.order_code">Bestell-Code</label>
<label index="sys_products_orders.date_of_birth">Geburtsdatum</label>
<label index="sys_products_orders.date_of_payment">Datum der Bezahlung</label>
<label index="sys_products_orders.date_of_delivery">Datum des Versands</label>
<label index="sys_products_orders.bill_no">Rechnungs Nummer</label>
<label index="sys_products_orders.radio1">ausgewählte Punkte</label>
<label index="sys_products_orders.radio1.I.0">kein Punkt</label>
<label index="sys_products_orders.radio1.I.1">Punkt 1</label>
<label index="sys_products_orders.radio1.I.2">Punkt 2</label>
<label index="sys_products_orders.giftservice">Geschenk Service</label>
<label index="sys_products_orders.ordered_products">Gekaufte Produkte</label>
<label index="sys_products_orders.fal_uid">Gekaufte Dateien</label>
<label index="sys_products_orders.gained_uid">Gewonnene Produkte</label>
<label index="fe_users.cnum">Kundennummer:</label>
<label index="fe_users.static_info_country">Ländercode:</label>
<label index="fe_users.zone">Bundesland:</label>
<label index="fe_users.tt_products_memoItems">Produkt Merkliste</label>
<label index="fe_users.tt_products_memodam">DAM Merkliste</label>
<label index="fe_users.tt_products_discount">Rabatt</label>
<label index="fe_users.tt_products_creditpoints">Kontopunkte</label>
<label index="fe_users.tt_products_vouchercode">Gutschein Code</label>
<label index="fe_users.tt_products_vat">EU USt. - Identifikationsnummer</label>
<label index="fe_users.tt_products_payment_bill">Erlaube Bezahlung über Rechnung</label>
<label index="fe_users.tt_products_business_partner">Geschäftspartner</label>
<label index="fe_users.tt_products_business_partner.I.0">Privatkunde</label>
<label index="fe_users.tt_products_business_partner.I.1">Geschäftskunde</label>
<label index="fe_users.tt_products_organisation_form">Rechtsform</label>
<label index="tt_content.list_type_pi1">Shop System</label>
<label index="tt_content.pi_flexform.param_mode">Modus im Setup</label>
<label index="tt_content.pi_flexform.display_mode">Anzeigetyp</label>
<label index="tt_content.pi_flexform.display_mode.1">Produkte: Liste</label>
<label index="tt_content.pi_flexform.display_mode.2">Produkte: Liste Geschenke</label>
<label index="tt_content.pi_flexform.display_mode.3">Produkte: Liste Highlights</label>
<label index="tt_content.pi_flexform.display_mode.4">Produkte: Liste Aktionen</label>
<label index="tt_content.pi_flexform.display_mode.5">Produkte: Liste Neue Artikel</label>
<label index="tt_content.pi_flexform.display_mode.6">Produkte: Einzelansicht</label>
<label index="tt_content.pi_flexform.display_mode.7">Produkte: Suche</label>
<label index="tt_content.pi_flexform.display_mode.8">Test: Verschiedenes</label>
<label index="tt_content.pi_flexform.display_mode.9">Warenkorb: Inhalt</label>
<label index="tt_content.pi_flexform.display_mode.10">Warenkorb: Miniformat</label>
<label index="tt_content.pi_flexform.display_mode.11">Warenkorb: Eingabe Kundendaten</label>
<label index="tt_content.pi_flexform.display_mode.12">Warenkorb: Kontrolle und Bezahlung</label>
<label index="tt_content.pi_flexform.display_mode.13">Warenkorb: Bestellung abschließen</label>
<label index="tt_content.pi_flexform.display_mode.14">Bestellung: Verwaltung</label>
<label index="tt_content.pi_flexform.display_mode.15">Bestellung: Rechnung</label>
<label index="tt_content.pi_flexform.display_mode.16">Bestellung: Lieferschein</label>
<label index="tt_content.pi_flexform.display_mode.17">Bestellung: Liste</label>
<label index="tt_content.pi_flexform.display_mode.18">Produkte: Merkliste</label>
<label index="tt_content.pi_flexform.display_mode.19">Allgemein: Hilfe</label>
<label index="tt_content.pi_flexform.display_mode.20">Kategorien: Liste</label>
<label index="tt_content.pi_flexform.display_mode.21">Artikel: Liste</label>
<label index="tt_content.pi_flexform.display_mode.22">Kategorien: Auswahl</label>
<label index="tt_content.pi_flexform.display_mode.23">DAM: Liste</label>
<label index="tt_content.pi_flexform.display_mode.24">DAM Kategorien: Liste</label>
<label index="tt_content.pi_flexform.display_mode.25">Adressen: Auswahl</label>
<label index="tt_content.pi_flexform.display_mode.26">Addressen: Liste</label>
<label index="tt_content.pi_flexform.display_mode.27">Kategorien: Menü</label>
<label index="tt_content.pi_flexform.display_mode.28">Adressen: Menü</label>
<label index="tt_content.pi_flexform.display_mode.29">DAM Kategorien: Auswahl</label>
<label index="tt_content.pi_flexform.display_mode.30">DAM Kategorien: Menü</label>
<label index="tt_content.pi_flexform.display_mode.31">Kategorien: Einzelansicht</label>
<label index="tt_content.pi_flexform.display_mode.32">Addressen: Einzelansicht</label>
<label index="tt_content.pi_flexform.display_mode.33">DAM Kategorien: Einzelansicht</label>
<label index="tt_content.pi_flexform.display_mode.34">DAM: Merkliste</label>
<label index="tt_content.pi_flexform.display_mode.35">DAM: Merkliste Miniformat</label>
<label index="tt_content.pi_flexform.display_mode.36"></label>
<label index="tt_content.pi_flexform.display_mode.37">Benutzer: Plugin 1 für andere Extension</label>
<label index="tt_content.pi_flexform.display_mode.38">Benutzer: Plugin 2 für andere Extension</label>
<label index="tt_content.pi_flexform.display_mode.39">Benutzer: Plugin 3 für andere Extension</label>
<label index="tt_content.pi_flexform.display_mode.40">Benutzer: Plugin 4 für andere Extension</label>
<label index="tt_content.pi_flexform.display_mode.41">Benutzer: Plugin 5 für andere Extension</label>
<label index="tt_content.pi_flexform.display_mode.42">Produkte: Liste zuletzt besuchte</label>
<label index="tt_content.pi_flexform.display_mode.43">Produkte: Liste am meisten besuchte (Benutzer)</label>
<label index="tt_content.pi_flexform.display_mode.44">Produkte: Liste am meisten besuchte (alle)</label>
<label index="tt_content.pi_flexform.display_mode.45">Produkte: Liste leistbare</label>
<label index="tt_content.pi_flexform.display_mode.46">Bestellung: Herunterladbares</label>
<label index="tt_content.pi_flexform.category_selection">Kategorieauswahl</label>
<label index="tt_content.pi_flexform.required_pivars">Verlangte Parameter</label>
<label index="tt_content.pi_flexform.required_pivars.2">Produkt</label>
<label index="tt_content.pi_flexform.required_pivars.3">Kategorie</label>
<label index="tt_content.pi_flexform.required_pivars.4">DAM (veraltet)</label>
<label index="tt_content.pi_flexform.required_pivars.5">DAM-Kategorie (veraltet)</label>
<label index="tt_content.pi_flexform.required_pivars.6">Adresse</label>
<label index="tt_content.pi_flexform.required_pivars.7">Sprache</label>
<label index="tt_content.pi_flexform.required_pivars.8">Suche</label>
<label index="tt_content.pi_flexform.template_suffix">Template Suffix</label>
<label index="tt_content.pi_flexform.product_where">Produkt: WHERE</label>
<label index="tt_content.pi_flexform.dam_join_tables">DAM: JOIN Tabellen</label>
</languageKey>
<languageKey index="dk" type="array">
<label index="tt_products">Produkter</label>
<label index="tt_products.price">Pris:</label>
<label index="tt_products.price2">Pris (2):</label>
<label index="tt_products.unit">Måleenhed</label>
<label index="tt_products.unit_factor">Enheder</label>
<label index="tt_products.itemnumber">Varenummer:</label>
<label index="tt_products.inStock">På lager (antal):</label>
<label index="tt_products.datasheet">Datablad</label>
<label index="tt_products.www">WWW URL</label>
<label index="tt_products.tax">Skat:</label>
<label index="tt_products.weight">Vægt (kg):</label>
<label index="tt_products.bulkily">Overstørrelse:</label>
<label index="tt_products.offer">Tilbud:</label>
<label index="tt_products.highlight">Highlight:</label>
<label index="tt_products.directcost">Indkøbspris:</label>
<label index="tt_products.color">Farve (Variant 1):</label>
<label index="tt_products.size">Størrelse (Variant 2):</label>
<label index="tt_products.gradings">Antal pr. kolli (Variant 4):</label>
<label index="tt_products.additional">Tilbehør (Variant 5):</label>
<label index="tt_products.special_preparation">Speciel behandling:</label>
<label index="tt_products.subtitle">Undertitel:</label>
<label index="tt_products_language">Produkter (alternativt sprog)</label>
<label index="tt_products_language.prod_uid">Produkt ID</label>
<label index="tt_products_language.sys_language_uid">Sprog ID</label>
<label index="tt_products_language.datasheet">Datablad</label>
<label index="tt_products_cat">Produkt kategori</label>
<label index="tt_products_cat.email_uid">Email</label>
<label index="tt_products_cat_language">Produkt kategori (alternativt sprog)</label>
<label index="tt_products_cat_language.sys_language_uid">Sprog</label>
<label index="tt_products_cat_language.cat_uid">Produkt kategori ID</label>
<label index="tt_products_articles">Produkter</label>
<label index="tt_products_articles.uid_product">Produkt ID</label>
<label index="tt_products_emails">Produkt email</label>
<label index="fe_users.tt_products_memoItems">Memo</label>
<label index="fe_users.tt_products_discount">Rabat</label>
<label index="tt_content.list_type_pi1">Produkter</label>
<label index="tt_content.pi_flexform.display_mode">Visning</label>
<label index="tt_content.pi_flexform.display_mode.1">Produkter: Liste</label>
<label index="tt_content.pi_flexform.display_mode.2">Produkter: Liste gaver</label>
<label index="tt_content.pi_flexform.display_mode.3">Produkter: Liste highlights</label>
<label index="tt_content.pi_flexform.display_mode.4">Produkter: Liste tilbud</label>
<label index="tt_content.pi_flexform.display_mode.5">Produkter: Liste nyheder</label>
<label index="tt_content.pi_flexform.display_mode.6">Produkter: Enkeltvisning</label>
<label index="tt_content.pi_flexform.display_mode.7">Produkter: Søg</label>
<label index="tt_content.pi_flexform.display_mode.8">Valuta: Vælg</label>
<label index="tt_content.pi_flexform.display_mode.9">Indkøbskurv: Indhold</label>
<label index="tt_content.pi_flexform.display_mode.10">Indkøbskurv: Oversigt</label>
<label index="tt_content.pi_flexform.display_mode.11">Indkøbskurv: Indtast kundeinformation</label>
<label index="tt_content.pi_flexform.display_mode.12">Indkøbskurv: Indtast betalingsoplysninger</label>
<label index="tt_content.pi_flexform.display_mode.13">Indkøbskurv: Fuldfør ordre</label>
<label index="tt_content.pi_flexform.display_mode.14">Ordrer: Sporing</label>
<label index="tt_content.pi_flexform.display_mode.15">Ordrer: Regning</label>
<label index="tt_content.pi_flexform.display_mode.16">Ordrer: Levering</label>
<label index="tt_content.pi_flexform.display_mode.17">Ordrer: Liste</label>
<label index="tt_content.pi_flexform.display_mode.18">Generelt: Memo</label>
<label index="tt_content.pi_flexform.display_mode.19">Generelt: Hjælp</label>
</languageKey>
<languageKey index="no" type="array">
<label index="tt_products">Produkter</label>
<label index="tt_products.price">Pris:</label>
<label index="tt_products.price2">Pris (2):</label>
<label index="tt_products.unit">Måleenhet</label>
<label index="tt_products.unit_factor">Faktor for mål</label>
<label index="tt_products.itemnumber">Varenr:</label>
<label index="tt_products.inStock">På lager (stk.):</label>
<label index="tt_products.datasheet">Produktark</label>
<label index="tt_products.tax">Mva (%):</label>
<label index="tt_products.weight">Vekt (kg):</label>
<label index="tt_products.bulkily">Stor:</label>
<label index="tt_products.offer">Tilbud:</label>
<label index="tt_products.highlight">Utvalgt:</label>
<label index="tt_products.directcost">Kostpris:</label>
<label index="tt_products.color">Farge (variant 1):</label>
<label index="tt_products.size">Størrelse(variant 2):</label>
<label index="tt_products.gradings">Gradering(variant 4):</label>
<label index="tt_products.additional">Utstyr (variant 5):</label>
<label index="tt_products.special_preparation">Spesiell utførelse:</label>
<label index="tt_products.subtitle">Undertittel:</label>
<label index="tt_products_language">Produktet (alternativt språk)</label>
<label index="tt_products_language.prod_uid">Produkt-element</label>
<label index="tt_products_language.sys_language_uid">Språk</label>
<label index="tt_products_language.datasheet">Produktark</label>
<label index="tt_products_cat">Produktkategori</label>
<label index="tt_products_cat_language">Produktkategori (alternativt språk)</label>
<label index="tt_products_cat_language.sys_language_uid">Språk</label>
<label index="tt_products_cat_language.cat_uid">Produktkategori-element</label>
<label index="tt_products_articles">Produktartikler</label>
<label index="tt_products_articles.uid_product">Produkt</label>
<label index="fe_users.tt_products_memoItems">Notater</label>
<label index="fe_users.tt_products_discount">Rabatt</label>
<label index="tt_content.list_type_pi1">Produkter</label>
<label index="tt_content.pi_flexform.display_mode">Visningsmodus</label>
<label index="tt_content.pi_flexform.display_mode.1">Produkter: Liste</label>
<label index="tt_content.pi_flexform.display_mode.2">Produkter: Gaveliste</label>
<label index="tt_content.pi_flexform.display_mode.3">Produkter: Utvalgte produkter</label>
<label index="tt_content.pi_flexform.display_mode.4">Produkter: Liste over tilbud</label>
<label index="tt_content.pi_flexform.display_mode.5">Produkter: Liste over nyheter</label>
<label index="tt_content.pi_flexform.display_mode.6">Produkter: Vis enkeltprodukt</label>
<label index="tt_content.pi_flexform.display_mode.7">Produkter: Søk</label>
<label index="tt_content.pi_flexform.display_mode.8">Valuta: valg</label>
<label index="tt_content.pi_flexform.display_mode.9">Handlekurv: Innhold</label>
<label index="tt_content.pi_flexform.display_mode.10">Handlekurv: Oversikt (minikurv)</label>
<label index="tt_content.pi_flexform.display_mode.11">Handlekurv: Innhent kundedata</label>
<label index="tt_content.pi_flexform.display_mode.12">Handlekurv: Betaling</label>
<label index="tt_content.pi_flexform.display_mode.13">Handlekurv: Ferdigstilling av ordre</label>
<label index="tt_content.pi_flexform.display_mode.14">Ordre: Oppfølging</label>
<label index="tt_content.pi_flexform.display_mode.15">Ordre: Kvittering</label>
<label index="tt_content.pi_flexform.display_mode.16">Ordre: Levering</label>
<label index="tt_content.pi_flexform.display_mode.17">Ordre: Liste</label>
<label index="tt_content.pi_flexform.display_mode.18">Generelt: notat</label>
<label index="tt_content.pi_flexform.display_mode.19">Generelt: Hjelp</label>
</languageKey>
<languageKey index="it" type="array">
<label index="tt_products">Prodotti</label>
<label index="tt_products.price">Prezzo:</label>
<label index="tt_products.price2">Prezzo (2):</label>
<label index="tt_products.unit">Unità di misura</label>
<label index="tt_products.itemnumber">Codice oggetto:</label>
<label index="tt_products.inStock">In giacenza (p.zi):</label>
<label index="tt_products.datasheet">Scheda</label>
<label index="tt_products.tax">Tasse:</label>
<label index="tt_products.weight">Peso (kg):</label>
<label index="tt_products.offer">Offerta:</label>
<label index="tt_products.highlight">In evidenza:</label>
<label index="tt_products.directcost">Costo diretto:</label>
<label index="tt_products.color">Colore (Variante 1):</label>
<label index="tt_products.size">Taglia (Variante 2):</label>
<label index="tt_products.additional">Addizionali (Variante 5):</label>
<label index="tt_products.special_preparation">Preparazione Speciale:</label>
<label index="tt_products.subtitle">Sottotitolo:</label>
<label index="tt_products_language">Prodotti (traduzioni):</label>
<label index="tt_products_language.prod_uid">Record del prodotto</label>
<label index="tt_products_language.sys_language_uid">Lingua</label>
<label index="tt_products_language.datasheet">Scheda</label>
<label index="tt_products_cat">Categoria prodotto</label>
<label index="tt_products_cat_language">Categoria Prodotto (lingua alternativa)</label>
<label index="tt_products_cat_language.sys_language_uid">Lingua</label>
<label index="tt_products_articles.uid_product">Prodotto:</label>
<label index="tt_content.list_type_pi1">Prodotti</label>
<label index="fe_users.tt_products_memoItems">Memo</label>
<label index="fe_users.tt_products_discount">Sconto</label>
<label index="tt_content.pi_flexform.display_mode">Visualizza</label>
<label index="tt_content.pi_flexform.display_mode.1">Prodotti: lista</label>
<label index="tt_content.pi_flexform.display_mode.2">Prodotti: lista regali</label>
<label index="tt_content.pi_flexform.display_mode.3">Prodotti: liste segnalati</label>
<label index="tt_content.pi_flexform.display_mode.4">Prodotti: lista offerte</label>
<label index="tt_content.pi_flexform.display_mode.5">Prodotti: lista tutti i nuovi</label>
<label index="tt_content.pi_flexform.display_mode.6">Prodotti: vista singolo</label>
<label index="tt_content.pi_flexform.display_mode.7">Prodotti: cerca</label>
<label index="tt_content.pi_flexform.display_mode.8">Valuta: seleziona</label>
<label index="tt_content.pi_flexform.display_mode.9">Carrello: contenuto</label>
<label index="tt_content.pi_flexform.display_mode.10">Carrello: sintesi</label>
<label index="tt_content.pi_flexform.display_mode.11">Carrello: dati utente</label>
<label index="tt_content.pi_flexform.display_mode.12">Carrello: pagamento</label>
<label index="tt_content.pi_flexform.display_mode.13">Carrello: finalizza l'ordine</label>
<label index="tt_content.pi_flexform.display_mode.14">Ordini: administrazione</label>
<label index="tt_content.pi_flexform.display_mode.15">Ordini: conto</label>
<label index="tt_content.pi_flexform.display_mode.16">Ordini: consegna</label>
<label index="tt_content.pi_flexform.display_mode.17">Ordini: lista</label>
<label index="tt_content.pi_flexform.display_mode.18">Generale: memo</label>
<label index="tt_content.pi_flexform.display_mode.19">Generale: aiuto</label>
</languageKey>
<languageKey index="fr" type="array">
<label index="tt_products">Produits</label>
<label index="tt_products.related_uid">Produits pareilles</label>
<label index="tt_products.price">Prix:</label>
<label index="tt_products.price2">Prix (2):</label>
<label index="tt_products.unit">Unitée de mesure</label>
<label index="tt_products.unit_factor">Facteur unité</label>
<label index="tt_products.note_uid">Pages descriptives</label>
<label index="tt_products.note">Description</label>
<label index="tt_products.note2">Commentaire</label>
<label index="tt_products.itemnumber">N° article:</label>
<label index="tt_products.ean">EAN Code:</label>
<label index="tt_products.inStock">En Stock (pcs):</label>
<label index="tt_products.datasheet">Fiche technique</label>
<label index="tt_products.tax">TVA:</label>
<label index="tt_products.weight">Poids (kg):</label>
<label index="tt_products.bulkily">Volumineux:</label>
<label index="tt_products.offer">Offre:</label>
<label index="tt_products.highlight">Coup de coeur:</label>
<label index="tt_products.directcost">Prix d'achat:</label>
<label index="tt_products.color">Couleur (Variante 1):</label>
<label index="tt_products.size">Grandeur (Variante 2):</label>
<label index="tt_products.description">Description (Variante 3):</label>
<label index="tt_products.gradings">Déclinaisons (Variante 4):</label>
<label index="tt_products.additional">Accessoire (Variante 5):</label>
<label index="tt_products.additional.issingle">seulement unique:</label>
<label index="tt_products.additional.isimage">est un image:</label>
<label index="tt_products.additional.alwaysInStock">toujours en réserve:</label>
<label index="tt_products.special_preparation">Emballage spécial:</label>
<label index="tt_products.subtitle">Sous-titre:</label>
<label index="tt_products.variants">Variantes</label>
<label index="tt_products.relations">Relations</label>
<label index="tt_products.shippingdiv">Envoi</label>
<label index="tt_products.shipping">Frais d\'envoi par produit</label>
<label index="tt_products.shipping2">Frais d\'envoi supplémentaire</label>
<label index="tt_products.handling">Frais d\'traitement</label>
<label index="tt_products_language">Produits (langue alternative)</label>
<label index="tt_products_language.prod_uid">Enregistrement du produit</label>
<label index="tt_products_language.sys_language_uid">Langue</label>
<label index="tt_products_language.datasheet">Fiche technique</label>
<label index="tt_products_cat">Catégorie de produit</label>
<label index="tt_products_cat_language">Catégorie de produit (langue alternative)</label>
<label index="tt_products_cat_language.sys_language_uid">Langue</label>
<label index="tt_products_cat_language.cat_uid">Enregistrement de la catégorie de produit</label>
<label index="tt_products_articles">Article à partir du produit</label>
<label index="tt_products_articles.uid_product">Produit</label>
<label index="tt_products_emails">Produit e-mails</label>
<label index="sys_products_cards">Cartes de crédit pour commandes</label>
<label index="sys_products_cards.cc_number">Nombre</label>
<label index="sys_products_cards.cc_type">Organisation</label>
<label index="sys_products_orders">Sys Produits Commandes</label>
<label index="sys_products_orders.payment">Paiement</label>
<label index="sys_products_orders.shipping">Envoi</label>
<label index="sys_products_orders.amount">Somme</label>
<label index="sys_products_orders.email_notify">E-mail notification de réception</label>
<label index="sys_products_orders.tracking_code">Clef traçabilité</label>
<label index="sys_products_orders.status">État</label>
<label index="sys_products_orders.status_log">Fichier journal état</label>
<label index="sys_products_orders.orderData">Données de commande</label>
<label index="sys_products_orders.agb">Conditions générales de ventes </label>
<label index="sys_products_orders.feusers_uid">Utilisateur front</label>
<label index="sys_products_orders.creditpoints">Crédits des bons de cadeaux</label>
<label index="sys_products_orders.creditpoints_spended">Crédits des bons de cadeaux donnes</label>
<label index="sys_products_orders.creditpoints_saved">Crédits des bons de cadeaux reçues</label>
<label index="sys_products_orders.creditpoints_gifts">Cadeaux des bons crédits</label>
<label index="sys_products_orders.desired_date">Date du livraison souhaitée</label>
<label index="sys_products_orders.client_ip">Adresse IP utilisée</label>
<label index="sys_products_orders.vat_id">CE numéro intracommunautaire d'identification à la TVA</label>
<label index="sys_products_orders.salutation">Titre</label>
<label index="sys_products_orders.salutation.I.0">Monsieur</label>
<label index="sys_products_orders.salutation.I.1">Madame</label>
<label index="sys_products_orders.salutation.I.2">Entreprise</label>
<label index="sys_products_orders.salutation.I.3">Par</label>
<label index="sys_products_orders.first_name">Prénom</label>
<label index="sys_products_orders.last_name">Nom de famille</label>
<label index="sys_products_orders.address">Rue et numéro</label>
<label index="fe_users.tt_products_memoItems">Liste memo</label>
<label index="fe_users.tt_products_discount">Réduction</label>
<label index="fe_users.tt_products_vat">CE numéro intracommunautaire d'identification à la TVA</label>
<label index="tt_content.list_type_pi1">Produits</label>
<label index="tt_content.pi_flexform.display_mode">Mode d'affichage</label>
<label index="tt_content.pi_flexform.display_mode.1">Produits: lister</label>
<label index="tt_content.pi_flexform.display_mode.2">Produits: lister les cadeaux</label>
<label index="tt_content.pi_flexform.display_mode.3">Produits: lister les coups de coeur</label>
<label index="tt_content.pi_flexform.display_mode.4">Produits: lister les réductions</label>
<label index="tt_content.pi_flexform.display_mode.5">Produits: lister les nouveautés</label>
<label index="tt_content.pi_flexform.display_mode.6">Produits: vue unique</label>
<label index="tt_content.pi_flexform.display_mode.7">Produits: recherche</label>
<label index="tt_content.pi_flexform.display_mode.8">Devise: sélection</label>
<label index="tt_content.pi_flexform.display_mode.9">Panier: contenu</label>
<label index="tt_content.pi_flexform.display_mode.10">Panier: aperçu</label>
<label index="tt_content.pi_flexform.display_mode.11">Panier: entrer les infos client</label>
<label index="tt_content.pi_flexform.display_mode.12">Panier: entrer le paiement</label>
<label index="tt_content.pi_flexform.display_mode.13">Panier: finaliser la commande</label>
<label index="tt_content.pi_flexform.display_mode.14">Commandes: suivi</label>
<label index="tt_content.pi_flexform.display_mode.15">Commandes: facture</label>
<label index="tt_content.pi_flexform.display_mode.16">Commandes: livraison</label>
<label index="tt_content.pi_flexform.display_mode.17">Commandes: liste</label>
<label index="tt_content.pi_flexform.display_mode.18">Général: memo</label>
<label index="tt_content.pi_flexform.display_mode.19">Général: aide</label>
<label index="tt_content.pi_flexform.display_mode.20">Catégories: lister</label>
<label index="tt_content.pi_flexform.display_mode.21">Articles: lister</label>
<label index="tt_content.pi_flexform.display_mode.22">Categories: choisir</label>
<label index="tt_content.pi_flexform.display_mode.25">Addresses: choisir</label>
<label index="tt_content.pi_flexform.template_suffix">Gabarit suffixe</label>
</languageKey>
<languageKey index="es" type="array">
<label index="tt_products">Productos</label>
<label index="tt_products.price">Precio:</label>
<label index="tt_products.price2">Precio (2):</label>