-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsamples.json
More file actions
3812 lines (3812 loc) · 103 KB
/
Copy pathsamples.json
File metadata and controls
3812 lines (3812 loc) · 103 KB
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
[
{
"key": "ProductFeatureType.description.NET_WEIGHT",
"lang": "fr",
"value": "Poids net"
},
{
"key": "ProductFeatureType.description.NET_WEIGHT",
"lang": "de",
"value": "Nettogewicht"
},
{
"key": "ProductContentType.description.XTRA_IMG_2_DETAIL",
"lang": "fr",
"value": "Image - Vue supplémentaire 2 Détaillée"
},
{
"key": "ProductContentType.description.XTRA_IMG_2_DETAIL",
"lang": "de",
"value": "Zusatzbild 2 Detail"
},
{
"key": "FieldDescription.ProductStore.prorateShipping",
"lang": "fr",
"value": "Quand une partie du coût de l'expédition est payée à partir d'un compte autre que «Compte de Facturation»."
},
{
"key": "FieldDescription.ProductStore.prorateShipping",
"lang": "de",
"value": "Wenn Teile der Lieferkosten von einem anderen Konto als dem Rechnungskonto getragen werden."
},
{
"key": "FieldDescription.ProductStore.itemCancelStatus",
"lang": "fr",
"value": "Message d'état à afficher au client lorsqu'un Article commandé est annulé."
},
{
"key": "FieldDescription.ProductStore.itemCancelStatus",
"lang": "de",
"value": "Dies ist die Nachricht die Ihre Kunden sehen sollen, wenn eine Bestellposition storniert wurde."
},
{
"key": "ProductContentType.description.PAGE_TITLE",
"lang": "fr",
"value": "Page de titre"
},
{
"key": "FieldDescription.ProductStore.itemDeclinedStatus",
"lang": "fr",
"value": "Message d'état à afficher au client lorsque qu'un des articles est refusé pour une raison quelconque."
},
{
"key": "FieldDescription.ProductStore.itemDeclinedStatus",
"lang": "de",
"value": "Dies ist die Nachricht die Ihre Kunden sehen sollen, wenn eine Bestellposition abgelehnt wurde."
},
{
"key": "QuantityBreakType.description.QUANTITY",
"lang": "fr",
"value": "Rupture par quantité des prix de composant"
},
{
"key": "QuantityBreakType.description.QUANTITY",
"lang": "de",
"value": "Preiskomponente Menge Sprung"
},
{
"key": "FieldDescription.ProductStore.inventoryFacilityId",
"lang": "fr",
"value": "Les stocks sont prélevés à partir d'ici."
},
{
"key": "FieldDescription.ProductStore.inventoryFacilityId",
"lang": "de",
"value": "Hier werden die Lagerbestände verwaltet."
},
{
"key": "CostComponentType.description.ACTUAL_MAT_COST",
"lang": "fr",
"value": "Coût réel du matériel"
},
{
"key": "CostComponentType.description.ACTUAL_MAT_COST",
"lang": "de",
"value": "Effektive Materialkosten"
},
{
"key": "ProductCategoryContentType.description.LINK1_ALT_TEXT",
"lang": "de",
"value": "Link 1 Alternativtext"
},
{
"key": "ProductCategoryContentType.description.LINK1_ALT_TEXT",
"lang": "fr",
"value": "Lien 1 - Texte alternatif"
},
{
"key": "FieldDescription.ProductStore.title",
"lang": "de",
"value": "Dieser Eintrag wird im Kopfbereich des eCommerce Store angezeigt."
},
{
"key": "FieldDescription.ProductStore.title",
"lang": "fr",
"value": "Cette valeur s'affiche dans la section d'en-tête du magasin de commerce électronique(ecommerce)."
},
{
"key": "ProductMaintType.description.REFUEL",
"lang": "fr",
"value": "Refaire le plein"
},
{
"key": "ProductMaintType.description.REFUEL",
"lang": "de",
"value": "Auftanken"
},
{
"key": "CostComponentType.description.ESTIMATED_MATERIALS_",
"lang": "fr",
"value": "Estimation des matériaux"
},
{
"key": "CostComponentType.description.ESTIMATED_MATERIALS_",
"lang": "de",
"value": "Geschätzte Materialkosten"
},
{
"key": "ProductAssocType.description.PRODUCT_UPGRADE",
"lang": "fr",
"value": "Version supérieure ou plus récente"
},
{
"key": "ProductAssocType.description.PRODUCT_UPGRADE",
"lang": "de",
"value": "Upgrade oder Up-Sell"
},
{
"key": "ProductPriceType.description.LIST_PRICE",
"lang": "fr",
"value": "Prix public"
},
{
"key": "ProductPriceType.description.LIST_PRICE",
"lang": "de",
"value": "Listenpreis"
},
{
"key": "ProductCategoryType.description.QUICKADD_CATEGORY",
"lang": "fr",
"value": "Ajout rapide"
},
{
"key": "ProductCategoryType.description.QUICKADD_CATEGORY",
"lang": "de",
"value": "Rasches Hinzufügen"
},
{
"key": "CostComponentType.description.ROUTE_COST",
"lang": "fr",
"value": "Coût d'itinéraire (utilisation d'immobilisation)"
},
{
"key": "CostComponentType.description.ROUTE_COST",
"lang": "de",
"value": "Wegkosten (Anlageverwendung)"
},
{
"key": "CostComponentType.description.EST_STD_MAT_COST",
"lang": "fr",
"value": "Estimation standard du coût du matériel"
},
{
"key": "CostComponentType.description.EST_STD_MAT_COST",
"lang": "de",
"value": "Geschätzte Standard-Materialkosten"
},
{
"key": "FieldDescription.ProdCatalog.templatePathPrefix",
"lang": "fr",
"value": "Si spécifié, le préfixe sera ajouté au début du chemin modèle. Le préfixe doit commencer par un slash, mais ne doit pas se terminer par un slash."
},
{
"key": "FieldDescription.ProdCatalog.templatePathPrefix",
"lang": "de",
"value": "Wird dem Templatepfad vorangestellt, wenn angegeben. Sollte mit einem Schrägstrich beginnen und ohne einen enden."
},
{
"key": "ShipmentContactMechType.description.SHIP_FROM_ADDRESS",
"lang": "de",
"value": "Lieferung Herkunft"
},
{
"key": "ShipmentContactMechType.description.SHIP_FROM_ADDRESS",
"lang": "fr",
"value": "Adresse d'origine de l'expédition"
},
{
"key": "ProductContentType.description.SHORT_SALES_PITCH",
"lang": "de",
"value": "Elevator Pitch"
},
{
"key": "ProductContentType.description.SHORT_SALES_PITCH",
"lang": "fr",
"value": "Discours de vente"
},
{
"key": "ProductCategoryLinkType.description.PCLT_ABS_URL",
"lang": "fr",
"value": "URL absolue"
},
{
"key": "ProductCategoryLinkType.description.PCLT_ABS_URL",
"lang": "de",
"value": "Absolute URL"
},
{
"key": "ProductType.description.WIP",
"lang": "fr",
"value": "Travaux"
},
{
"key": "ProductType.description.WIP",
"lang": "de",
"value": "In Arbeit"
},
{
"key": "ProductPricePurpose.description.PURCHASE",
"lang": "de",
"value": "Einkauf/Initial"
},
{
"key": "ProductPricePurpose.description.PURCHASE",
"lang": "fr",
"value": "Achat/Initial"
},
{
"key": "ProductContentType.description.DIGITAL_DOWNLOAD",
"lang": "fr",
"value": "Téléchargement numérique"
},
{
"key": "ProductContentType.description.DIGITAL_DOWNLOAD",
"lang": "de",
"value": "Herunterladen"
},
{
"key": "FieldDescription.ProductStore.defaultCurrencyUomId",
"lang": "de",
"value": "Welche Landeswährung verwendet wird, wenn keine angegeben ist. Verwenden Sie die Webtools für nicht-US Währungskennzeichen."
},
{
"key": "FieldDescription.ProductStore.defaultCurrencyUomId",
"lang": "fr",
"value": "Utilise cette monnaie quand aucune n'est spécifiée."
},
{
"key": "CostComponentType.description.LABOR_COST",
"lang": "fr",
"value": "Coût du travail"
},
{
"key": "CostComponentType.description.LABOR_COST",
"lang": "de",
"value": "Arbeitskosten"
},
{
"key": "ProductContentType.description.ALTERNATIVE_URL",
"lang": "fr",
"value": "URL de remplacement"
},
{
"key": "ProductType.description.ASSET_USAGE_OUT_IN",
"lang": "fr",
"value": "Actif location"
},
{
"key": "ProductFeatureApplType.description.OPTIONAL_FEATURE",
"lang": "fr",
"value": "Optionnel"
},
{
"key": "ProductFeatureApplType.description.OPTIONAL_FEATURE",
"lang": "de",
"value": "Optional"
},
{
"key": "VarianceReason.description.VAR_SAMPLE",
"lang": "fr",
"value": "Échantillon"
},
{
"key": "VarianceReason.description.VAR_SAMPLE",
"lang": "de",
"value": "Muster"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_ADMIN_ALLW",
"lang": "fr",
"value": "Administration autorisation (un)"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_ADMIN_ALLW",
"lang": "de",
"value": "Administrator erlauben (Eine)"
},
{
"key": "ProductFeatureType.description.OTHER_FEATURE",
"lang": "fr",
"value": "Autre caractéristique"
},
{
"key": "ProductFeatureType.description.OTHER_FEATURE",
"lang": "de",
"value": "Anderes Merkmal"
},
{
"key": "FieldDescription.ProductStore.explodeOrderItems",
"lang": "de",
"value": "Wenn eingeschaltet, wird jeder Warenkorb mit einer Bestellmenge grösser 1 in separate Bestellungen mit jeweils einer Bestellmenge von 1 aufgeteilt."
},
{
"key": "FieldDescription.ProductStore.explodeOrderItems",
"lang": "fr",
"value": "Si Oui, dans le panier, tout article avec des quantités multiples sera divisé en lignes de commande de quantité de 1 chacune."
},
{
"key": "ProductFeature.description.TEXT_WHITE",
"lang": "de",
"value": "Weiss"
},
{
"key": "ProductFeature.description.TEXT_WHITE",
"lang": "fr",
"value": "Blanc"
},
{
"key": "ProductContentType.description.XTRA_IMG_L_LARGE",
"lang": "fr",
"value": "Image - Vue supplémentaire(grande)"
},
{
"key": "ProductCategoryType.description.USAGE_CATEGORY",
"lang": "fr",
"value": "Usage"
},
{
"key": "ProductCategoryType.description.USAGE_CATEGORY",
"lang": "de",
"value": "Verwendungszweck"
},
{
"key": "FieldDescription.ProductStore.autoApproveReviews",
"lang": "de",
"value": "Wenn Benutzer Produktbewertungen abgeben können wird hiermit gesteuert, ob sie freigeben werden müssen oder sie automatisch angezeigt werden."
},
{
"key": "FieldDescription.ProductStore.autoApproveReviews",
"lang": "fr",
"value": "Si le site Internet permet aux utilisateurs de saisir des avis sur produits, ceci défini si ces avis nécessitent une approbation ou pas avant publication."
},
{
"key": "ProductContentType.description.FULFILLMENT_EXTASYNC",
"lang": "de",
"value": "Ausführung Extern (Asynchron)"
},
{
"key": "ProductContentType.description.FULFILLMENT_EXTASYNC",
"lang": "fr",
"value": "Réalisation externe (Async)"
},
{
"key": "GoodIdentificationType.description.SKU",
"lang": "fr",
"value": "SKU"
},
{
"key": "GoodIdentificationType.description.SKU",
"lang": "de",
"value": "Artikelnummer (SKU - Stock Keeping Unit)"
},
{
"key": "ProductContentType.description.META_DESCRIPTION",
"lang": "fr",
"value": "Description méta"
},
{
"key": "ProductContentType.description.META_KEYWORD",
"lang": "fr",
"value": "Mots-clés méta"
},
{
"key": "ProductCategoryContentType.description.CATEGORY_NAME",
"lang": "fr",
"value": "Nom de catégorie"
},
{
"key": "ProductCategoryContentType.description.CATEGORY_NAME",
"lang": "de",
"value": "Kategorie Name"
},
{
"key": "FacilityType.description.PLANT",
"lang": "fr",
"value": "Usine"
},
{
"key": "FacilityType.description.PLANT",
"lang": "de",
"value": "Fabrik"
},
{
"key": "ProductType.description.AGGREGATED",
"lang": "de",
"value": "Konfigurierbares Produkt"
},
{
"key": "ProductType.description.AGGREGATED",
"lang": "fr",
"value": "Produit configurable"
},
{
"key": "FieldDescription.ProductStore.addToCartReplaceUpsell",
"lang": "fr",
"value": "Si Oui, Lors de l'ajout de l'élément au panier, seront supprimés du panier tous les produits en relation de mise à niveau (ProductAssoc PRODUCT_UPGRADE)."
},
{
"key": "FieldDescription.ProductStore.addToCartReplaceUpsell",
"lang": "de",
"value": "Wenn eingeschaltet, entferne alle Produkte aus dem Warenkorb, welche ein Nachfolgeprodukt besitzen (PRODUCT_UPGRADE)."
},
{
"key": "FieldDescription.ProductStore.authDeclinedMessage",
"lang": "de",
"value": "Dies ist die Nachricht die Ihre Kunden sehen sollen, wenn die Authorisierung der Zahlung abgelehnt wurde."
},
{
"key": "FieldDescription.ProductStore.authDeclinedMessage",
"lang": "fr",
"value": "Message d'état à afficher au client lorsque que l'autorisation est refusée."
},
{
"key": "RejectionReason.description.SRJ_OVER_SHIPPED",
"lang": "de",
"value": "Zuviel geliefert"
},
{
"key": "RejectionReason.description.SRJ_OVER_SHIPPED",
"lang": "fr",
"value": "Expédié en excédent"
},
{
"key": "CostComponentType.description.EST_STD_OTHER_COST",
"lang": "fr",
"value": "Autre estimation standard"
},
{
"key": "CostComponentType.description.EST_STD_OTHER_COST",
"lang": "de",
"value": "Geschätzte Standard andere Kosten"
},
{
"key": "ProductFeatureType.description.PRODUCT_QUALITY",
"lang": "fr",
"value": "Qualité"
},
{
"key": "ProductFeatureType.description.PRODUCT_QUALITY",
"lang": "de",
"value": "Produktqualität"
},
{
"key": "ProductCategoryType.description.MATERIALS_CATEGORY",
"lang": "de",
"value": "Materialien"
},
{
"key": "ProductCategoryType.description.MATERIALS_CATEGORY",
"lang": "fr",
"value": "Matériel"
},
{
"key": "ProductFeatureType.description.ORIGIN",
"lang": "fr",
"value": "Origine"
},
{
"key": "ProductFeatureType.description.ORIGIN",
"lang": "de",
"value": "Herkunft"
},
{
"key": "FacilityGroupType.description.PRICING_GROUP",
"lang": "fr",
"value": "Groupe de prix"
},
{
"key": "FacilityGroupType.description.PRICING_GROUP",
"lang": "de",
"value": "Preisgruppe"
},
{
"key": "ProductCategoryType.description.SEARCH_CATEGORY",
"lang": "fr",
"value": "Recherche"
},
{
"key": "ProductCategoryType.description.SEARCH_CATEGORY",
"lang": "de",
"value": "Suche"
},
{
"key": "QuantityBreakType.description.ORDER_VALUE",
"lang": "de",
"value": "Preiskomponente Auftragswert Sprung"
},
{
"key": "QuantityBreakType.description.ORDER_VALUE",
"lang": "fr",
"value": "Rupture par valeur à la commande des prix de composant"
},
{
"key": "ProductContentType.description.XTRA_IMG_3_MEDIUM",
"lang": "de",
"value": "Zusatzbild 3 mittel"
},
{
"key": "ProductContentType.description.XTRA_IMG_3_MEDIUM",
"lang": "fr",
"value": "Image - Vue supplémentaire 3 Moyenne"
},
{
"key": "ProductContentType.description.XTRA_IMG_3_LARGE",
"lang": "fr",
"value": "Image - Vue supplémentaire 3 Grande"
},
{
"key": "ProductContentType.description.XTRA_IMG_3_LARGE",
"lang": "de",
"value": "Zusatzbild 3 groß"
},
{
"key": "QuantityBreakType.description.SHIP_WEIGHT",
"lang": "fr",
"value": "Rupture par poids à l'expédition"
},
{
"key": "QuantityBreakType.description.SHIP_WEIGHT",
"lang": "de",
"value": "Liefergewicht Sprung"
},
{
"key": "ProductPricePurpose.description.RECURRING_CHARGE",
"lang": "fr",
"value": "Charge/coût récurrent"
},
{
"key": "ProductPricePurpose.description.RECURRING_CHARGE",
"lang": "de",
"value": "Wiederkehrende Kosten"
},
{
"key": "ProductPricePurpose.description.USAGE_CHARGE",
"lang": "de",
"value": "Benützungsgebühr"
},
{
"key": "ProductPricePurpose.description.USAGE_CHARGE",
"lang": "fr",
"value": "Charge/coût d'usage"
},
{
"key": "ProductCategoryType.description.MIXMATCH_CATEGORY",
"lang": "de",
"value": "Austauschbar"
},
{
"key": "ProductCategoryType.description.MIXMATCH_CATEGORY",
"lang": "fr",
"value": "Interchangeable"
},
{
"key": "QuantityBreakType.description.SHIP_QUANTITY",
"lang": "de",
"value": "Liefermenge Sprung"
},
{
"key": "QuantityBreakType.description.SHIP_QUANTITY",
"lang": "fr",
"value": "Rupture par quantité d'expédition"
},
{
"key": "ProductType.description.RAW_MATERIAL",
"lang": "fr",
"value": "Matières Premières"
},
{
"key": "ProductType.description.RAW_MATERIAL",
"lang": "de",
"value": "Rohmaterial"
},
{
"key": "FacilityType.description.ROOM",
"lang": "fr",
"value": "Salle"
},
{
"key": "FacilityType.description.ROOM",
"lang": "de",
"value": "Raum"
},
{
"key": "ProductPriceActionType.description.PRICE_PFLAT",
"lang": "fr",
"value": "Usage du prix promotionnel + valeur"
},
{
"key": "ProductPriceActionType.description.PRICE_PFLAT",
"lang": "de",
"value": "Aktionspreis übersteuern"
},
{
"key": "ProductAssocType.description.PRODUCT_REVISION",
"lang": "fr",
"value": "Révision"
},
{
"key": "ProductAssocType.description.PRODUCT_REVISION",
"lang": "de",
"value": "Revision"
},
{
"key": "ProductType.description.DIGITAL_GOOD",
"lang": "fr",
"value": "Produit immatériel"
},
{
"key": "ProductType.description.DIGITAL_GOOD",
"lang": "de",
"value": "Digitales Produkt"
},
{
"key": "ProductFeatureType.description.HAZMAT",
"lang": "fr",
"value": "Caractère dangereux"
},
{
"key": "ProductFeatureType.description.HAZMAT",
"lang": "de",
"value": "Gefahrengut"
},
{
"key": "ShipmentType.description.TRANSFER_INBOUND",
"lang": "fr",
"value": "Transfert"
},
{
"key": "ShipmentType.description.TRANSFER_INBOUND",
"lang": "de",
"value": "Transfer"
},
{
"key": "ProductContentType.description.XTRA_IMG_1_LARGE",
"lang": "de",
"value": "Zusatzbild 1 groß"
},
{
"key": "ProductContentType.description.XTRA_IMG_1_LARGE",
"lang": "fr",
"value": "Image - Vue supplémentaire 1 Grande"
},
{
"key": "VarianceReason.description.VAR_MISSHIP_ORDERED",
"lang": "de",
"value": "Falschgeliefertes Produkt bestellt (+)"
},
{
"key": "VarianceReason.description.VAR_MISSHIP_ORDERED",
"lang": "fr",
"value": "Expédié par erreur - Article commandé (+)"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_MOST_POPULAR",
"lang": "de",
"value": "Am populärsten (Eine)"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_MOST_POPULAR",
"lang": "fr",
"value": "Le plus populaire (un)"
},
{
"key": "ProductAssocType.description.PRODUCT_CONF",
"lang": "de",
"value": "Konfigurierbares Produkt"
},
{
"key": "ProductAssocType.description.PRODUCT_CONF",
"lang": "fr",
"value": "Instance de produit configurable"
},
{
"key": "ProductContentType.description.MEDIUM_IMAGE_ALT",
"lang": "fr",
"value": "Texte alternatif de l'image - Moyen"
},
{
"key": "ProductContentType.description.MEDIUM_IMAGE_ALT",
"lang": "de",
"value": "Bild Alt Text - Mittel"
},
{
"key": "FieldDescription.ProductStore.requireInventory",
"lang": "fr",
"value": "Si Oui, la commande ne sera pas traitée lorsque l'inventaire n'a pas la quantité à portée de main."
},
{
"key": "FieldDescription.ProductStore.requireInventory",
"lang": "de",
"value": "Wenn eingeschaltet und nicht genug Bestand vorhanden ist, werden Bestellungen nicht ausgeführt."
},
{
"key": "FacilityType.description.BUILDING",
"lang": "fr",
"value": "Immeuble"
},
{
"key": "FacilityType.description.BUILDING",
"lang": "de",
"value": "Gebäude"
},
{
"key": "CostComponentType.description.EST_STD_ROUTE_COST",
"lang": "de",
"value": "Geschätzte Wegkosten (Anlageverwendung)"
},
{
"key": "CostComponentType.description.EST_STD_ROUTE_COST",
"lang": "fr",
"value": "Estimation standard de coût d'itinéraire (utilisation d'immobilisation)"
},
{
"key": "ProductAssocType.description.PRODUCT_VARIANT",
"lang": "fr",
"value": "Article décliné"
},
{
"key": "ProductAssocType.description.PRODUCT_VARIANT",
"lang": "de",
"value": "Produktvariante"
},
{
"key": "FieldDescription.ProductStore.headerDeclinedStatus",
"lang": "de",
"value": "Dies ist die Statusnachricht die Ihre Kunden sehen sollen, wenn ihre Bestellung abgelehnt wurde. Basierend auf den standardmässig definierten Statuscodes in OFBiz."
},
{
"key": "FieldDescription.ProductStore.headerDeclinedStatus",
"lang": "fr",
"value": "Message d'état à afficher au client lorsque la commande est refusée. Basé sur les codes statut standards définis dans Apache OFBiz"
},
{
"key": "ProductContentType.description.MEDIUM_IMAGE_URL",
"lang": "fr",
"value": "Image moyenne"
},
{
"key": "ProductContentType.description.MEDIUM_IMAGE_URL",
"lang": "de",
"value": "Bild - Mittel"
},
{
"key": "ProductPriceActionType.description.PRICE_POWHS",
"lang": "de",
"value": "Prozent vom Grosshandelspreis"
},
{
"key": "ProductPriceActionType.description.PRICE_POWHS",
"lang": "fr",
"value": "Pourcentage du prix de gros"
},
{
"key": "FieldDescription.ProductStore.autoOrderCcTryExp",
"lang": "fr",
"value": "Pour les commandes automatiques, essayez les autres dates d'expiration différentes de la carte de crédit (si la date est mauvaise ou echec général quand le type est inconnu)."
},
{
"key": "FieldDescription.ProductStore.autoOrderCcTryExp",
"lang": "de",
"value": "Bei automatischen Bestellungen werden alternative Kreditkarten Ablaufdaten verwendet (wenn Datum falsch ist oder ein genereller unbekannter Fehler auftritt)."
},
{
"key": "ProductPriceType.description.PROMO_PRICE",
"lang": "fr",
"value": "Prix promotionnel"
},
{
"key": "ProductPriceType.description.PROMO_PRICE",
"lang": "de",
"value": "Aktionspreis"
},
{
"key": "FieldDescription.ProductStore.splitPayPrefPerShpGrp",
"lang": "de",
"value": "Wenn eingeschaltet, wird vor dem Speichern der Bestellung der OrderPaymentPreference Datensatz auf jeweils einen pro OrderItemShipGroup gesplittet."
},
{
"key": "FieldDescription.ProductStore.splitPayPrefPerShpGrp",
"lang": "fr",
"value": "Si Oui, Avant que l'ordre soit enregistré, la fiche de préférence de paiement(OrderPaymentPreference) sera divisé en un enregistrement distinct pour chaque groupe de livraison (OrderItemShipGroup)."
},
{
"key": "ProductContentType.description.LARGE_IMAGE_ALT",
"lang": "fr",
"value": "Texte alternatif de l'image - Long"
},
{
"key": "ProductContentType.description.LARGE_IMAGE_ALT",
"lang": "de",
"value": "Bild Alt Text - Long"
},
{
"key": "GoodIdentificationType.description.MANUFACTURER_ID_NO",
"lang": "fr",
"value": "N° du fabricant"
},
{
"key": "GoodIdentificationType.description.MANUFACTURER_ID_NO",
"lang": "de",
"value": "Hersteller (Modell) Nummer"
},
{
"key": "ProductContentType.description.XTRA_IMG_L_SMALL",
"lang": "fr",
"value": "Image - Vue supplémentaire(petite)"
},
{
"key": "FieldDescription.ProductStore.retryFailedAuths",
"lang": "de",
"value": "Wie oft keine eine nicht erfolgreiche Authorisierung einer Bestellung erneut versucht werden?"
},
{
"key": "FieldDescription.ProductStore.retryFailedAuths",
"lang": "fr",
"value": "Nombre d'essais maximal à autoriser sur une commande."
},
{
"key": "FieldDescription.ProductStore.vatTaxAuthGeoId",
"lang": "de",
"value": "Wie ist die geographische ID der Umsatzsteuerbehörde?"
},
{
"key": "FieldDescription.ProductStore.vatTaxAuthGeoId",
"lang": "fr",
"value": "Quelle est l'identifiant géographique pour l'autorité fiscale de TVA ?"
},
{
"key": "ProductPriceType.description.MINIMUM_ORDER_PRICE",
"lang": "de",
"value": "Minimum Bestellpreis"
},
{
"key": "ProductPriceType.description.MINIMUM_ORDER_PRICE",
"lang": "fr",
"value": "Prix minimum de commande"
},
{
"key": "ProductCategoryContentType.description.DESCRIPTION",
"lang": "de",
"value": "Beschreibung"
},
{
"key": "ProductCategoryContentType.description.DESCRIPTION",
"lang": "fr",
"value": "Description"
},
{
"key": "ProductContentType.description.LARGE_IMAGE_URL",
"lang": "fr",
"value": "Image grande"
},
{
"key": "ProductContentType.description.LARGE_IMAGE_URL",
"lang": "de",
"value": "Bild - Gross"
},
{
"key": "FieldDescription.ProductStore.showOutOfStockProducts",
"lang": "de",
"value": "Wenn ausgeschaltet, werden nicht vorrätige Produkte nicht angezeigt"
},
{
"key": "FieldDescription.ProductStore.showOutOfStockProducts",
"lang": "fr",
"value": "Si Non, alors les produits en rupture de stock ne seront pas affichés sur le site."
},
{
"key": "CostComponentType.description.EST_STD_LABOR_COST",
"lang": "fr",
"value": "Estimation standard de coût du travail"
},
{
"key": "CostComponentType.description.EST_STD_LABOR_COST",
"lang": "de",
"value": "Geschätzte Standard-Arbeitskosten"
},
{
"key": "ProductContentType.description.ONLINE_ACCESS",
"lang": "fr",
"value": "Accès en ligne"
},
{
"key": "ProductContentType.description.ONLINE_ACCESS",
"lang": "de",
"value": "Online Zugriff"
},
{
"key": "ProductAssocType.description.ALSO_BOUGHT",
"lang": "fr",
"value": "Egalement acheté"
},
{
"key": "ProductAssocType.description.ALSO_BOUGHT",
"lang": "de",
"value": "hat ebenfalls eingekauft"
},
{
"key": "ShipmentContactMechType.description.SHIP_FROM_TELECOM",
"lang": "de",
"value": "Lieferung Herkunft Telefonnummer"
},
{
"key": "ShipmentContactMechType.description.SHIP_FROM_TELECOM",
"lang": "fr",
"value": "N° de téléphone de l'origine de l'expédition"
},
{
"key": "ShipmentType.description.SALES_RETURN",
"lang": "fr",
"value": "Retour de vente"
},
{
"key": "ShipmentType.description.SALES_RETURN",
"lang": "de",
"value": "Eingehend - Verkauf Retoure"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_PURCH_ALLW",
"lang": "fr",
"value": "Permission d'achat (une)"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_PURCH_ALLW",
"lang": "de",
"value": "Einkauf erlauben (Eine)"
},
{
"key": "ShipmentType.description.OUTGOING_SHIPMENT",
"lang": "fr",
"value": "Sortant"
},
{
"key": "ShipmentType.description.OUTGOING_SHIPMENT",
"lang": "de",
"value": "Ausgehende Sendung"
},
{
"key": "ProductAssocType.description.UNIQUE_ITEM",
"lang": "de",
"value": "Unikat"
},
{
"key": "ProductAssocType.description.UNIQUE_ITEM",
"lang": "fr",
"value": "Référence unique"
},
{
"key": "RejectionReason.description.SRJ_DAMAGED",
"lang": "de",
"value": "Beschädigt"
},
{
"key": "RejectionReason.description.SRJ_DAMAGED",
"lang": "fr",
"value": "Endommagé"
},
{
"key": "ProductAssocType.description.PRODUCT_REPAIR_SRV",
"lang": "de",
"value": "Reparaturdienstleistung"
},
{
"key": "ProductAssocType.description.PRODUCT_REPAIR_SRV",
"lang": "fr",
"value": "Service de réparation"
},
{
"key": "ProdCatalogCategoryType.description.PCCT_QUICK_ADD",
"lang": "fr",
"value": "Ajout rapide (plusieurs)"