yanyuan
2023-11-10 143ef74e2eeee697ac8fda3d9032a790fbb4e146
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
ÿþQuintiq translations file
Translations
{
  id: '(Optional) Maximum supply quantity between start and end dates.' value: 'ÿïS        ÿ_ËYåegŒTÓ~_gåegKNô•„vg'Y›O”^ϑ0'
  id: '*Note: ' value: '*Yèlÿ'
  id: '...' value: '...'
  id: '3DDrive path' value: '3Dqš¨R_'
  id: '<HTML>- An upstream smart plan run will consider all processes and stocking points that are upstream of the selection. <br> &nbsp; &nbsp;In other words, the smart plan will pull the products through the supply chain down to the selected stocking points. <br>- A downstream smart plan run will consider all processes and stocking points that are downstream of the selection. <br> &nbsp; &nbsp;In other words, the smart plan will push the products through the supply chain starting from the selected stocking points.<br>- A middle-out smart plan run will call both an upstream smart plan run and a downstream smart plan run from the selected product in stocking points.</HTML>' value: '<HTML>- 
N8nzfý€¡‹RЏLˆ\€Q†    éb
N8n„v@b    gAm zŒT“^X[¹p0 <br> &nbsp; &nbsp;bcåS݋ô‹ ÿzfý€¡‹R\Ç›O”^þ”\§NÁTÉb0R    š[„v“^X[¹p0 <br>-  N8nzfý€¡‹RЏLˆ\€Q†    éb N8n„v@b    gAm zŒT“^X[¹p0 <br> &nbsp; &nbsp;bcåS݋ô‹ ÿzfý€¡‹R\Ç›O”^þ”ÎN    š[„v“^X[¹p_ËY¨c¨R§NÁT0<br>- -N8nzfý€¡‹RЏLˆ\Œ(u
N8nzfý€¡‹RЏLˆŒT N8nzfý€¡‹RЏLˆ“^X[¹p-N„v    š[§NÁT0</HTML>'
  id: '<HTML>If the initial inventory of a product is much higher than the total sales demand, then the inventory mix balancing may force an overproduction of all other products in this category to achieve a balanced inventory. <br> In practice, this behavior is typically undesirable and therefore we want to exclude these products from balancing. <br> This duration determines which products are excluded. Any product for which the inventory supplies are greater than the total sales demand from the start of the horizon to the end of this duration will be excluded. </HTML>' value: '<HTML>‚YœgN*N§NÁT„vRËY“^X[܏ؚŽN;`•.U—Bl ÿ£HN“^X[Ä~Ts^aˆïSý€OëOå‹{|+R-N„v@b    gvQÖN§NÁTu§NǏiRåNž[°ss^aˆ“^X[0 <br> ž[E–
N ÿُÍyLˆ:N8^/f NïSÖS„v ÿàVdkbìN ^g\ُ›N§NÁT’cd–(Ws^aˆKNY0 <br> dkcí~öeô•³Qš[†NêT›N§NÁT«ˆ’cd–(WY0ûNUO“^X[›O”^'YŽNÎNöeô•荦^_ËY0Rdkcí~öeô•Ó~_g„v;`•.U—Bl„v§NÁTý\«ˆ’cd–(WY0 </HTML>'
  id: '<HTML>When the sliding windows approach is used, the optimizer will iteratively optimize the problem. <br> In the first iteration, it will consider the lotsizes only in the first X periods (=the active window).<br> In all of the following iterations, it will slide this active window forward. <br> The lotsizes in the periods before the active window will be frozen, the lotsizes in the periods after the active window will be relaxed. <br> The optimizer will continue to slide the active window forward until it reaches the end of the horizon. </HTML>' value: '<HTML>S_O(uÑn¨R—zãS„v¹eÕlöe ÿOShVOíãNOS˜0 <br> (W,{N!kíãN-N ÿƒ[\ÅN€Q†MR X *NhTgÿ=;m¨R—zãS    ÿ-N„vybϑ0<br> (W¥c Neg„v@b    gíãN-N ÿƒ[\TMRÑn¨Rdk;m¨R—zãS0 <br> ;m¨R—zãSMR6–µk„vybϑ\«ˆ»QÓ~ ÿ;m¨R—zãST6–µk„vybϑ\«ˆ>e½[0 <br> OShV\ç~í~TMRÑn¨R;m¨R—zãS ÿôv0R0R¾ƒôV„v=\4Y0 </HTML>'
  id: '<Unavailable>' value: '<Unavailable>'
  id: '<b>Single-echelon safety stock calculation: </b><br> Calculate safety stocks for any products on pre-determined locations, taking into account service level, demand, demand uncertainty, lead time and lead time variability. <br><br><b>Multi-echelon inventory optimization:</b> <br> Optimize safety stock deployment for finished goods in multi-echelon supply chain, taking into account service levels, demand, demand uncertainty and lead time. ' value: '<b>US§~‰[hQ“^X[¡‹—{ÿ</b><br>€Q† g¡R4ls^0—Bl0—Bl Nnxš['`0ÐcMRgŒTÐcMRgØSS ÿ¡‹—{„˜š[MOn
NûNUO§NÁT„v‰[hQ“^X[0<br><br><b>Y§~“^X[OSÿ</b><br>€Q† g¡R4ls^0—Bl0—Bl Nnxš['`ŒT¤N'g ÿOSY§~›O”^þ”-NbÁT„v‰[hQ“^X[èr0'
  id: '<html> Check the box to set a start date for the validity of the fulfillment restriction. <br> Leave unchecked if the fulfillment restriction is valid from the start of the horizon. <br> Fulfillment restrictions are applied to sales demands that have their start date within the validity period. </html>' value: '<html>    -NdkFhïS¾‹ne\LˆP–6R    gHe'`„v_ËYåeg<br>‚Yœge\LˆP–6RÎNöeô•ƒôV_ËY    gHe ÿR N    -N<br>e\LˆP–6R(uŽN_ËYåeg(W    gHeg…Q„v•.U—Bl</html>'
  id: '<html> Check the box to set an end date for the validity of the fulfillment restriction (the end date is excluded). <br> Leave unchecked if the fulfillment restriction is valid until the end of the horizon. <br> Fulfillment restrictions are applied to sales demands that have their start date within the validity period. </html>' value: '<html>    -NdkFhïS¾‹ne\LˆP–6R    gHe'`„vÓ~_gåegÿ NSìbÓ~_gåeg    ÿ<br>‚Yœge\LˆP–6R(WgP–Ó~_gMR    gHe ÿR N    -N<br>e\LˆP–6R(uŽN_ËYåeg(W    gHeg…Q„v•.U—Bl</html>'
  id: '<html> Select the leaf product that is excluded for fulfillment of sales demands on higher-level products. <br> Fulfillment restrictions only apply to sales demands on higher-level products. <br> They are ignored for sales demands on leaf products.</html>' value: '<html>     éb:Nán³ôfؚ§~+R§NÁT„v•.U—Bl €’cd–„vöS§NÁT0 <br> e\¦~P–6RÅN(uŽNôfؚ§~+R§NÁT„v•.U—Bl0 <br>  €(WöS§NÁT„v•.U—Bl-N ÿe\LˆP–6RR«ˆý_eu</html>'
  id: '<html> Select the sales segment that the fulfillment restriction applies to. <br> Fulfillment restrictions only apply to sales demands on higher-level products. <br> They are ignored for sales demands on leaf products. <br> The items in the drop-down list are filtered based on the Sales segment selection. </html>' value: '<html>    ébe\LˆP–6R(uŽN„v•.UÆ~R0<br>e\LˆP–6RÅN(uŽNôfؚ§~+R§NÁT„v•.U—Bl<br> €(WöS§NÁT„v•.U—Bl-N ÿe\LˆP–6RR«ˆý_eu<br> NÉbRhˆ-N„vy˜îv\9hnc@b    •.UÆ~R^:WۏLˆ[{    </html>'
  id: '<html><tr>The planned campaigns will be adhered to within the campaign horizon.</tr><br><tr>The campaign horizon can be defined on the unit.</tr></html>' value: '<html><tr>¡‹R„v;m¨R\(W;m¨RƒôV…Q—_0Ruˆ[</tr><br><tr>;m¨RƒôVïSåN(WUSCQ
Nš[IN0</tr></html>'
  id: '<html>A lot size of 100 means that any operation on this unit can only produce in batches of 100 (can be overwritten on the operation)<br>Make sure to use Lot size as active goal in the optimizer strategy.</html>' value: '<html>ybϑ'Y\:N100asT@wdkUSCQ
N„vûNUOÍd\OêSý€ybϑu§N100ÿïSåN(WÍd\O-N†‰Öv    ÿ<br>÷‹nxÝO(WOShVV{eu-N\ybϑ'Y\\O:N;m¨Rîvh</html>'
  id: '<html>A lot size of 100 means that this operation can only produce in batches of 100.<br>Make sure to use Lot size as active goal in the optimizer strategy.<br>A lot size of 0 means that the lot size is not specified for this operation.</html>' value: '<html>ybϑ'Y\:N100asT@wdkÍd\OêSý€ybϑu§N100*N0<br>÷‹nxÝO(WOShVV{eu-NO(uybϑ'Y\\O:N;m¨Rîvh<br>ybϑ'Y\:N0hˆ:y*g:NdkÍd\Ocš[ybϑ'Y\</html>'
  id: '<html>A maximum quantity of 100 means that any operation on this unit cannot produce more than 100 per period (can be overwritten on the operation)<br>Make sure to use Process maximum quantity as active goal in the optimizer strategy.</html>' value: '<html>g'Ypeϑ:N100asT@wdkUSCQ
N„vûNUOÍd\OÏk*NhTg„v§Nϑ Ný€…Ç100ÿïSåN(WÍd\O
N†‰Öv    ÿ0<br>÷‹nxÝO(WOShVV{eu-NO(uۏ zg'Ypeϑ\O:N;m¨Rîvh</html>'
  id: '<html>A minimum quantity of 100 means that per period any operation on this unit must either produce nothing or a quantity that is at least 100 (can be overwritten on the operation)    <br>Make sure to use Process minimum quantity as active goal in the optimizer strategy.<html>' value: ' <html>g\peϑ:N100asT@wÏk*NhTgdkUSCQ
N„vûNUOÍd\O‰HN N§NuûNUOÓ~œg ÿ‰HNó\§Nu100*NpeϑÿïSåN(WÍd\O-N†‰Öv    ÿ0<br>nxÝO(WOShVV{eu-NO(uۏ zg\peϑ\O:N;m¨Rîvh0<html> '
  id: '<html>By default the operation gets the volume settings defined on its unit. <br>Click here to override. </html>' value: '<html>؞¤‹Å`µQ N ÿå‹Íd\O·ƒÖS(WvQUSCQ
Nš[IN„vó—Ï‘¾‹n<br>USûQdkY†‰Öv</html>'
  id: '<html>By excluding from the optimizer, the optimizer will not plan the supply of this product but simply assume sufficient supply.<br>Note that this may result in balance constraints for this product in case of insufficient supply.<br>To plan the supply as post-processing step after the optimizer run, check the post-processing for sourcing checkbox.</html>' value: '<html>ÇÎNOShV-N’cd– ÿOShV\ NOĉRdk§NÁT„v›O”^ ÿ €êS/fGP¾‹›O”^EQ³<br>÷‹èla ÿ‚Yœg›O”^ N³ ÿُïSý€Oü[ôå‹§NÁT„vs^aˆP–6R<br>‰(WOShVЏLˆT\›O”^¡‹R:NTYtek¤š ÿ÷‹    -N Ç‘-TYt  Y    Fh</html>'
  id: '<html>Determines whether all products on this level are a product category.<br>The inventory levels of all children products of a product category will be balanced by the inventory mix balancing KPI.</html>' value: '<html>nxš[dk§~+R
N„v@b    g§NÁT/f&Tý/f§NÁT{|+R0<br>N*N§NÁT{|+R„v@b    gP[§NÁT„v“^X[4ls^\Ç“^X[Ä~Ts^aˆKPIegs^aˆ0</html>'
  id: '<html>Earliest start specifies the earliest date at which campaign can start.<br> A campaign can only be planned on or after this earliest start time.</html>' value: '<html>gée_ËYcš[;m¨RïSåN_ËY„vgéeåeg0<br> ;m¨RêSý€(Wgée„v_ËYöeô•bKNTۏLˆ¡‹R0</html>'
  id: '<html>Horizon on which sales demands can be postponed, starting from the start of planning. <br>The postponement horizon duration is derived from Time unit and Number of time units.<br>For example, to allow postponement on 3 months select Months and set number to 3.</html>' value: '<html>ÎNĉR_ËY ÿ•.U—BlïSåN¨cߏ„vƒôV<br>ö^ߏgP–cí~öeô•1uöeô•USMOŒTöeô•USMOpe—_úQ<br>‹O‚Y ÿ‰AQ¸‹ö^g3*Ng ÿ÷‹    ébgýNv^\peW[¾‹n:N3</html>'
  id: '<html>Horizon on which sales demands can be postponed, starting from the start of planning.<br>The postponement horizon duration is derived from Time unit and Number of time units.<br>For example, to allow postponement on 3 months select Months and set number to 3.</html>' value: '<html>ÎNĉR_ËY ÿ•.U—BlïSåN¨cߏ„vƒôV<br>ö^ߏgP–cí~öeô•1uöeô•USMOŒTöeô•USMOpe—_úQ<br>‹O‚Y ÿ‰AQ¸‹ö^g3*Ng ÿ÷‹    ébgýNv^\peW[¾‹n:N3</html>'
  id: '<html>How to derive from the lead time on lanes in which period the dependent demand falls.<br><br>E.g. consider weekly buckets, a lane with lead time of 5 days, and planned quantity in Week 2:<br>- From end of period: all of the dependent demand falls in Week 2<br>- From middle of period: all of the dependent demand falls in Week 1</html>' value: '<html>‚YUOÎNøvsQ—Bl NM–„vЏ“ï¿~
N„vÐcMRg-N—_úQ0<br><br>‹O‚Y ÿ€Q†ÏkhTöeµk0ÐcMRg:N5)Y„vЏ“ï¿~ŒT,{2hT„v¡‹Rpeϑÿ<br>-ÎNhTgÓ~_göewÿ@b    gøvsQ—Bl(W,{2hT NM–0<br>ÎNhTg-Nô•wÿ@b    gOV—Bl(W,{1hT NM–</html>'
  id: '<html>How to derive from the lead time on operations in which periods the dependent demand falls. <br><br> E.g consider weekly buckets, an operation with lead time of 5 days, and planned quantity in Week 2:<br> - Proportionally: 5/7 of the dependent demand falls in Week 1 and 2/7 in Week 2 <br> - From end of period: all of the dependent demand falls in Week 2<br> - From middle of period: all of the dependent demand falls in Week 1</html>' value: '<html>‚YUOÎNøvsQ—Bl NM–„vÍd\O„vÐcMRg—_úQ0 <br><br> ‹O‚Y ÿ€Q†hTöeô•µk0ÐcMRg:N 5 )Y„vå]^åNÊS,{ 2 hT„v¡‹Rpeϑÿ<br> -     cÔk‹Oÿ5/7 „vøvsQ—Bl(W,{ 1 hT NM– ÿ2/7 (W,{ 2 hT NM–2 <br> - ÎNg+g_ËYÿ@b    gøvsQ—Blý(W,{ 2 hT NM–<br> - ÎNg-N_ËYÿ@b    gøvsQ—Blý(W,{ 1 hT NM–</html>'
  id: '<html>Input quantity: The total quantity of incoming products is used to calculate the capacity usage and costs for this unit<br>Output quantity: The total quantity of outgoing products is used to calculate the capacity usage and costs for this unit<html>' value: '<html>“eQpeϑ:“eQ§NÁT„v;`peϑ(uŽN¡‹—{å‹USMO„v§Ný€O(uŒTb,g<br>“úQpeϑ:“úQ§NÁT„v;`peϑ(uŽN¡‹—{å‹USMO„v§Ný€O(uŒTb,g<html>'
  id: '<html>Leave empty if the product is at the highest level of the product hierarchy.<br>Otherwise select the parent product.</html>' value: '<html>‚Yœg§NÁTYŽN§NÁTB\!kÓ~„g„vgؚ§~+R ÿRÝOYu:Nzz<br>&TR    éb6r§NÁT</html>'
  id: '<html>Max inventory level in days indicates the maximum number of days of demands that can be fulfilled by the product in stock.<br>Max inventory level in quantity indicates the maximum amount of demands that can be fulfilled by the product in stock.</html>' value: '<html>“eQpeϑÿ“eQ§NÁT„v;`peϑ(uŽN¡‹—{å‹USCQ„v¹[ϑO(uŒTb,g0<br>“úQpeϑÿ“úQ§NÁT„v;`§Nϑ(uŽN¡‹—{å‹USMO„v¹[ϑO(uϑŒTb,g0ÿhtmlÿ'
  id: '<html>Maximum duration by which a sales demand that belongs to the postponement horizon can be postponed.<br>The maximum allowed postponement duration is derived from Time unit and Number of time units.<br>For example, to allow a postponement of 2 weeks select Weeks and set number to 2.</html>' value: '<html>‚Yœg§NÁTYŽN§NÁTB\!kÓ~„g„vgؚ§~+R ÿRÝOYu:Nzz<br>&TR    éb6r§NÁT</html>'
  id: '<html>Min inventory level in days indicates the minimum number of days of demands that can be fulfilled by the product in stock.<br>Min inventory level in quantity indicates the minimum amount of demands that can be fulfilled by the product in stock.</html>' value: '<html>åN)Y:NUSMO„vg'Y“^X[4ls^hˆ:y“^X[§NÁTïSåNán³„vg'Y—Bl)Ype<br>g'Y“^X[ϑhˆ:y“^X[§NÁTïSåNán³„vg'Y—Blϑ</html>'
  id: '<html>Multiplication factor for the efficiency of time-based resources.<br>For example, set to 0.8 if a resource can only achieve 80% of its specified throughput.</html>' value: '<html>úWŽNöeô•„vDnHe‡s„vXNÕlàVP[0<br>‹O‚Y ÿS_ÐgNDnêSý€¾0Rcš[u§Nϑ„v80%öe ÿ¾‹n:N0.80</html>'
  id: '<html>Sales demands with higher priority are fulfilled first.</html>' value: '<html>OHQán³OHQ§~ƒØš„v•.U—Bl</html>'
  id: '<html>Select if the periods are used for planning or merely for visualization.<br>The planning periods define the granularity at which planning is done.<br>In case of overlapping planning periods, the smallest ones are used.<br>The planning periods are shown in the period overview in blue.</html>' value: '<html>    éböeµk/f(uŽNĉR؏/fÅN(uŽNïSƉS<br>¡‹RhTgš[IN†NŒ[b¡‹R„v’|¦^<br>‚Yœg¡‹Rg͑àS ÿRO(ug\„v¡‹Rg<br>¡‹Rgô•åN݄r‚>f:y(Wgô•‚ið-N</html>'
  id: '<html>Select the sales segment to which the specification applies.<br>The items in the drop-down list are filtered based on the navigation panel selection..</html>' value: '<html>    ébĉƒ(u„v•.UÆ~R^:W<br> NÉbRhˆ-N„vy˜îv\9hncü[*‚b—g    ébۏLˆ[{    </html>'
  id: '<html>Select the unit that the stocking point belongs to.<br>This is used for visualization and filtering purposes.<br>The stocking point will show in the navigation panel as a child of the selected unit.<br>Leave empty to show the stocking point at the root level.</html>' value: '<html>    éb“^X[¹p@b^\„vUSMO0<br>ُ(uŽNïSƉSŒTǏänîv„v<br>“^X[¹p\(Wü[*‚b—g-N>f:y:N@b    USMO„vP[y˜<br>ÝOYu:NzzåN>f:y9h§~+R„v“^X[¹p</html>'
  id: '<html>Select to allow negative inventory on this product in stocking point.<br>Use for example for input products that form no constraint for the planning but for which you still want to monitor the consumption.<br>Cannot be used on products in stocking points that have sales demands.</html>' value: '<html>    ébdk    y˜ïS(W“^X[¹pAQ¸‹dk§NÁT„v“^X[<br>‹O‚Y(uŽNù[¡‹R¡l    gP–6RFO¨`ÍNó`Ñv§cˆm€„v“eQ§NÁT<br> Ný€(uŽNwQ    g•.U—Bl„v“^X[¹p-N„v§NÁT</html>'
  id: '<html>Set to a number > 1 if this unit represents multiple identical resources.<br>For example, set the number of units to two to double the capacity.<html>' value: '<html>Set to a number > 1‚YœgUSMOhˆ:yY*Nøv T„vDn0<br>‹O‚Y ÿ\¾‹Ypeϑ¾‹n:N2 ÿïSåNO§Ný€û P0<html>'
  id: '<html>Set to a number > 1 if this unit represents multiple identical resources.<br>For example, set the number of units to two to double the capacity</html' value: '<html>¾‹n:NN*N>1„vpeW[hˆ:yY*Nøv T„vDn0<br>‹O‚Y ÿ\¾‹Ypeϑ¾‹n:N2 ÿïSåNO§Ný€û P</html'
  id: '<html>Shelf life can be used for perishable products.<br>When the inventory of a perishable product is larger than the demand within its shelf life, a constraint violation is shown.</html>' value: '<html>ÝO(gïS(uŽNfP§NÁT<br>S_fP§NÁT„v“^X['YŽNvQÝO(g…Q„v—Blöe ÿ\>f:yݏÍS¦~_g</html>'
  id: '<html>Staged import - data is imported into MP through the staging dataset.<br>Define import profiles to specify which data to import and where to source from.<br>Use the Sync Object Browser application to inspect the staged data.</html>' value: '<html>Rµkü[eQ  pencÇRµkpencƖü[eQMP0<br>š[INü[eQM‘n‡eöNegcš[‰ü[eQêT›NpencåNÊSÎNUOY·ƒ—_npenc0<br>O(u Tekù[aŒOmȉhV”^(u z^Àhåg‚fX[penc0</html>'
  id: '<html>The Start date specifies as of when these settings become active.<br>If this date falls in the middle of a period, they take effect from the next period onwards.</html>' value: '<html> _ËYåeg cš[ُ›N¾‹nØS:N;m¨R¶r`„våeg0<br>‚Yœgå‹åeg=„(WN*Nöeg„v-Nô• ÿRÎN NN*Nöeg_ËYuHe0</html>'
  id: '<html>The Start date specifies as of when these settings become active.<br>If this date falls in the middle of a period, they take effect from the next period onwards</html>' value: '<html> _ËYåeg cš[ُ›N¾‹nØS:N;m¨R¶r`„våeg0<br>‚Yœgُ*Nåeg=„(WN*Nöeg„v-Nô• ÿRÎN NN*Nöeg_ËYuHe</html>'
  id: '<html>The capacity type affects the calculation of capacity consumption and definition of capacity constraints<br>- Infinite: Resource without capacity constraints<br>- Quantity: Resource for which capacity constraints are defined in quantity<br>          - Quantity aggregation: Parent unit of multiple identical quantity-based resources that spread the load evenly<br>- Time: Resource with rate-based operations for which constraints are defined in time<br>- Time aggregation: Parent unit of multiple identical time-based resources that spread the load evenly<br>- Transport quantity: Transportation resource whose capacity constraints are continuous<html>' value: '<html>¹[ϑ{|‹Wq_ÍT¹[ϑˆm€„v¡‹—{ŒT¹[ϑ¦~_g„vš[IN<br>- àeP–ÿàe¹[ϑ¦~_g„vDn<br>- peϑÿåNpeϑš[IN¹[ϑ¦~_g„vDn<br> - peϑZ€Tÿ6r§~GWSR^}„vY*NúWŽNpeϑ„vøv TDn„vUSCQ<br>- öeô•ÿwQ    gúWŽN‡s„vÍd\O„vDn ÿvQ¦~_g(Wöeô•-Nš[IN<br>- öeô•Z€TÿY*Nøv T„vúWŽNöeô•„vDnR^„v6rUSCQ}GWS<br>- Ð“Ï‘ÿ¹[ϑ¦~_gޏí~„vЏ“Dn<    html>'
  id: '<html>The duration from the start of planning which the unit is frozen.<br>The duration is rounded up to the start of the next most granular period.</html>' value: '<html>ÎNĉR_ËY0RUSMO«ˆ»QÓ~„vöeô•0<br>cí~öeô•—{0R NN*Ng’|¶rhTg„v_ËY0</html>'
  id: '<html>The lead time defines the duration of a trip on this lane leg.<br>Click to override the default lead time defined on the lane.</html>' value: '<html>¤N'öeô•š[IN†NُagfS
NNµkLˆ z„vcí~öeô•0<br>USûQïS†‰ÖvfS
Nš[IN„v؞¤‹¤NØNöeô•0</html>'
  id: '<html>The lead time defines the duration of a trip on this lane.<br>The value entered here is the default lead time applied to the lane legs.<br>This default value can be overridden on the lane legs</html>' value: '<html>¤NØNöeô•š[IN†NُagfS
NNµkLˆ z„vcí~öeô•0<br>ُ̑“eQ„v<P/f”^(uŽNfSµk„v؞¤‹¤NØNöeô•0<br>ُ*N؞¤‹<PïSåN(WfSµk
N«ˆÍ‘™Q</html>'
  id: '<html>The manufacture date of the product. This is used as the starting point of the shelf life calculation.<br>Only applicable to products with shelf-life enabled.</html>' value: '<html>§NÁT„vu§Nåeg0ُ«ˆ(u\OÝO(g¡‹—{„vw¹p0<br>ÅN(uŽNò]/T(uÝO(g„v§NÁT0</html>'
  id: '<html>The number of historical periods before the Start of planning (only counting periods of full duration).<br>Historical periods are by definition frozen.</html>' value: '<html>(W_ËY¡‹RKNMR„v†SòSöeg„vpeϑ(êS¡‹—{Œ[tehTg„vöeg)0<br>9hncš[IN ÿ†SòSöeg/f»QÓ~„v0</html>'
  id: '<html>The number of previous periods (including the current period) which the smart plan should consider when planning the supply of this PISPIP.<br>If set to 1, the smart plan will consider the selection and its upstream processes/stocking points within the same period and in any period required by the leadtime of the processes.<br>If set to a high value, the smart plan will consider the selection and its upstream processes/stocking points from the start of the horizon until the end of the selected period.</html>' value: '<html>zfý€¡‹R(WĉRdk PISPIP „v›O”^öe”^€Q†„vHQMRhTgpeÿSìbS_MRhTg    ÿ0<br>‚Yœg¾‹n:N 1 ÿzfý€¡‹R\€Q†    ébÊSvQ
N8nAm z/“^X[¹p(W TNöegŒTAm zÐcMRg@b—„vûNUOöeg…Q0<br>‚Yœg¾‹n:Nؚ<P ÿRzfý€¡‹R\€Q†    ébÊSvQ
N8nAm z/“^X[¹p ÿÎNöeô•ƒôV_ËY0RÓ~_g    š[„vöeô•µk0</html>'
  id: '<html>The optimizer balances the products per product category based on their average demand.<br> If a target in days has been specified, then the average demand will be calculated over the next target number of days. <br>If no target in days has been specified, then the average demand will be calculated over the next X periods, where X is the default number of periods specified here.</html>' value: '<html>OShV9hnc§NÁT„vs^GW—Bls^aˆÏk*N§NÁT{|+R„v§NÁT0<br>‚Yœgcš[†Nîvh)Ype ÿR\(W NN*Nîvh)Ype…Q¡‹—{s^GW—Bl0 <br>‚Yœg*gcš[åN)Y:NUSMO„vîvh ÿR\¡‹—{¥c Neg X *NhTg„vs^GW—Bl ÿvQ-N X /fdkYcš[„v؞¤‹hTgpe0</html>'
  id: '<html>The period duration is derived from Time unit and Number of time units.<br>For example, to create bi-weekly periods select Week and set number to 2.</html>' value: '<html>hTgcí~öeô•1uöeô•USMOŒTöeô•USMO„vpeϑ—_0R0<br>‹O‚Y ÿ    éb Week v^\peϑ¾‹n:N2Rú^ÌShThTg0</html>'
  id: '<html>The range of tolerable difference between the actual value and the planned value.<br>For example, if the outlier tolerance is 20% and the planned inventory is 100,<br>then the actual value which is smaller than 80 or larger than 120 will be highlighted as violation.</html>' value: '<html>ž[E–<PŒT¡‹R<PKNô•„v¹[¸‹î]_ƒôV<br>‹O‚Y ÿ‚Yœg_8^<PlQî]:N20% ÿ¡‹R“^X[:N100 ÿ<br>R\ŽN80b'YŽN120„vž[E–<P\zúQ>f:y:Nݏĉ</html>'
  id: '<html>The tolerable percentage of instances that are consistent between planned inventory and actual inventory.<br>For example, if the bias tolerance is 80% and less than 8 instances out of 10 have consistent value between planned inventory and actual inventory,<br>the product in stocking point will be highlighted as violation.</html>' value: '<html>¡‹R“^X[ŒTž[E–“^X[KNô•Nô„vž[‹O„vïS¹[Í_~vRÔk<br>‹O‚Y ÿ‚YœgOPî]¹[î]:N80% ÿN¡‹R“^X[ŒTž[E–“^X[KNô•„vNô<P\ŽN10*Nž[‹O-N„v8*N ÿ<br>“^X[¹p-N„v§NÁT\zúQ>f:y:Nݏĉ</html>'
  id: '<html>The unit of measurement is defined on the product.<br>Select to use a different unit of measurement for this stocking point.<html>' value: '<html>KmϑUSMOš[IN(W§NÁT
N0<br>    ébO(udk“^X[¹p„v N T¡‹Ï‘USMO0<html>'
  id: '<html>This date specifies the alignment of the period starts.<br>For example, for yearly periods, setting this date to 16-June-2010 results in periods that start at June 16.<br>This date does not have to be within the horizon, but will be updated automatically to the start of the most recent period when pressing okay.</html>' value: '<html>dkåegcš[öeµk_ËY„vù[PŸ¹e_<br>‹O‚Y ÿù[ŽNt^¦^gô• ÿ\dkåeg¾‹n:N2010t^6g16åe\ü[ôgô•ÎN6g16÷S_ËY0<br>dkåeg NÅ_(Wgô•…Q ÿFO    c nxš[ öe\ꁨRôf°e0RgяN*Ngô•„v_ËY</html>'
  id: '<html>This parameter is used to balance the memory load versus the optimizer runtime for trip planning.<br>After an optimizer run, unused trips (i.e. quantity = 0) are removed if the percentage of used trips is below this value.' value: '<html>å‹ÂSpe(uŽNs^aˆLˆ zĉR„v…QX[}NOShVЏLˆöe<br>(WOShVЏLˆT ÿ‚Yœgò]O(uLˆ z„v~vRÔkNOŽNdk<P ÿ\ Rd–*gO(u„vLˆ zÿsSpeϑ=0    ÿ0'
  id: '<html>Trips are broken down into multiples of the lot size. <br>The quantity used for capacity calculation is rounded up to the next multiple of the lot size. <br>For example, for a lot size of 25, moving 60 tons consumes 75 tons of capacity or the equivalent of 3 trips.</html>' value: '<html>Lˆ z«ˆRã‰:Nybϑ„v Ppe<br>(uŽN¹[ϑ¡‹—{„vpeϑÛV ‚”NeQ0Rybϑ„v NN*N Ppe<br>‹O‚Y ÿù[ŽN25*Nyb!k ÿûy¨R60(Tˆm€75(T„v¹[ϑbøvS_ŽN3!kÅeLˆ</html>'
  id: '<html>When there are multiple periods between the start and end dates, the quantity is disaggregated proportionally over the periods.<br>The end date is excluded, i.e. an end date of 01-May means up till and including 30-April.</html>' value: '<html>S__ËYåegŒTÓ~_gåegKNô•    gY*Ngô•öe ÿpeϑ\    cgô•    cÔk‹OۏLˆR{|<br>Ó~_gåeg NSìb(W…Q ÿsS5g1åe„vÓ~_gåegasT@wôv0Rv^Sìb4g30åe</html>'
  id: 'A changeover occurs when switching between operations belonging to different tool groups within a unit period.' value: '(WUSMOöeô•…Q ÿ^\ŽN N Tå]wQÄ~„vÍd\OKNô•ÑSuRbc0'
  id: 'A locked feedback requires optimizer to respect the exact amount while generating a plan.A unlocked feedback is the minimum threshold that the optimizer should respect while generating a plan.' value: '•š[ÍSˆ™‰BlOShV(Wub¡‹Röe
\͑¾|nx„vpeϑ0*g•š[ÍSˆ™/fOShV(Wub¡‹Röe”^uˆ[„vg\–<P0'
  id: 'A maximum quantity of 100 means that this operation cannout produce more than 100 per period.' value: 'g'Ypeϑ:N100asT@wå‹Íd\O Ný€(WÏk*NhTg§Nu…Ç100*N0'
  id: 'A minimum quantity of 100 means that per period, this operation must either produce nothing or a quantity that is at least 100.' value: 'g\peϑ 100 asT@wÏk*NhTg ÿdkÍd\O‰HN Nu§N ÿ‰HNpeϑó\:N 1000'
  id: 'Absolute lower limit' value: 'Ý~ù[ NP–'
  id: 'Absolute tolerance applied to constraints and sanity check messages.' value: '”^(uŽN¦~_gŒTTt'`Àhågˆmo`„vÝ~ù[¹[î]0'
  id: 'Absolute upper limit' value: 'Ý~ù[
NP–'
  id: 'Absolute;Relative to inventory value' value: 'Ý~ù[;øvù[“^X[<P'
  id: 'Account' value: '&îv'
  id: 'Account structure applies to all scenarios' value: '^7bÓ~„g(uŽN@b    g:Wof'
  id: 'Account type' value: '&îv{|‹W'
  id: 'Accounts' value: '&îv'
  id: 'Accounts (template)' value: '&îvÿ!jHr    ÿ'
  id: 'Action' value: 'Lˆ¨R'
  id: 'Activate' value: 'Ào;m'
  id: 'Activate all goals.' value: 'Ào;m@b    gîvh'
  id: 'Activate dataset' value: 'Ào;mpencƖ'
  id: 'Activate goal.' value: 'Ào;mîvh'
  id: 'Active goals' value: ';mÍîvh'
  id: 'Actual Inventories' value: 'ž[E–“^X['
  id: 'Actual Inventory' value: 'ž[E–“^X['
  id: 'Actual inventory' value: 'ž[E–“^X['
  id: 'Add ingredients to the selected recipies' value: 'ûm RM‘™e0R@b    M‘¹e'
  id: 'Add input product...' value: 'ûm R“eQ§NÁT'
  id: 'Add input...' value: 'ûm R“eQ& '
  id: 'Add operation to existing routing step' value: 'ûm Rå]z‚Ǐ z0Rò]    gå]z‚ek¤š'
  id: 'Add output product...' value: 'ûm R“úQ§NÁT'
  id: 'Add output...' value: 'ûm R“úQ& '
  id: 'Adjust Quantity...' value: 'Œtepeϑ...'
  id: 'Adjust quantity' value: 'Œtepeϑ'
  id: 'Adjust quantity...' value: 'Œtepeϑ...'
  id: 'Administration' value: '¡{t'
  id: 'Advanced' value: 'ؚ§~„v'
  id: 'Aggregated capacity' value: ';`¡‹§Ný€'
  id: 'Algorithm Selection' value: '—{Õl    éb'
  id: 'Alignment' value: 'Alignment'
  id: 'All dependent and sales demands are fulfilled, but there are unfulfilled inventory constraints or targets.' value: '@b    gøvsQ—BlŒT•.U—Blý—_0R†Nán³ ÿFO؏    g*gán³„v“^X[P–6Rbîvh0'
  id: 'All user groups' value: '@b    g(u7b¤'
  id: 'Allocation' value: 'RM‘'
  id: 'Allow WIP inventory' value: 'AQ¸‹(W6RÁT“^X['
  id: 'Allow negative inventory' value: 'AQ¸‹“^X['
  id: 'Allow shift pattern optimization' value: 'AQ¸‹OSísÄ~!j‹W'
  id: 'Allowed Shift Patterns' value: 'AQ¸‹ísÄ~!j‹W'
  id: 'Allowed operations in campaign types' value: 'AQ¸‹ý€WW{|‹W-NO(uå]z‚Ǐ z'
  id: 'Allowed operations in transition types' value: 'AQ¸‹Ð“{|‹W-NO(uå]z‚Ǐ z'
  id: 'Allows the definition of a secondary capacity constraint with a different unit of measurement on the transportation resource. E.g. Constraint by volume and weight.' value: 'AQ¸‹(WЏ“Dn
NO(u N T„v¡‹Ï‘USMOš[IN!k‰§Ný€¦~_g ÿ‹O‚Y×SSOïyŒT͑ϑP–6R0'
  id: 'An input lot size of 100 means that any inputs of operation using this product in stocking point will have to be a multiple of 100. By default 0 means disabled.' value: '“eQybϑ'Y\:N 100 asT@w(W“^X[¹pO(udk§NÁT„vûNUOÍd\O“eQýÅ_{˜/f 100 „v Ppe0؞¤‹Å`µQ N ÿ0 hˆ:yy(u0'
  id: 'Any campaign requirements will be considered from the start of the active planning horizon for the duration specified here' value: '(WdkYcš[„vcí~öeô•…Q ÿ\ÎN;m¨R¡‹RƒôV„v_ËY€Q†ûNUO;m¨R‰Bl0'
  id: 'Arrival' value: '0R¾'
  id: 'Assign' value: 'c>m'
  id: 'Assign product as operation input' value: '\§NÁTRM‘:NÍd\O“eQ'
  id: 'Assign product as operation output' value: '\§NÁTRM‘:NÍd\O“úQ'
  id: 'Assign product in routing to stocking point' value: '\å]z‚~-N„v§NÁTRM‘0R“^X[¹p'
  id: 'Assign product to operation input group' value: '\§NÁTRM‘0RÍd\O“eQÄ~'
  id: 'Assign to all usergroups' value: 'RM‘0R@b    g(u7b¤'
  id: 'Assign to usergroup' value: 'RM‘0R(u7b¤'
  id: 'Assigned Products' value: 'RM‘„v§NÁT'
  id: 'Assigned products' value: 'RM‘„v§NÁT'
  id: 'Assigned to Stocking Points' value: 'RM‘Ù~“^X[¹p'
  id: 'Assigned user groups' value: 'RM‘„v(u7b¤'
  id: 'Assumption' value: 'GP¾‹'
  id: 'Assumptions' value: 'GP¾‹'
  id: 'Authorizations' value: 'ˆcCg'
  id: 'Auto arrange products' value: 'ꁨR‰[’c§NÁT'
  id: 'Automatic scaling frequency' value: 'ꁨR8O)‘˜‡s'
  id: 'Balance the inventory build-up of different products of a given category.' value: 's^aˆcš[{|+R N T§NÁT„v“^X[ϑ'
  id: 'Balance tolerance' value: 's^aˆAQî]'
  id: 'Batch edit' value: 'ybϑîO9e'
  id: 'Batch edit capacity' value: 'ybϑîO9e§Ný€'
  id: 'Batch edit infinite capacity' value: 'ybϑîO9eàeP–§Ný€'
  id: 'Batch edit lot size' value: 'ybϑîO9eyb!k'Y\'
  id: 'Batch edit maintenance' value: 'ybϑ‘ô~¤b'
  id: 'Batch edit max inventory level' value: 'ybϑîO9eg'Y“^X[4ls^'
  id: 'Batch edit maximum postponement' value: 'ybϑ‘g'Yö^g'
  id: 'Batch edit min inventory level' value: 'ybϑîO9eg\“^X[4ls^'
  id: 'Batch edit miscellaneous' value: 'ybϑîO9evQÖN^\'`'
  id: 'Batch edit note' value: 'ybϑ‘èlʑ'
  id: 'Batch edit postponement horizon' value: 'ybϑ‘ö^gƒôV'
  id: 'Batch edit secondary capacity' value: 'ybϑ‘…©R¹[ϑ'
  id: 'Batch edit shift pattern optimization' value: 'ybϑ‘ís!k!j_OS'
  id: 'Batch edit validity' value: 'ybϑ‘    gHe'`'
  id: 'Below you can see which functionalities have been assigned to you. This assignment can be changed in the user administrator application.' value: ' Nb—¨`ïSåN w0RêT›NŸRý€ò]RM‘Ù~¨`0ïSåN(W(u7b¡{tXT”^(u z^-Nôf9edkRM‘0'
  id: 'Bias tolerance (%)' value: 'OPî]¹[î] (%)'
  id: 'Blending' value: 'Blending'
  id: 'Bookmark' value: 'fN~{'
  id: 'Bookmark current selection' value: 'ûm RS_MR    éb0RfN~{'
  id: 'Bookmarks' value: 'fN~{'
  id: 'Bottleneck Detection' value: 'ötˆ˜ÀhKm'
  id: 'Bottleneck Detection Parameters' value: 'ötˆ˜DnÀhKmÂSpe'
  id: 'Bottleneck Resources' value: 'ötˆ˜Dn'
  id: 'Bottleneck capacity' value: 'ötˆ˜§Ný€'
  id: 'Bottleneck detection window' value: 'ötˆ˜ÀhKm—zãS'
  id: 'Bottleneck resources' value: 'ötˆ˜Dn'
  id: 'Bottleneck threshold (%)' value: 'ötˆ˜Dn–<P(%)'
  id: 'Bottleneck tolerance (%)' value: 'ötˆ˜DnAQî]ƒôV(%)'
  id: 'Browse' value: 'Omȉ'
  id: 'Budget' value: 'M‘˜'
  id: 'By default the meta optimizer ends searching for improvements once it has converged on the last level of the strategy. Override to change this last level' value: '؞¤‹Å`µQ N ÿNæeCQOShV6e[e0RV{eu„vgTN§~ ÿƒ[1\O\Pbkd"}9eۏ0 †‰ÖvåNôf9egTN*N§~+R0'
  id: 'By default the meta optimizer starts searching for improvements on level 0 (the hidden slack level) until converged and then it advances to level 1 (the first level of the strategy), etc. Override to change this first focus level. For any iteration, scores prior to current focus are kept at equal or bettter quality' value: '؞¤‹Å`µQ N ÿNæeCQOShV6e[e0RV{eu„vgTN§~ ÿƒ[1\OÓ~_gd"}9eۏ0†‰ÖvåNôf9egTN*N§~+R'
  id: 'CO2 emission' value: 'ŒN'lS³x’c>e'
  id: 'Calculated Safety stock' value: '¡‹—{‰[hQ“^X['
  id: 'Calculations use rounding to the specified number of decimals. It does not affect representation of numbers in the application.' value: '¡‹—{O(uÛV ‚”NeQ0Rcš[„v\peMOpe0 ƒ[ Nq_ÍT”^(u z^-NpeW[„vhˆ:y0'
  id: 'Campaign' value: ';m¨R'
  id: 'Campaign Optimization' value: ';m¨ROS'
  id: 'Campaign Planning' value: ';m¨R¡‹R'
  id: 'Campaign Types' value: ';m¨R{|‹W'
  id: 'Campaign combi elements' value: 'ý€WW'
  id: 'Campaign combis' value: ';m¨RÄ~T'
  id: 'Campaign horizon' value: 'ý€WWhTg'
  id: 'Campaign planning' value: ';m¨R¡‹R'
  id: 'Campaign type' value: ';m¨R{|‹W'
  id: 'Campaign types' value: ';m¨R{|‹W'
  id: 'Campaign unit sub periods' value: 'ý€WWUSCQP[hTg'
  id: 'Campaign units' value: 'ý€WWUSCQ'
  id: 'Campaigns' value: ';m¨R'
  id: 'Campaigns & Transitions' value: 'ý€WW&Ǐ¦^'
  id: 'Campain combis' value: 'ý€WWÄ~T'
  id: 'Capacities' value: '§Ný€'
  id: 'Capacities allows users to define various types of capacities and supply targets' value: '¹[ϑAQ¸‹(u7bš[INTÍy{|‹W„v¹[ϑŒT›O”^îvh'
  id: 'Capacity' value: '§Ný€'
  id: 'Capacity Planning' value: '§Ný€¡‹R'
  id: 'Capacity smoothing' value: '§Ný€s^Ñn'
  id: 'Capacity type' value: '§Ný€{|‹W'
  id: 'Capacity usage' value: '§Ný€O(uÅ`µQ'
  id: 'Changeover' value: 'lbc'
  id: 'Changeover time' value: 'bc‹Wöeô•'
  id: 'Check this option to import the changes made in the database and excel files while executing import profiles.' value: '    -Ndk    y˜ïS(WgbLˆü[eQM‘n‡eöNöeü[eQpenc“^ŒTexcel‡eöN-N@bZP„vôf9e0'
  id: 'Check this option to overwrite user-created or edited data for imported objects' value: '    -Ndk    y˜åN†‰Övü[eQù[aŒ„v(u7bRú^b‘„vpenc0'
  id: 'Check to allow WIP inventory to be kept in between routing steps' value: '    -NåNAQ¸‹(Wå]z‚~ek¤šKNô•ÝOYu WIP “^X[0'
  id: 'Check to override the capacity type and (temporarily) plan this unit as infinite' value: '    -NåN†‰Öv§Ný€{|‹Wv^ÿ‚föe    ÿ\dkUSMO¡‹R:NàeP–0'
  id: 'Check to plan the stocking point against infinite storage capacity.' value: 'ÀhågåN9hncàeP–X[¨P§Ný€¡‹R“^X[¹p0'
  id: 'Click export button to download file' value: 'USûQü[úQ    c®” N}‡eöN'
  id: 'Click to cancel export' value: '¹pûQÖSˆmü[úQ'
  id: 'Click to export' value: '¹pûQü[úQ'
  id: 'Click to export.' value: '¹pûQü[úQ'
  id: 'Collapse slack level' value: 'MWLX~g_4ls^'
  id: 'Color' value: 'œ˜r‚'
  id: 'Color scheme' value: 'œ˜r‚¹eHh'
  id: 'Comments' value: 'èlʑ'
  id: 'Configure' value: 'M‘n'
  id: 'Configure the S&OP workflow steps and subsequent activities.' value: 'M‘nS&OPå]\OAmek¤šŒTTí~;m¨R0'
  id: 'Constraint violation' value: 'ݏÍSP–6R'
  id: 'Copy' value: ' Y6R'
  id: 'Copy Scenario...' value: ' Y6R:Wof...'
  id: 'Copy recipes including recipe ingredients' value: ' Y6RM‘¹e ÿSìbM‘¹ebR'
  id: 'Copy scenario...' value: ' Y6R:Wof...'
  id: 'Copy...' value: ' Y6R'
  id: 'Cost' value: 'b,g'
  id: 'Cost changes will not affect the existing cost.' value: 'b,g9eØS\ Nq_ÍT°s    gb,g0'
  id: 'Cost driver' value: 'b,g¨RàV'
  id: 'Cost per entity' value: 'úWŽNUS*Nž[SO„vb,g'
  id: 'Cost per period' value: 'úWŽNUS*NhTg„vb,g'
  id: 'Costs' value: 'b,g'
  id: 'Create' value: 'Rú^'
  id: 'Create Assumption...' value: 'Rú^GP¾‹:Wof'
  id: 'Create Ingredients' value: 'Rú^M‘™e'
  id: 'Create a what-if scenario based on the current scenario' value: '9hncS_MR:WofRú^GP¾‹:Wof'
  id: 'Create an assumption for the current scenario' value: ':NS_MR:WofRú^N*NGP¾‹'
  id: 'Create demo data' value: 'Rú^Demopenc'
  id: 'Create folder...' value: '°eú^‡eöN9Y...'
  id: 'Create new routing' value: 'Rú^°e„vå]z‚_'
  id: 'Create operation in new routing step' value: '(W°eå]z‚~ek¤š-NRú^Íd\O'
  id: 'Create operation link' value: 'Rú^Íd\Oþ”¥c'
  id: 'Create operation...' value: 'Rú^å]z‚Ǐ z& '
  id: 'Create recipe ingredients' value: 'Rú^M‘¹eM‘™e'
  id: 'Create routing step...' value: 'Rú^å]z‚ek¤š& '
  id: 'Create scenario...' value: 'Rú^:Wof'
  id: 'Create stocking point...' value: 'Rú^“^X[¹pMO& '
  id: 'Create unit...' value: 'Rú^›O”^þ”USCQ& '
  id: 'Currencies' value: ''^'
  id: 'Currency' value: ''^'
  id: 'Currency Rates' value: ''^Gl‡s'
  id: 'Currency rate' value: ''^Gl‡s'
  id: 'Current period' value: 'S_MRhTg'
  id: 'Current user functionalities' value: 'S_MRO(uŸRý€'
  id: 'Customer order' value: '¢[7b¢‹US'
  id: 'Customer orders' value: '¢[7b¢‹US'
  id: 'Customer orders at planning level' value: '¡‹RhTg…Q¢[7b¢‹US'
  id: 'DEF; Excel' value: 'DEF; Excel'
  id: 'Data' value: 'penc'
  id: 'Data Limits' value: 'pencP–6R'
  id: 'Datasets without scenario' value: 'àe:WofpencƖ'
  id: 'Date' value: 'åeg'
  id: 'Day;Quantity' value: ')Y;peϑ'
  id: 'Days   ;Quantity' value: ')Y   ;peϑ'
  id: 'Days;Quantity' value: ')Y;peϑ'
  id: 'Deactivate' value: 'ÖSˆmÀo;m'
  id: 'Deactivate all goals.' value: 'ÖSˆmÀo;m@b    gîvh'
  id: 'Deactivate goal.' value: 'ÖSˆmÀo;mîvh'
  id: 'Decimals' value: '\pe¹p'
  id: 'Decrease level' value: 'M–NO4ls^'
  id: 'Decrease weight' value: 'M–NOCg͑'
  id: 'Default Capacities' value: '؞¤‹§Ný€'
  id: 'Default Parameters' value: '؞¤‹ÂSpe'
  id: 'Default UoM of CO2 emission' value: 'ŒN'lS³x’c>e„v؞¤‹¡‹Ï‘USMO'
  id: 'Default UoM to be used for defining CO2 emission rates and calculating the global KPI Total CO2 emission.' value: '(uŽNš[IN CO2 ’c>e‡sŒT¡‹—{hQt KPI ;` CO2 ’c>eϑ„v؞¤‹¡‹Ï‘USMO0'
  id: 'Default cost' value: '؞¤‹b,g'
  id: 'Default efficiency' value: '؞¤‹He‡s'
  id: 'Default inventory holding costs' value: '؞¤‹“^X[c    gb,g'
  id: 'Default inventory holding costs:' value: '؞¤‹“^X[c    gb,g:'
  id: 'Default max capacity' value: '؞¤‹g'Y§Ný€'
  id: 'Default max capacity per day' value: '؞¤‹g'Yåe§Ný€'
  id: 'Default maximum duration for the campaign.' value: ';m¨R„v؞¤‹g•cí~öeô•'
  id: 'Default maximum duration for the transition type.' value: 'Ǐ!n{|‹W„v؞¤‹g'Ycí~öeô•0'
  id: 'Default maximum quantity to be produced during the campaign.' value: ';m¨RhTgu§N„v؞¤‹g'Ypeϑ0'
  id: 'Default min capacity per day' value: '؞¤‹Ïk)Yg\¹[ϑ'
  id: 'Default minimum duration for the campaign.' value: ';m¨R„v؞¤‹gíwcí~öeô•0'
  id: 'Default minimum duration for the transition type.' value: 'Ǐ!n{|‹W„v؞¤‹gíwcí~öeô•0'
  id: 'Default minimum quantity to be produced during the campaign.' value: ';m¨RhTg‰u§N„v؞¤‹g\peϑ0'
  id: 'Default number of periods for average demand' value: 's^GW—Bl„v؞¤‹hTgpe'
  id: 'Default number of perios for average demand XX' value: 's^GW—Bl XX „v؞¤‹hTgpe'
  id: 'Default shift pattern' value: '؞¤‹ís!k!j_'
  id: 'Default smart plan strategy' value: '؞¤‹zfý€¡‹RV{eu'
  id: 'Define and plan production campaigns.' value: 'š[INŒT¡‹Ru§N;m¨R0'
  id: 'Define expiry and maturation constraints on products.' value: 'š[IN§NÁT„v0RgŒT0RgP–6R0'
  id: 'Define postponement rules and perform demand postponement.' value: 'š[INö^gĉRv^gbLˆ—Blö^g0'
  id: 'Delete...' value: ' Rd–...'
  id: 'Delta (%)' value: 'Delta (%)'
  id: 'Demand' value: '—Bl'
  id: 'Demand Fulfillment' value: '—Blán³'
  id: 'Demand fulfillment per product' value: '—Blán³-§NÁT'
  id: 'Demand fulfillment per sales segment' value: '—Blán³-•.U:SßW'
  id: 'Demand fulfillment per stocking point' value: '—Blán³-“^X[¹p'
  id: 'Demand postponement' value: '—Blö^ߏ'
  id: 'Demand uncertainty (%)' value: '—Bl Nnxš['`(%)'
  id: 'Demands' value: '—Bl'
  id: 'Deselect' value: 'ÖSˆm    éb'
  id: 'Deselect All' value: 'ÖSˆm    š[@b    g'
  id: 'Destination' value: 'îv„v'
  id: 'Destinations' value: 'îv„v'
  id: 'Detailed Schedule Import' value: '§N¿~’c zü[eQ'
  id: 'Detailed schedule' value: 'æ‹Æ~öeô•hˆ'
  id: 'Determines the supply chain scope to be considered by the optimizer.' value: 'nxš[OShV‰€Q†„vu§N¡‹RƒôV0'
  id: 'Determines whether the smart plan is allowed to override the locked planning' value: 'nxš[/f&TAQ¸‹zfý€¡‹R†‰Öv•š[„v¡‹R'
  id: 'Determines if a changeover is required on successive period tasks. Period tasks using different tools will result in a changeover whose duration is specified in the global parameters.' value: 'nxš[/f&T—‰ù[ޏí~hTg„vûN¡RۏLˆlbc0 O(u N Tå]wQ„vhTgûN¡R\ü[ôlbc ÿvQcí~öeô•(WhQ@\ÂSpe-Ncš[0'
  id: 'Developer tools.' value: '_ÑSå]wQ'
  id: 'Development' value: '_ÑS'
  id: 'Deviation Detection' value: 'OPî]ÀhKm'
  id: 'Direct import - data is imported directly into MP, overwriting existing data' value: 'ôv¥cü[eQ - pencôv¥cü[eQ MP ÿ†‰Öv°s    gpenc'
  id: 'Disable' value: 'y(u'
  id: 'Down' value: 'T N'
  id: 'Downstream' value: ' N8n'
  id: 'Drill down' value: 'T N»”ÖS'
  id: 'Drill up ' value: 'T
N»”ÖS'
  id: 'Drop down list to pick an existing set.' value: ' NÉbRhˆåNþbÖS°s    gƖ0'
  id: 'Drop operation on product, or drop product on operation while holding CTRL' value: '(W§NÁT
N>enÍd\O ÿb(W    cOOCTRL.•„v Töe(WÍd\O
N>en§NÁT'
  id: 'Drop product on operation' value: '\§NÁTÖb>e0RÍd\O
N'
  id: 'Drop product on operation input' value: '\§NÁTÖb>e0RÍd\O“eQ
N'
  id: 'Drop product on operation input group' value: '\§NÁTÖb>e0RÍd\O“eQÄ~
N'
  id: 'Drop routings or operations here' value: '(WdkY>en~bÍd\O'
  id: 'Drop source operation on destination operation' value: '\nÍd\OÖb>e0RîvhÍd\O
N'
  id: 'Drop stocking point on product or vice versa' value: '\“^X[¹pÖb>e0R§NÁT
N ÿÍSKN¦N6q'
  id: 'Drop unit in routing list' value: 'å]z‚~Rhˆ-N„v Rd–USCQ'
  id: 'Drop unit on routing step' value: '\USMOÖb>e0Rå]z‚~ek¤š
N'
  id: 'Drop unit on the empty area of the canvas' value: '\USCQ>en(W;u^„vzz}v:SßW'
  id: 'Duration (TimeUnit)' value: 'cí~öeô•ÿöeô•USMO    ÿ'
  id: 'Duration inventory mix balancing filter' value: 'cí~öeô•“^X[÷mTs^aˆÇänhV'
  id: 'Duration inventory mix balancing filter XX days' value: '“^X[÷mTs^aˆÇänhV„vcí~öeô•ÿXX)Y'
  id: 'Duration lotsize horizon' value: 'ybϑ'Y\„vcí~öeô•'
  id: 'Earliest start' value: 'gée_ËY'
  id: 'Edit' value: '‘'
  id: 'Edit KPI Settings...' value: '‘KPI¾‹n...'
  id: 'Edit authorization...' value: '‘ˆcCg'
  id: 'Edit calendar...' value: '‘åe†S& '
  id: 'Edit display index...' value: '‘>f:yz˜^'
  id: 'Edit number of levels...' value: '‘§~+Rpe...'
  id: 'Edit product display index' value: '‘§NÁTU\:ycpe'
  id: 'Edit stocking point display index' value: '‘“^X[¹pU\:ycpe'
  id: 'Edit the name of new set.' value: '‘°eƖT„v Tðy0'
  id: 'Edit unit display index' value: '‘USMOU\:ycpe'
  id: 'Efficiency     ' value: 'He‡s'
  id: 'Enable' value: '_/T'
  id: 'Enable campaign sequencing optimizer' value: '/T(u;m¨R’c^OShV'
  id: 'Enable iterative optimization on sub puzzles' value: 'ù[P[Œ˜˜/T(uíãNOS'
  id: 'Enable shift pattern optimization' value: '/T(uís!k!j_OS'
  id: 'End after' value: '(WKNTÓ~_g'
  id: 'End of the detection window with respect to the start of the planning.' value: 'øvù[ŽN¡‹R_ËY„vÀhKm—zãSÓ~_g0'
  id: 'Entire planning horizon;Fixed number of periods:' value: 'te*NĉRƒôV;úVš[hTgpeÿ'
  id: 'Entities' value: 'ž[SO'
  id: 'Entities allows users to define supply chain resources and stocking points.' value: 'ž[SOAQ¸‹(u7bš[IN›O”^þ”DnŒT“^X[¹p0'
  id: 'Excel export mode' value: 'Excelü[úQ!j_'
  id: 'Excel path' value: 'Excel_'
  id: 'Excel;3DDrive;Data exchange framework' value: 'Åd•3DDrive;penc¤NbcFh¶g'
  id: 'Exclude from fulfillment KPIs' value: 'ÎNž[°s„vKPI-N’cd–'
  id: 'Exclude from fulfilment KPIs' value: ' N&{TKPI'
  id: 'Exclude from inventory mix balancing' value: 'ÎN“^X[Ä~Ts^aˆ-N’cd–'
  id: 'Exclude from inventory of stocking point' value: 'ÎN“^X[¹p„v“^X[-N’cd–'
  id: 'Exclude from optimizer' value: 'ÎNOShV-N’cd–'
  id: 'Exclude from shelf life and maturation' value: ' NSìbÝO(gŒTbŸqg'
  id: 'Exclude from utilization of unit' value: ' NO(uUSMO'
  id: 'Exclude operation input or output from the utilization calculation of unit, depending on whether it is calculated based on input or output.' value: 'ÎNUSMO)R(u‡s¡‹—{-N’cd–Íd\O“eQb“úQ ÿÖS³QŽN/f9hnc“eQ؏/f“úQ¡‹—{0'
  id: 'Exclude product in stocking point from the inventory calculation of stocking point.' value: 'ÎN“^X[¹p„v“^X[¡‹—{-N’cd–“^X[¹p-N„v§NÁT0'
  id: 'Exclude this product in stocking point from inventory mix balancing' value: 'ÎN“^X[Ä~Ts^aˆ-N’cd–“^X[¹p-N„v勧NÁT'
  id: 'Export Horizon' value: 'ü[úQƒôV'
  id: 'Export Planned Orders in respective export mode.' value: 'åNTꁄvü[úQ!j_ü[úQ¡‹R¢‹US0'
  id: 'Export data' value: 'ü[úQpenc'
  id: 'Export data from MP' value: 'ÎN MPü[úQpenc'
  id: 'Export to Excel' value: '“úQ0RExcel'
  id: 'Export to Scheduler' value: 'ü[úQ0RŒ¦^ z^'
  id: 'Export to XML' value: 'ü[úQ0RXML'
  id: 'External Supplies' value: '“^X[ü[eQ'
  id: 'External Supply' value: '“^X[ü[eQ'
  id: 'External Supply Chart' value: 'Y萛O”^þV'
  id: 'External supply' value: '“^X[ü[eQ'
  id: 'Factor' value: 'àVP['
  id: 'Feedback' value: 'ÍSˆ™'
  id: 'Feedback is locked' value: 'ÍSˆ™ò]•š['
  id: 'Feedback is locked. Optimizer must plan the fixed quantity. ' value: 'ÍSˆ™«ˆ•š[0OShVÅ_{˜¡‹RúVš[peϑ0'
  id: 'Feedback is unlocked. Optimizer must respect the feedback value as the minimum threshold.' value: 'ÍSˆ™«ˆã‰•0OShVÅ_{˜\ÍSˆ™<P\O:Ng\–<P0'
  id: 'Feedbacks' value: 'ÍSˆ™'
  id: 'Filter' value: '[{    Çän'
  id: 'Filter by Accounts' value: '9hnc&7bǏän'
  id: 'Finances' value: '"¡R'
  id: 'Financials' value: '"¡R'
  id: 'Firmed customer orders cannot be postponed.' value: 'ò]nx¤‹¢‹US NïSåN«ˆö^g'
  id: 'First level of strategy where the meta optimizer will work to improve the plan iteratively' value: 'CQOShV\íãN9eۏ¡‹R„v,{N§~V{eu'
  id: 'Folder' value: '‡eöN9Y'
  id: 'Folder...' value: '‡eöN9Y& '
  id: 'For options Add, a negative value can be used to subtract instead of add.' value: 'ù[ŽN    y˜ ûm R  ÿïSåNO(u<PۏLˆÏQÕl € N/fûm R0'
  id: 'For products that are excluded from the optimizer, this post-processing step will plan the sourcing by means of smart plan.' value: 'ù[ŽNOShV-N’cd–„v§NÁT ÿdkTYtek¤š\Çzfý€¡‹Reg¡‹RǑ-0'
  id: 'Forecast' value: '„˜Km'
  id: 'Forecasted sales demands' value: '•.U„˜Km'
  id: 'Forecasts' value: '„˜Km'
  id: 'Forecasts at planning level' value: '¡‹RhTg…Q„˜Km'
  id: 'Free' value: 'Free'
  id: 'Free capacity' value: 'ïS(u§Ný€'
  id: 'From' value: 'ÎN'
  id: 'Fulfilled quantity' value: 'Fulfilled quantity'
  id: 'Fulfillment Restrictions' value: 'án³—BlP–6R'
  id: 'Fulfillment Targets' value: 'án³—Blîvh'
  id: 'Fulfillment restriction' value: 'án³—BlP–6R'
  id: 'Fulfillment target' value: 'án³—Blîvh'
  id: 'Full storage;Partial storage;Memory only;Cached storage;Hybrid storage;Standalone storage' value: 'EQR¨PX[;èR¨PX[;ÅN…QX[;X[X[¨P;÷mTX[¨P;ìrËzX[¨P'
  id: 'Functionalities...' value: 'ŸRý€& '
  id: 'Future' value: '*geg'
  id: 'Future periods' value: '*geghTg'
  id: 'General' value: '(u'
  id: 'General Data' value: '(upenc'
  id: 'General Settings' value: '(u¾‹n'
  id: 'Generate Safety Stock' value: '(u‰[hQ“^X['
  id: 'Generate Safety Stocks' value: 'ub‰[hQ“^X['
  id: 'Global object group' value: '(uù[aŒRÄ~'
  id: 'Goal' value: 'îvh'
  id: 'Granularity' value: '—˜’|¦^'
  id: 'Group 2' value: 'Ä~2'
  id: 'Group operation inputs' value: 'Ä~Íd\O•beQ'
  id: 'Group1' value: 'Ä~1'
  id: 'Handle confirmed planned quantities.' value: 'Ytò]nx¤‹„v¡‹Rpeϑ'
  id: 'Has max level' value: '    gg'Y§~+R'
  id: 'Has secondary capacity' value: '    g,{ŒN§Ný€'
  id: 'Having an unrestricted bonus-driven goal may result in an unbounded and potentially infeasible plan.<br>Please prioritze a penalty-driven goal over any bonus-driven goals.' value: 'åb    g N×SP–6R„vVYёqš¨RîvhïSý€Oü[ô¡‹R N×SP–6RNïSý€ NïSLˆ0<br>÷‹OHQ€Q†é`Zqš¨Rîvh € N/fûNUOVYёqš¨Rîvh0'
  id: 'Hide all lane legs' value: '–Ï…@b    gfSµk'
  id: 'Hide all nodes' value: '–Ï…@b    g‚‚¹p'
  id: 'Hide all stocking point' value: '–Ï…@b    g“^X[¹p'
  id: 'Hide all units' value: '–Ï…@b    gUSMO'
  id: 'Hide node' value: '–Ï…‚‚¹p'
  id: 'Hide the selected KPI(s)' value: '–Ï…    š[„vKPI'
  id: 'High threshold' value: 'ؚ–<P'
  id: 'Highest severity ' value: 'gؚ%N͑§~+R'
  id: 'Historical' value: '†SòS'
  id: 'Historical period / Unavailable' value: '†SòShTg /  NïS(u„v'
  id: 'Historical periods' value: '†SòShTg'
  id: 'Hold safety stock for selected product in stocking point. To be used in conjunction with safety stock calculation.' value: '(W“^X[¹p:N    š[„v§NÁTÝOYu‰[hQ“^X[0 N‰[hQ“^X[¡‹—{Ó~TO(u0'
  id: 'Horizon' value: 'hTg•¦^'
  id: 'ID' value: 'ID'
  id: 'If checked, the smart plan will ensure that the total supply of this product in this stocking point in this period will be equal to the specified total supply.<br>If unchecked, the smart plan will determine the demand fulfillment of the product in this stocking point in this period according to the selected strategy.' value: '‚Yœg    -N ÿzfý€¡‹R\nxÝOå‹gô•å‹“^X[¹p„v勧NÁT;`›O”^ϑI{ŽNcš[„v;`›O”^ϑ<br>‚Yœg*g    -N ÿzfý€¡‹R\9hnc@b    V{eunxš[å‹gô•å‹“^X[¹p§NÁT„v—Blán³0'
  id: 'If set to true then slack level is added to focus level for a single solver call' value: '‚Yœg¾‹n:Ntrue ÿR~g_§~+R\ûm R0RUS*N㉗{hVŒ(u„v&q¹p§~+R'
  id: 'Ignore' value: 'ý_Ɖ'
  id: 'Import & export data. Configure integration settings.' value: 'ü[eQŒTü[úQpenc0M‘nƖb¾‹n0'
  id: 'Import from XML' value: 'ÎNXMLü[eQ'
  id: 'Import profile' value: 'ü[eQ€{ËN'
  id: 'Import profiles' value: 'ü[eQ€{ËN'
  id: 'Importance' value: '͑‰'`'
  id: 'Inactive goals' value: ' N;mÍîvh'
  id: 'Include from utilization of unit' value: 'Sìbňn)R(u‡s'
  id: 'Include in calculation of supply specification' value: 'Sìb(W›O”^ĉƒ„v¡‹—{-N'
  id: 'Include in utilization of unit' value: 'S+T(W:gÄ~)R(u‡s-N'
  id: 'Include operation input or output from the utilization calculation of unit, depending on whether it is calculated based on input or output.' value: 'SìbUSCQ)R(u‡s¡‹—{„vÍd\O“eQb“úQ ÿÖS³QŽNƒ[/fúWŽN“eQ؏/fúWŽN“úQ¡‹—{„v0'
  id: 'Increase level' value: 'Increase level'
  id: 'Increase weight' value: 'žX RCg͑'
  id: 'Indicate the horizon in which the MP plan will be exported' value: 'cf\ü[úQMP¡‹R„vƒôV'
  id: 'Infinite capacity' value: 'àeP–§Ný€'
  id: 'Infinite;Quantity;Quantity aggregation;Time;Time aggregation;Transport quantity' value: 'àeP–;peϑ;peϑZ€T;öeô•;öeô•Z€T;Џ“Ï‘'
  id: 'Ingredient' value: 'bR'
  id: 'Ingredients' value: 'bR'
  id: 'Input' value: '“eQ'
  id: 'Input group' value: '“eQÄ~'
  id: 'Input lot size (UOM)' value: '“eQybϑÿUOM    ÿ'
  id: 'Input quantity' value: '“eQϑ'
  id: 'Input quantity;Output quantity' value: '“eQϑ;§Nϑ'
  id: 'Inventory' value: '“^X['
  id: 'Inventory Accounts' value: 'X['&7b'
  id: 'Inventory Cost' value: 'X['b,g'
  id: 'Inventory Costs' value: 'X['b,g'
  id: 'Inventory Levels' value: '“^X[4ls^'
  id: 'Inventory Parameters' value: '“^X[ÂSpe'
  id: 'Inventory Target' value: '“^X[îvh'
  id: 'Inventory Targets' value: '“^X[îvh'
  id: 'Inventory balancing settings' value: '“^X[s^aˆ¾‹n'
  id: 'Inventory is allowed to go negative.' value: 'AQ¸‹“^X[:Npe0'
  id: 'Inventory level end' value: 'Inventory level end'
  id: 'Inventory levels' value: '“^X[4ls^'
  id: 'Inventory mix balancing' value: '“^X[Ä~Ts^aˆ'
  id: 'Inventory value of products has to be defined for calculating inventory holding costs.' value: 'Å_{˜š[IN§NÁT„vX['÷N<P ÿåN¡‹—{X['c    gb,g0'
  id: 'Is by-product' value: '/foR§NÁT'
  id: 'Is eligible for netting' value: '    gD<hۏLˆÀQ˜Ó~—{'
  id: 'Is firmed' value: '/f&Tnxš['
  id: 'Is planned infinite' value: '/f&TàeP–¡‹R'
  id: 'Is product category' value: '/f§NÁT{|+R'
  id: 'Is usable if expired within period' value: '‚Yœg(WgP–…QǏg ÿRïS(u'
  id: 'Is usable if matured within period' value: '‚Yœg(WgP–…Q0Rg ÿRïS(u'
  id: 'KPI Dashboard' value: 'KPIb—g'
  id: 'KPI Horizon' value: 'KPIƒôV'
  id: 'KPI Matrix' value: 'KPIéw5–'
  id: 'KPI Selection' value: 'KPI    éb'
  id: 'KPI Settings' value: 'KPI¾‹n'
  id: 'KPI horizon' value: 'KPIƒôV'
  id: 'KPI horizon will automatically be reset to planning horizon start and end after period roll.' value: 'KPI è¦^\(WhTgÚn¨RTꁨR͑n:N¡‹R荦^_ËYŒTÓ~_g0'
  id: 'Keep Safety Stock' value: 'ÝOc‰[hQ“^X['
  id: 'Keep safety stock' value: 'ÝOc‰[hQ“^X['
  id: 'Lane' value: 'fS'
  id: 'Lane Definitions' value: 'Џ“ï„_š[IN'
  id: 'Lane Legs' value: 'Џ“ï¿~'
  id: 'Lane leg' value: 'fSµk'
  id: 'Lanes' value: 'fS'
  id: 'Last focus level' value: '
NNfocusI{§~'
  id: 'Lead time' value: 'ÐcMRg'
  id: 'Lead time for dependent demand' value: 'øvsQ—Bl„v¤N'öeô•'
  id: 'Leave empty if the unit is at the highest level; otherwise select the parent unit' value: '‚YœgUSCQYŽNgؚ§~+R ÿRÝOYu:Nzz;&TR ÿ    éb6rUSMO'
  id: 'Left' value: 'æ]§O'
  id: 'Legend capacity planning' value: 'þV‹O§Ný€¡‹R'
  id: 'Legend period' value: 'þV‹OhTg'
  id: 'Legend product planning' value: 'þV‹O§NÁT¡‹R'
  id: 'Legend routing configurator' value: 'þV‹Oå]z‚~M‘nhV'
  id: 'Legend supply planning' value: 'þV‹O›O”^¡‹R'
  id: 'Legend...' value: 'þV‹O'
  id: 'Length of time' value: 'öeô••¦^'
  id: 'Level' value: 'Level'
  id: 'Limit on the number of campaign and transition changes per combi.' value: 'ù[Ïk*NÄ~T„v;m¨RŒTǏ!nôf9epeϑ„vP–6R0'
  id: 'Limit the gap in capacity usage between subsequent periods for specific resources.' value: 'P–6Ryrš[Dn„vTí~öeµkKNô•„v¹[ϑO(uî]ݍ0'
  id: 'Limit the units used by smart plan' value: 'P–6Rzfý€¡‹RO(u„vUSMO'
  id: 'Load' value: ' R}'
  id: 'Load percentage' value: '}~vRÔk'
  id: 'Lock' value: '•š['
  id: 'Lot size' value: 'ybϑ'Y\'
  id: 'Lot size horizon <XXXX> days' value: 'ybϑƒôVÿXXXXÿ)Y'
  id: 'Lot size horizon XXXX days' value: 'ybϑƒôVXXXX)Y'
  id: 'Lot size settings' value: 'ybϑ'Y\¾‹n'
  id: 'Lot size tolerance' value: 'ybϑlQî]'
  id: 'Lot sizes' value: 'yb!k'Y\'
  id: 'MP-SC Integration' value: 'MP-SCƖb'
  id: 'MP-SC integration export mode' value: 'MP-SCƖbü[úQ!j_'
  id: 'MP_Designer_OptimizerStrategySetting_CanBeChanged_Tooltip' value: 'MP_Designer_OptimizerStrategySetting_CanBeChanged_Tooltip'
  id: 'Macro Planner' value: 'Macro Planner'
  id: 'Maintain optimizer settings' value: 'ô~¤bOShV¾‹n'
  id: 'Maintain scope (puzzle) used for optimizer run' value: 'ô~¤b(uŽNOS z^ЏLˆ„vƒôVÿübþV    ÿ'
  id: 'Maintenance' value: 'ô~¤b'
  id: 'Maintenance decreases the available time per selected time unit with the set duration' value: 'ô~¤båN¾‹n„vcí~öeô•ÏQ\Ïk*N    š[öeô•USMO„vïS(uöeô•'
  id: 'Maintenance per day' value: 'Ïkåeô~¤b'
  id: 'Manage Contents' value: '¡{t…Q¹['
  id: 'Manage dynamic bill-of-materials.' value: '¡{t¨R`ir™enUS0'
  id: 'Manage financial accounts and costs.' value: '¡{t"¡R&îvŒTb,g0'
  id: 'Manage sales segments and sales demands. ' value: '¡{t•.Uèè•ŒT•.U—Bl0'
  id: 'Manage supply chain parameters (units of measure, currencies) and entities (products, resources, processes).' value: '¡{t›O”^þ”ÂSpeÿ¡‹Ï‘USMO0'^    ÿŒTž[SOÿ§NÁT0Dn0Am z    ÿ0'
  id: 'Manufactured date' value: 'u§Nåeg'
  id: 'Maturation (days)' value: 'bŸq¦^ÿ)Y    ÿ'
  id: 'Maturation specifies the number of days a product cannot be utilized for demand while it matures.' value: 'bŸq¦^cš[§NÁTbŸqöe Ný€(uŽN—Bl„v)Ype0'
  id: 'Max' value: 'g'Y'
  id: 'Max capacity' value: 'g'Yb͑'
  id: 'Max inventory' value: 'Max inventory'
  id: 'Max load percentage' value: 'g'Ywƒ~vRÔk'
  id: 'Max number of messages per group to be shown in the sanity check dialog.' value: '(WTt'`Àhågù[݋Fh-N>f:y„vÏk*NÄ~„vg'Yˆmo`pe0'
  id: 'Max number per group' value: 'ÏkÄ~g'Ypeϑ'
  id: 'Max quantity' value: 'g'Ypeϑ'
  id: 'Maximum' value: 'Maximum'
  id: 'Maximum displayable value in the KPI gauge for this KPI' value: 'dkKPI„vKPIêNhˆ-N„vg'YïS>f:y<P'
  id: 'Maximum duration for the campaign.' value: ';m¨R„vg•cí~öeô•0'
  id: 'Maximum number of elements in campaign combi' value: ';m¨RÄ~T-N„vg'YCQ }pe'
  id: 'Maximum postponement' value: 'g•ö^g'
  id: 'Maximum quantity' value: 'g'Ypeϑ'
  id: 'Maximum quantity to be produced during the campaign.' value: ';m¨RhTgu§N„vg'Ypeϑ0'
  id: 'Maximum time for all iterations (sec.)' value: '@b    gíãN„vg'Yöeô•ÿÒy    ÿ'
  id: 'Medium threshold' value: '-N–<P'
  id: 'Merge' value: 'Tv^'
  id: 'Merge sales demand to reset postponed quantities' value: 'Tv^•.U—BlåN͑nö^gpeϑ'
  id: 'Meta optimizer' value: 'CQOShV'
  id: 'Min' value: 'g\'
  id: 'Min inventory' value: 'Min inventory'
  id: 'Min load percentage' value: 'g\wƒ~vRÔk'
  id: 'Min quantity' value: 'g\peϑ'
  id: 'Minimum' value: 'Minimum'
  id: 'Minimum displayable value in the KPI gauge for this KPI' value: 'dkKPI„vKPIêNhˆ-N„vg\ïS>f:y<P'
  id: 'Minimum duration' value: 'g\cí~öeô•'
  id: 'Minimum duration for the campaign.' value: ';m¨R„vgíwcí~öeô•0'
  id: 'Minimum quantity' value: 'g\peϑ'
  id: 'Minimum quantity to be produced during the campaign.' value: ';m¨Rgô•u§N„vgNOpeϑ0'
  id: 'Minimum supply quantity between start and end dates.' value: '_ËYåegŒTÓ~_gåegKNô•„vg\›O”^ϑ0'
  id: 'Miscellaneous' value: 'Bgy˜'
  id: 'Move down' value: ' Nûy'
  id: 'Move node' value: 'ûy¨R‚‚¹p'
  id: 'Move to bottom' value: 'ûy0R•^è'
  id: 'Move to top' value: 'ûy0Rv˜è'
  id: 'Move up' value: '
Nûy'
  id: 'Multiplication factor for the efficiency of time-based resources. For example, set to 0.8 if a resource can only achieve 80% of its specified throughput.' value: 'úWŽNöeô•„vDnHe‡s„v PžXàVP[0 ‹O‚Y ÿ‚YœgDnêSý€ž[°svQcš[TTϑ„v 80% ÿR¾‹n:N 0.80'
  id: 'Navigation' value: 'ü[*‚'
  id: 'Netted quantity' value: 'ÀQ˜'
  id: 'New set' value: '°e¾‹n'
  id: 'No Safety Stock' value: 'àe‰[hQ“^X['
  id: 'Nodes' value: '‚‚¹p'
  id: 'Nominal quantity' value: 'hðypeϑ'
  id: 'Note' value: 'Yèl'
  id: 'Note that quantity capacity only applies to quantity-based units.' value: '÷‹èla ÿpeϑ¹[ϑÅN(uŽNúWŽNpeϑ„vUSMO0'
  id: "Note that transport availability only applies to units of capacity type 'Transport quantity'." value: '÷‹èla ÿЏ“ïS(u'`ÅN(uŽN¹[ϑ{|‹W:N Ð“peϑ „vUSMO0'
  id: 'Number of decimals' value: 'pe<P¾|¦^'
  id: 'Number of periods' value: 'hTgpe'
  id: 'Number of periods in window' value: '—zãS-N„vhTgpe'
  id: 'Number of periods per slide' value: 'Ïk _{^opGr„vhTgpe'
  id: 'Number of periods smart plan' value: 'zfý€¡‹R„vhTgpe'
  id: 'Number of periods that the active window moves forward in each slide.' value: ';m¨R—zãS(WÏk _{^opGr-NTMRûy¨R„vhTgpe0'
  id: 'Number of units' value: 'USMOpe'
  id: 'OK & Run' value: 'nxš[v^ЏLˆ'
  id: 'Objective' value: 'îvh'
  id: 'Once checked, all associated sales demands will be excluded from the calculation of all fulfillment-related KPIs. In the meantime, the sales demands have the lowest priority in fulfillment, and safety stock deployment will not take them into account.' value: '    -NT ÿ@b    gøvsQ„v•.U—Bl\«ˆ’cd–(W@b    gNe\LˆøvsQ„v KPI „v¡‹—{KNY0 Töe ÿ•.U—Bl(We\Lˆ-N„vOHQ§~gNO ÿ‰[hQ“^X[èr NO\vQ€Q†(W…Q'
  id: 'Once checked, the sales demand is excluded from the calculation of all fulfillment-related KPIs. In the meantime, the sales demand has the lowest priority in fulfillment, and safety stock deployment will not take it into account.' value: 'Næe    -N ÿ•.U—Bl\«ˆ’cd–(W@b    gNŒ[bøvsQ„vKPIs¡‹—{KNY0 Töe ÿ•.U—Bl„vž[°sOHQ§~gNO ÿ‰[hQ“^X[èr N€Q†0'
  id: 'Only plan one step upstream' value: 'êS¡‹R
N8nNek'
  id: 'Open' value: 'Sb_'
  id: 'Open Optimizer Strategies panel' value: 'Sb_OShVV{eub—g'
  id: 'Open view' value: 'Sb_ƉþV'
  id: 'Operation' value: 'Íd\O'
  id: 'Operation Accounts' value: 'Џ%„&7b'
  id: 'Operation Cost' value: 'Íd\Ob,g'
  id: 'Operation Costs' value: 'Џ%„b,g'
  id: 'Operation Feedback' value: 'Íd\OÍSˆ™'
  id: 'Operation input / output' value: 'Íd\O“eQ/“úQ'
  id: 'Operation input group' value: 'Íd\O“eQÄ~'
  id: 'Operations' value: 'Íd\O'
  id: 'Optimization campaign combi instances' value: ';m¨RÄ~Tž[‹O„vOS'
  id: 'Optimizer' value: 'OShV'
  id: 'Optimizer Puzzle' value: 'OShV‘uî•'
  id: 'Optimizer Puzzles' value: 'OShV‘uî•'
  id: 'Optimizer Settings' value: 'OS¾‹n'
  id: 'Optimizer Strategies' value: 'OSV{eu'
  id: 'Optimizer benchmarking' value: 'OShVúWÆQKmՋ'
  id: 'Optimizer campaign combis' value: 'OShV;m¨RÄ~T'
  id: 'Optimizer output noise threshold' value: 'OShV“úQjVðX–<P'
  id: 'Optimizer output will be set to zero if it is below this threshold' value: '‚YœgNOŽNdk–<P ÿOShV“úQ\¾‹n:Nö–'
  id: 'Optimizer runs' value: 'OShVЏLˆ'
  id: 'Optimizer strategy' value: 'OShVV{eu'
  id: 'Optimizer...' value: 'OShV...'
  id: 'Options' value: '    y˜'
  id: 'Origin' value: 'egn'
  id: 'Original Quantity (uom)' value: 'ŸSËYpeϑÿuom    ÿ'
  id: 'Origins' value: 'egn'
  id: 'Outlier tolerance (%)' value: '_8^<P¹[î] (%)'
  id: 'Output' value: '“úQ'
  id: 'Overlapped smoothing' value: '͑àSs^Ñn'
  id: 'Overload' value: 'Overload'
  id: 'Overload threshold (%)' value: 'Ǐ}–<Pÿ%    ÿ'
  id: 'Overloaded capacity' value: 'Ǐ}§Ný€'
  id: 'Override calculated safety stock' value: '†‰Öv¡‹—{„v‰[hQ“^X['
  id: 'Override first focus level' value: '†‰Öv,{N*N&q¹plevel'
  id: 'Override frozen duration of parent' value: '†‰Öv6r§~„v»QÓ~cí~öeô•'
  id: 'Override last focus level' value: '†‰ÖvgTN*N&q¹plevel'
  id: 'Override lead time of lane' value: '…pšÐ“ï¿~ÐcMRg'
  id: 'Override locked planning' value: '†‰Öv•š[ĉR'
  id: 'Override unit of measurement' value: '…pš¡‹Ï‘USMO'
  id: 'Override volume settings of unit' value: '†‰Övňn„vó—Ï‘¾‹n'
  id: 'Overview' value: '‚ið'
  id: 'Overwrite manual configurations' value: '†‰ÖvKb¨RM‘n'
  id: 'PISP fof unit SP + Product and child' value: 'PISP fofUSCQSP+§NÁTŒTP[§~'
  id: 'PISP from product and child' value: '§NÁTŒTP[§NÁT„vPISP'
  id: 'PISP from stocking point and unit sp' value: 'egꁓ^X[¹pŒTUSMOsp„vPISP'
  id: 'Panel' value: 'b—g'
  id: 'Parameter Data' value: 'ÂSpepenc'
  id: 'Parameters' value: 'ÂSpe'
  id: 'Parameters contains views where users can define periods, units of measure and currencies.' value: 'ÂSpeS+T(u7bïSåNš[INgô•0¦^ϑUSMOŒT'^„vƉþV0'
  id: 'Parent account' value: 'Ík&7b'
  id: 'Parent sales segment' value: 'Ík•.Uèè•'
  id: 'Parent unit' value: 'ÍkUSMO'
  id: 'Path' value: '_'
  id: 'Pegged demands' value: 'c©”—Bl'
  id: 'Pegged supplies' value: 'c©”›O”^'
  id: 'Period' value: 'hTg'
  id: 'Period alignment' value: 'hTgù[PŸ'
  id: 'Period duration' value: 'hTgcí~öeô•'
  id: 'Period overview' value: 'hTg‚iȉ'
  id: 'Period roll' value: 'hTgÚn¨R'
  id: 'Period specification' value: 'hTgĉƒ'
  id: 'Period specification to use for visualization' value: '(uŽNïSƉS„vhTgĉƒ'
  id: 'Period specifications' value: 'hTgĉƒ'
  id: 'Periods' value: 'hTg'
  id: 'Plan' value: '¡‹R'
  id: 'Plan for non-frozen periods.' value: '¡‹R^—»QÓ~g0'
  id: 'Plan with quantities which are multiples of specified lot sizes.' value: '¡‹Rpeϑ:Ncš[ybϑ„v Ppe0'
  id: 'Planned Order Export ' value: 'ü[úQ¡‹R¢‹US'
  id: 'Planned Orders Export' value: 'ü[úQ¡‹R¢‹US'
  id: 'Planned inventory' value: '¡‹R“^X['
  id: 'Planning' value: '¡‹R'
  id: 'Planning one step upstream is only relevant when the smart plan direction is upstream' value: 'ÅNS_zfý€¡‹R¹eT:N
N8nöe ÿĉR
N8nNekMbøvsQ'
  id: 'Planning periods' value: '¡‹RhTg'
  id: 'Post-processing for sourcing' value: 'Ǒ-TYt'
  id: 'Postpone sales demand' value: '¨cߏ•.U—Bl'
  id: 'Postpone to' value: '¨cߏ0R'
  id: 'Postpone...' value: '¨cߏ...'
  id: 'Postponement Settings' value: 'ö^ߏ¾‹n'
  id: 'Postponement horizon' value: 'ö^ggP–'
  id: 'Postponement penalties' value: 'ö^gYZ'
  id: 'Postponement penalty' value: 'ö^gYZ'
  id: 'Postponement specification' value: 'ö^gĉƒ'
  id: 'Postponement specifications' value: 'ö^gĉƒ'
  id: 'Precision' value: '¾|nx¦^'
  id: 'Priorities' value: 'OHQ§~'
  id: 'Priority' value: 'OHQ§~'
  id: 'Process from unit and child' value: 'egêUSCQŒTP[§~„vAm z'
  id: 'Processes' value: 'å]^'
  id: 'Processes allows users to define operations, transportation and campaigns.' value: 'Am zAQ¸‹(u7bš[INÍd\O0Џ“ŒT;m¨R0'
  id: 'Product' value: '§NÁT'
  id: 'Product Levels' value: '§NÁTB\§~'
  id: 'Product Output' value: '§NÁT§Nϑ'
  id: 'Product Planning' value: '§NÁT¡‹R'
  id: 'Product in Stocking Point' value: '“^X[¹p-N„v§NÁT'
  id: 'Product in stocking point' value: '“^X[¹p-N„v§NÁT'
  id: 'Product level' value: '§NÁTB\§~'
  id: 'Product output' value: '§NÁT§Nϑ'
  id: 'Product recipe assignment' value: '§NÁTM‘¹eRM‘'
  id: 'Products' value: '§NÁT'
  id: 'Products allows users to define products and recipes.' value: '§NÁTAQ¸‹(u7bš[IN§NÁTŒTM‘¹e0'
  id: 'Products in Stocking Points' value: '“^X[¹p„v§NÁT'
  id: 'Profiler' value: 'VRghV'
  id: 'Puzzle' value: '¾–˜˜'
  id: 'Quantity' value: 'peϑ'
  id: 'Quantity (Ton)' value: 'peϑÿ(T    ÿ'
  id: 'Quantity (uom)' value: 'peϑÿ¡‹Ï‘USMO    ÿ'
  id: 'Quantity Capacities' value: 'peϑŒT¹[ϑ'
  id: 'Quantity Capacity' value: 'peϑŒT¹[ϑ'
  id: 'Quantity and Transport Capacities' value: 'peϑŒTЏ“ý€›R'
  id: 'Quantity to be postponed' value: 'ö^gpeϑ'
  id: 'Quantity;Duration' value: 'peϑ;gô•'
  id: 'Rate' value: '¦^'
  id: 'Rates Chart' value: 'Ôk‡sþVhˆ'
  id: 'Read-only or historical value.' value: 'êSû‹b†SòS<P'
  id: 'Recipe' value: 'M‘¹e'
  id: 'Recipe Assignments' value: 'M‘¹e\ON'
  id: 'Recipe Definitions' value: 'M‘¹eš[IN'
  id: 'Recipe ingredient / recipe product' value: 'M‘¹ebR /M‘¹e§NÁT'
  id: 'Recipe ingredients' value: 'M‘¹ebR'
  id: 'Recipes' value: 'M‘¹e'
  id: 'Redo' value: '͑ZP'
  id: 'Redo last change' value: '͑ZP
N!kôf9e'
  id: 'Refresh KPI for active scenario' value: '7R°e;m¨R:Wof„vKPI'
  id: 'Refresh sanity check messages' value: '7R°eTt'`ÀhågáOo`'
  id: 'Refresh the drawing.' value: '7R°eØ~þV0'
  id: 'Relative tolerance applied to constraints and sanity check messages for lot size.' value: '”^(uŽNybϑ'Y\„v¦~_gŒTTt'`Àhågˆmo`„vøvù[¹[î]0'
  id: 'Remove ingredients from the selected recipies' value: 'ÎN    š[„v‰lÀmir-Nûyd–bR'
  id: 'Report type' value: '¥bJT{|‹W'
  id: 'Reset' value: '͑n'
  id: 'Reset All...' value: '͑n@b    g...'
  id: 'Reset KPI horizon at period roll' value: '(WhTgÚn¨Röe͑nKPIƒôV'
  id: 'Reset Plan' value: '͑n¡‹R'
  id: 'Reset all;Reset locked planning;Reset plan of optimizer' value: '͑nhQè;͑n•š[ĉR;OShV͑n¡‹R'
  id: 'Reset filter' value: ' YMOänâlhV'
  id: 'Reset selection' value: '͑n    éb'
  id: 'Reset the period alignment to the Start of planning' value: '\hTgù[PŸÍ‘n:N ¡‹R„v_ËY '
  id: 'Reset to default value' value: '͑n:N؞¤‹<P'
  id: 'Responses' value: 'ÞV”^'
  id: 'Restore default' value: 'b` Y؞¤‹<P'
  id: 'Restore item' value: 'b` Yy˜îv'
  id: 'Right' value: 'ckS_'
  id: 'Roll to next period' value: 'Ún¨R0R NN*NhTg'
  id: 'Roll to the next period of the selected period specification.' value: 'Ún¨R0R@b    hTgĉƒ„v NN*NhTg0'
  id: 'Roll to the selected period in the Period overview chart.' value: 'Ún¨R0Rgô•‚iȉþV-N„v    š[gô•0'
  id: 'Roll to this period' value: 'Ún¨R0Rdköeµk'
  id: 'Routing' value: 'å]z‚~'
  id: 'Routing Configurator' value: 'å]z‚~M‘nhV'
  id: 'Routing step' value: 'å]z‚~ek¤š'
  id: 'Routings' value: 'å]z‚~'
  id: 'Run full plan optimization for levels up to the first overriden focus level. This run is equivalent to the non-meta strategy where levels from the focus level and higher have been removed' value: 'ù[ôv0R,{N*N†‰Öv„v&q¹p§~+R„v§~+RЏLˆŒ[te„v¡‹ROS0 dkЏLˆI{HeŽN^—CQV{eu ÿvQ-N&q¹p§~+RŒTôfؚ§~+R„v§~+Rò]«ˆ Rd–0'
  id: 'Run full plan optimization prior to first focus level' value: '(W,{N*N&q¹plevelKNMRЏLˆŒ[te„v¡‹ROS'
  id: 'Run optimizer' value: 'ЏLˆOShV'
  id: 'Run pegging algorithm after optimizer run' value: '(WOShVЏLˆTЏLˆš[MO—{Õl'
  id: 'Run smart plan synchronously' value: ' TekЏLˆzfý€¡‹R'
  id: 'Run the optimizer under a specified planning strategy.' value: '(Wcš[„v¡‹RV{eu NЏLˆOShV0'
  id: 'Running smart plan synchronously keeps undo enabled, but for large smart plan tasks it can affect the responsiveness of the system' value: ' TekЏLˆzfý€¡‹ROO¤d•YŽN/T(u¶r` ÿFO/fù[ŽN'Y‹Wzfý€¡‹RûN¡R ÿƒ[Oq_ÍTû|ß~„vÍT”^ý€›R'
  id: 'SCV config' value: 'SCVM‘n'
  id: 'Safety Stock' value: '‰[hQ“^X['
  id: 'Safety Stock Chart' value: '‰[hQ“^X[þV'
  id: 'Safety Stock Parameters' value: '‰[hQ“^X[ÂSpe'
  id: 'Safety Stocks' value: '‰[hQ“^X['
  id: 'Safety stock' value: '‰[hQ“^X['
  id: 'Safety stock calculation' value: '‰[hQ“^X[¡‹—{'
  id: 'Safety stock generated by algorithm.' value: '—{Õlub„v‰[hQ“^X[0'
  id: 'Safety stock in days' value: '‰[hQ“^X[)Ype'
  id: 'Safety stock in days indicate the number of days of sales demand that will be fulfilled by the safety stock. Safety stock in quantity indicate the amount of sales demand that will be fulfilled by the safety stock.' value: '‰[hQ“^X[)Ypehˆ:y‰[hQ“^X[\án³„v•.U—Bl)Ype0‰[hQ“^X[peϑhˆ:y‰[hQ“^X[\án³„v•.U—Blϑ0'
  id: 'Safety stock in quantity (Ton)' value: '‰[hQ“^X[ϑÿ(T    ÿ'
  id: 'Sales' value: '•.U'
  id: 'Sales Demand Dashboard' value: '•.U—BlêNhˆg'
  id: 'Sales Demand Export ' value: 'ü[úQ•.U—Bl'
  id: 'Sales Demand Import' value: 'ü[eQ•.U—Bl'
  id: 'Sales Demands' value: '•.U—Bl'
  id: 'Sales Levels' value: 'Sales levels'
  id: 'Sales Segments' value: '•.Uèè•'
  id: 'Sales by product' value: '•.U-    c§NÁT'
  id: 'Sales by sales segment' value: '•.U-    c:SßW'
  id: 'Sales by stocking point' value: '•.U-    c“^X[¹p'
  id: 'Sales demand' value: '•.U—Bl'
  id: 'Sales demands' value: '•.U—Bl'
  id: 'Sales demands at planning level' value: '¡‹Rg…Q•.U—Bl'
  id: 'Sales level' value: 'Sales level'
  id: 'Sales segment' value: '•.Uèè•'
  id: 'Sales segment and child' value: '•.U:SßWÊSP[y˜'
  id: 'Sales segments' value: '•.Uèè•'
  id: 'Sanity Check' value: 'Tt'`Àhåg'
  id: 'Sanity Check Parameters' value: '    gHe'`ÀhågÂSpe'
  id: 'Sanity Checks' value: '    gHe'`Àhåg'
  id: 'Sanity check group' value: 'Tt'`ÀhågÄ~'
  id: 'Sanity check groups' value: 'Tt'`ÀhågÄ~'
  id: 'Sanity check messages' value: 'Tt'`ÀhågáOo`'
  id: 'Save my preferences' value: 'ÝOX[b„v–™    y˜'
  id: 'Saved changes will be discarded.' value: 'ò]ÝOX[„vôf9e\«ˆ"N_0'
  id: 'Scenario Analysis' value: ':WofRg'
  id: 'Scenario Comparison' value: ':Wofù[Ôk'
  id: 'Scenario Comparison Costs' value: ':Wofb,gù[Ôk'
  id: 'Scenario Comparison Demand Fulfillment' value: '—Blž[°s„vÅ`ofÔkƒ'
  id: 'Scenario Management' value: ':Wof¡{t'
  id: 'Scenario Manager' value: ':Wof¡{thV'
  id: 'Scenario Selection' value: ':Wof    éb'
  id: 'Scenario Settings' value: ':Wof¾‹n'
  id: 'Scenario Summary' value: ':WofGl;`'
  id: 'Scenario authorization' value: ':WofˆcCg'
  id: 'Scenario folder' value: ':Wof‡eöN9Y'
  id: 'Scenario folder name' value: ':Wof‡eöN9Y Tðy'
  id: 'Scenario name' value: ':Wof Tðy'
  id: 'Scenario-specific object groups' value: ':Wofyrš[îvhÄ~'
  id: 'Scenario...' value: ':Wof& '
  id: 'Scenarios' value: ':Wof'
  id: 'Scenarios and settings' value: ':WofÊS¾‹n'
  id: 'Secondary Capacity' value: '!k‰§Ný€'
  id: 'Select All' value: '    ébhQè'
  id: 'Select KPIs...' value: '    ébKPI...'
  id: 'Select Sales demand' value: '    éb•.U—Bl'
  id: 'Select Sales demand to import' value: '    éb‰ü[eQ„v•.U—Bl'
  id: 'Select Scheduler plan / Excel data to import' value: '    éb‰ü[eQ„v¡‹R z^¡‹R/Excelpenc'
  id: 'Select an input from the routing configurator' value: 'ÎNå]z‚~M‘nhV-N    éb“eQ'
  id: 'Select an input group from the routing configurator' value: 'ÎNå]z‚~M‘nhV-N    éb“eQÄ~'
  id: 'Select an output product from the routing configurator' value: 'ÎNå]z‚~M‘nhV-N    éb“úQ§NÁT'
  id: 'Select demo' value: '    ébo:y'
  id: 'Select demo dataset' value: '    ébo:ypencƖ& '
  id: 'Select destination to export' value: '    éb‰ü[úQ„vîvh'
  id: 'Select sales demand to import.' value: '    éb‰ü[eQ„v•.U—Bl0'
  id: 'Select scenario' value: '    éb:Wof'
  id: 'Select the demo you want to load. This will create the selected scenarios for this demo and run the optimizer on the scenarios.' value: '    éb‰ R}„vo:y0ُ\:Nå‹o:yRú^    š[„v:Wof ÿv^(Wُ›N:Wof
NЏLˆOShV0'
  id: 'Select the scenario you want to load. [All] will load all the scenarios for this demo.' value: '    éb‰ R}„v¹eHh0[All]\ R}dko:y„v@b    g:Wof0'
  id: 'Select the shift pattern on which the unit operates.' value: '    ébUSMOЏLˆöe„vís!k!j_'
  id: 'Select unit in the Navigation panel' value: '(Wü[*‚b—g-N    éb USMO '
  id: 'Selected scenario' value: '    š[:Wof'
  id: 'Selected units' value: '    š[„vUSMO'
  id: 'Service Level' value: 'Service level'
  id: 'Service level (%)' value: ' g¡R4ls^ÿ%    ÿ'
  id: 'Set a product as by-product to exclude it from the cost and capacity calculations' value: '\§NÁT¾‹n:NoR§NÁTåN\vQÎNb,gŒT§Ný€¡‹—{-N’cd–'
  id: 'Set as base' value: '¾‹n:NúWÆQ'
  id: 'Set as default' value: '¾‹n:N؞¤‹<P'
  id: 'Set focus' value: 'Z€&q'
  id: 'Set;Add;Multiply' value: '¾‹nûm RXN'
  id: 'Shelf life' value: 'ÝO(g'
  id: 'Shelf life (days)   ' value: 'ÝO(gÿ)Y    ÿ'
  id: 'Shift Pattern' value: 'ís!k!j_'
  id: 'Shift Pattern Optimization' value: 'ís!k!j_OS'
  id: 'Shift Patterns' value: 'ís!k!j_'
  id: 'Shift pattern' value: 'ís!k!j_'
  id: 'Show all lane legs' value: '>f:y@b    gfSµk'
  id: 'Show all nodes' value: '>f:y@b    g‚‚¹p'
  id: 'Show all stocking points' value: '>f:y@b    g“^X[¹p'
  id: 'Show all units' value: '>f:y@b    gUSMO'
  id: 'Show future' value: 'U\:y*geg'
  id: 'Show number of levels:' value: '>f:y§~+Rpeÿ'
  id: 'Show past' value: 'U\:yǏ»S'
  id: 'Show sanity check messages' value: '>f:yePhQ'`Àhågˆmo`'
  id: 'Show the selected KPI(s)' value: '>f:y@b    KPI'
  id: 'Shows optimizer status' value: '>f:yOShV¶r`'
  id: 'Single-echelon safety stock calculation; Multi-echelon inventory optimization' value: 'US§~‰[hQ“^X[¡‹—{;Y§~“^X[OS'
  id: 'Sliding windows approach' value: 'Ñn¨R—zãS¹eÕl'
  id: 'Smart Plan' value: 'zfý€¡‹R'
  id: 'Smart Plan...' value: 'zfý€¡‹R& '
  id: 'Smart plan' value: 'zfý€¡‹R'
  id: 'Smart plan direction' value: 'zfý€¡‹R¹eT'
  id: 'Smart plan settings' value: 'zfý€¡‹R¾‹n'
  id: 'Smart plan...' value: 'zfý€¡‹R& '
  id: 'Smooth over' value: '¹bs^'
  id: 'Sort all alphabetically' value: '    cW[Íkz˜^’c^'
  id: 'Sorting' value: 'R{|'
  id: 'Source' value: 'egn'
  id: 'Source from Excel' value: 'egnŽNExcel'
  id: 'Source from database' value: 'egnŽNpenc“^'
  id: 'Source from message' value: 'egnŽNáOo`'
  id: 'Split' value: 'RrR'
  id: 'Standard deviation lead time' value: 'hÆQOPî]ÐcMRg'
  id: 'Start after' value: 'KNT_ËY'
  id: 'Start of planning' value: '¡‹R„v_ËY'
  id: 'Start of the detection window with respect to the start of the planning.' value: 'øvù[ŽN¡‹R_ËY„vÀhKm—zãS„v_ËY0'
  id: 'Stock Capacity' value: 'X[ϑ'
  id: 'Stocking Accounts' value: '“^X[&7b'
  id: 'Stocking Costs' value: '“^X[b,g'
  id: 'Stocking Point' value: '“^X[¹p'
  id: 'Stocking Point Capacities' value: '“^X[¹p¹[ϑ'
  id: 'Stocking Point Capacity' value: '“^X[¹p¹[ϑ'
  id: 'Stocking Point...' value: '“^X[¹p...'
  id: 'Stocking Points' value: '“^X[¹p'
  id: 'Stocking Points Capacities' value: '¨PX[¹p¹[ϑ'
  id: 'Stocking point' value: '“^X[¹p'
  id: 'Stocking point can only be used in the periods between Start and End' value: '“^X[¹pêSý€(W_ËYŒTÓ~_ggô•O(u'
  id: 'Stocking point capacity' value: '“^X[¹p¹[ϑ'
  id: 'Stocking point capacity utilization' value: '“^X[¹p§Ný€)R(u‡s'
  id: 'Stocking point periods with utilization higher than the bottleneck threshold are marked as bottleneck.' value: ')R(u‡sؚŽNötˆ˜–<P„v“^X[¹phTg«ˆh°‹:Nötˆ˜0'
  id: 'Stocking point utilization threshold' value: '“^X[¹p)R(u‡s–<P'
  id: 'Stocking points' value: '“^X[¹p'
  id: 'Stocking points and units' value: '“^X[¹pŒTUSMO'
  id: 'Storage' value: 'X[¨P'
  id: 'Storage state' value: '¨PX[¶r`'
  id: 'Strategy' value: 'V{eu'
  id: 'Supplies' value: '›O”^'
  id: 'Supply Accounts' value: '›O”^&7b'
  id: 'Supply Chain Overview' value: 'u§N¡‹R‚iȉ'
  id: 'Supply Chain Visualization' value: 'u§N¡‹RïSƉS'
  id: 'Supply Cost' value: '›O”^b,g'
  id: 'Supply Costs' value: '›O”^b,g'
  id: 'Supply Planning' value: '›O”^¡‹R'
  id: 'Supply Target' value: '›O”^îvh'
  id: 'Supply Targets' value: '›O”^îvh'
  id: 'Supply allocation - allocate supplies to various demands' value: '›O”^RM‘-9hncTÍy—BlRM‘›O”^'
  id: 'Supply chain data' value: '›O”^þ”penc'
  id: 'Supply chain data scenarios' value: '›O”^þ”penc:Wof'
  id: 'Supply dashboard' value: '›O”^êNhˆg'
  id: 'Supply planning' value: '›O”^¡‹R'
  id: 'Sustainability' value: 'ïScí~'`'
  id: 'Symbol' value: 'aŒ_'
  id: 'Target (%)' value: 'îvhÿ%    ÿ'
  id: 'Target percentage' value: 'îvh~vRÔk'
  id: 'Target supply quantity between start and end dates.' value: '_ËYåegŒTÓ~_gåegKNô•„vîvh›O”^ϑ0'
  id: 'TestBtn' value: 'KmՋBTN'
  id: 'The automatic scaling will be run at the end of the next optimizer run if the most recent automatic scaling run of the selected strategy is older than the automatic scaling frequency.' value: '‚Yœg@b    V{eu„vgяN!kꁨR)>eЏLˆéeŽNꁨR)>e‘˜‡s ÿRꁨR)>e\(W NN!kOShVЏLˆÓ~_göeЏLˆ0'
  id: 'The changes will be saved in the current scenario and used by all users while they are operating in the current scenario.' value: 'ôf9e\ÝOX[(WS_MR:Wof-N ÿ›O@b    g(u7b(WS_MR:Wof-NÍd\OöeO(u0'
  id: 'The decimal place that will be displayed in the KPI' value: '\(WKPI-N>f:y„v\peMO'
  id: 'The effective date specifies as of when this recipe will become active.<br>If this date falls in the middle of a period, they take effect from the next period onwards.' value: 'uHeåegcš[dkM‘¹euHe„vöeô•0<br>‚Yœgdkåeg(WN*NhTg„v-Nô• ÿƒ[ìN\ÎN NN*NhTg_ËYuHe0'
  id: 'The items in the drop-down list are filtered based on the selection in the navigation panel.' value: ' NÉbRhˆ-N„vy˜îv9hncü[*‚b—g-N„v    ébۏLˆÇän0'
  id: 'The lane leg can only be used in the periods between Start and End.' value: 'Џ“ï¿~/eïêSý€(Ww¹pŒTÈ~¹pKNô•„vöeµkO(u0'
  id: 'The lot size requirements will be considered from the start of the active planning horizon for the duration of the lot size horizon.This optimizer strategy setting can be changed in the strategies advanced settings.' value: 'ybϑ'Y\‰Bl\(Wybϑ'Y\ƒôV…QÎN;m¨R¡‹RƒôV„v_ËY€Q†0dkOShVV{eu¾‹nïSåN(WV{euؚ§~¾‹n-Nôf9e'
  id: 'The lotsize requirements will be considered from the start of the active planning horizon for the duration specified here.' value: '\(WdkYcš[„vcí~öeô•…QÎN;m¨R¡‹RƒôV„v_ËY€Q†ybϑ'Y\‰Bl0'
  id: 'The maximum allowed utilization of the unit (set to >100% to allow overloading or to <100% to restrict utilization)' value: 'USMOAQ¸‹„vg'Y)R(u‡s(¾‹n:N>100%åNAQ¸‹…}b¾‹n:N<100%åNP–6R)R(u‡s)'
  id: 'The meta optimizer terminates once it cannot find further improvements anymore or the time limit specified here has expired (whichever comes first)' value: 'Næe~b N0RۏNek„v9eۏbdkYcš[„vöeô•P–6Rò]0RgÿåNHQ0R€:NÆQ    ÿ ÿCQOShV\È~bk'
  id: 'The minimum continuous duration for this shift pattern to be used on any unit. It is taken into account by the optimizer if shift pattern optimization is enabled.' value: 'ûNUOňn
NO(u„vå‹ís!k!j_„vg\ޏí~cí~öeô•0‚Yœg/T(u†Nís!k!j_OS ÿOShVO\vQ€Q†(W…Q0'
  id: 'The minimum required utilization of the unit' value: 'USMO‰Bl„vgNO)R(u‡s'
  id: 'The number of future periods starting from the Start of planning (also counting a shorter future period in case the period boundary is not aligned with the Start of planning)' value: 'ÎN ¡‹R_ËY _ËY„v*geghTgpeÿ‚YœghTg¹LuN¡‹R_ËYöeô• NNô ÿ_N¡‹—{ƒíw„v*geghTg    ÿ'
  id: 'The number of periods in the active window. This is the number of periods for which the lotsizes will be considered simultaneously.' value: ';m¨R—zãS-N„vhTgpe0ُ/f Töe€Q†ybϑ„vhTgpe0'
  id: 'The optimizer strategy determines which KPIs are optimized and how important each KPI is.' value: 'OShVV{eu³Qš[†NêT›N KPI «ˆOSåNÊSÏk*N KPI „v͑‰'`0'
  id: 'The optimizer will ignore any sales demand below this threshold' value: 'OShV\ý_euNOŽNdk–<P„vûNUO•.U—Bl'
  id: 'The parameter that drives the cost on the account.' value: 'qš¨R&îvb,g„vÂSpe0'
  id: 'The pegging algorithm creates explicit links between supplies to demands.' value: 'c©”—{Õl(W›O”^N—BlKNô•ú^Ëz†Nfnx„vT€û|0'
  id: 'The periods in the drop-down list are filtered to only contain periods allowed by postponement specifications' value: ' NÉbRhˆ-N„vhTg«ˆÇän:NÅNS+Tö^gĉƒAQ¸‹„vhTg'
  id: 'The probability in percentage of not being stock-out and not losing sales. Service level is used to dimension safety stocks: the higher the service level, the higher the safety stock will be.' value: '*g:'ŒT*g_c1Y•.U˜„v‚i‡sÿ~vRÔk    ÿ0 g¡R4ls^(uŽNaˆÏ‘‰[hQ“^X[ÿ g¡R4ls^ŠØš ÿ‰[hQ“^X[ŠØš0'
  id: 'The products in this list are filtered based on the product selection in the navigation panel as well as the Unit selection in this dialog.' value: 'dkRhˆ-N„v§NÁT9hncü[*‚b—g-N„v§NÁT    ébåNÊSdkù[݋Fh-N„vUSMO    ébۏLˆÇän0'
  id: 'The sales demand with higher weight is treated as more important.' value: 'Cg͑ƒØš„v•.U—Bl«ˆÆ‰:Nôf͑‰0'
  id: 'The shift pattern specifies the availability of time-based units.' value: 'ís!k!j_cš[úWŽNöeô•„vUSMO„vïS(u'`0'
  id: 'The start of the future horizon' value: '*gegƒôV„v_ËY'
  id: 'The unit can only be used in the periods between Start and End' value: 'å‹USMOêSý€(W_ËYŒTÓ~_gKNô•„vhTg…QO(u'
  id: 'The unit measure that will be displayed in the KPI' value: '\(WKPI-N>f:y„vUSMO¦^ϑ'
  id: 'The value is incorrect.' value: 'å‹<P Ncknx0'
  id: 'The value is incorrect. Must be a positive number. ' value: 'å‹<P Ncknx0Å_{˜/fckpe0'
  id: 'There are balance constraints (e.g. unfulfilled dependent demands).' value: 'X[(Ws^aˆ¦~_g(‹O‚Y*gán³„vøvsQ—Bl)0'
  id: 'There are unfulfilled sales demands.' value: 'X[(W*gŒ[b„v•.U—Bl0'
  id: 'This duration provides an indication of how long the campaign will last based on specified maximum quantity.' value: 'dkcí~öeô•c:y;m¨R\9hnccš[„vg'Ypeϑcí~Y•öeô•0'
  id: 'This duration provides an indication of how long the campaign will last based on specified minimum quantity.' value: 'dkcí~öeô•Ðc›O†NúWŽNcš[g\peϑ„v;m¨R\cí~Y•öeô•„vc:y0'
  id: 'This group allows users to interact with safety stock deployment.' value: 'å‹Ä~AQ¸‹(u7bN‰[hQ“^X[èr¤N’N0'
  id: 'This group allows users to interact with the planning.' value: 'å‹Ä~AQ¸‹(u7bNĉRۏLˆ¤N’N0'
  id: 'This group allows users to interact with the sales demands.' value: 'å‹Ä~AQ¸‹(u7bN•.U—BlۏLˆ¤N’N0'
  id: 'This group allows users to manage sanity check settings.' value: 'dkÄ~AQ¸‹(u7b¡{tePhQ'`Àhåg¾‹n0'
  id: 'This group allows users to set up capacity related parameters.' value: 'dkÄ~AQ¸‹(u7b¾‹n¹[ϑøvsQÂSpe0'
  id: 'This group allows users to set up conditions and requirements of fulfilling sales demands.' value: 'å‹Ä~AQ¸‹(u7b¾‹nán³•.U—Bl„vagöNŒT‰Bl0'
  id: 'This group allows users to set up parameters related with inventory.' value: 'dkÄ~AQ¸‹(u7b¾‹nN“^X[øvsQ„vÂSpe0'
  id: 'This group allows you to manage scenarios and scenario authorizations.' value: 'dkÄ~AQ¸‹¨`¡{t¹eHhŒT¹eHhˆcCg0'
  id: 'This group consists of actions that are generic actions that can be used on all objects.' value: 'å‹Ä~1uïS(uŽN@b    gù[aŒ„v(uÍd\OÄ~b0'
  id: 'This group consists of actions that can be used to set up parameters related supply chain data.' value: 'å‹Ä~1uïS(uŽN¾‹nÂSpeøvsQ›O”^þ”penc„vÍd\OÄ~b0'
  id: 'This group consists of actions that can be used to set up processes related data.' value: 'å‹Ä~1uïS(uŽN¾‹nAm zøvsQpenc„vÍd\OÄ~b0'
  id: 'This group consists of actions that can be used to set up products related data.' value: 'å‹Ä~1uïS(uŽN¾‹n§NÁTøvsQpenc„vÍd\OÄ~b0'
  id: 'This group consists of settings that are generic for the whole application, like language or color schemes. The user can see the assigned functionalities as well.' value: 'å‹Ä~1ute*N”^(u z^„v(u¾‹nÄ~b ÿ‚Y틊bœ˜r‚¹eHh0(u7b_NïSåN w0RRM‘„vŸRý€0'
  id: 'This group consists of views related to inventory.' value: 'å‹Ä~1uN“^X[øvsQ„vƉþVÄ~b0'
  id: 'This group consists of views related with sales demands.' value: 'å‹Ä~1uN•.U—BløvsQ„vƉþVÄ~b0'
  id: 'This group consists of views related with scenarios.' value: 'å‹Ä~1uN:WoføvsQ„vƉþVÄ~b0'
  id: 'This group consists of views related with supply chain data.' value: 'å‹Ä~1uN›O”^þ”pencøvsQ„vƉþVÄ~b0'
  id: 'This group consists of views related with supply planning.' value: 'å‹Ä~1uN›O”^ĉRøvsQ„vƉþVÄ~b0'
  id: 'This indicates the quantity to be produced based on maximum duration.' value: 'ُhˆ:y9hncg'Ycí~öeô•u§N„vpeϑ0'
  id: 'This indicates the quantity to be produced based on minimum duration.' value: 'ُhˆ:y9hncg\cí~öeô•u§N„vpeϑ0'
  id: 'This represents uncertainty in the lead time and is only relevant when calculation of safety stock levels is used.' value: 'ُhˆ:y¤N'öeô•„v Nnxš['` ÿv^NÅN(WO(u‰[hQ“^X[4ls^¡‹—{öeMbøvsQ0'
  id: 'Throughput' value: 'TTϑ'
  id: 'Tick to ignore product shelf-life and maturation constraints on this stocking point.' value: 'þR    ý_eudk“^X[¹p„v§NÁTÝO(gŒTbŸq¦^P–6R0'
  id: 'Time Capacities' value: 'öeô•¹[ϑ'
  id: 'Time Capacity' value: 'öeô•¹[ϑ'
  id: 'Time unit' value: 'öeô•USMO'
  id: 'To' value: '0R'
  id: 'To change the currency or unit of measurement, go to the advanced tab' value: '‰ôf9e'^b¡‹Ï‘USMO ÿ÷‹l0Rؚ§~    y˜aS'
  id: 'To change the unit of measurement, go to the advanced tab' value: '‰ôf9eKmϑUSMO ÿ÷‹l0Rؚ§~    y˜aS'
  id: 'To export planned order to Scheduler' value: '‰\¡‹R¢‹USü[úQ0R’c zhVÿ'
  id: 'To export sales demand to Demand Planner' value: '\•.U—Blü[úQ0RDemand Planner'
  id: 'Toggle off the option to exclude the customer order from netting. As a result, the customer order will be treated as an additional demand with high priority.' value: 'sQí•å‹    y˜åNÎNÀQ˜Ó~—{-N’cd–¢[7b¢‹US0àVdk ÿ¢[7b¢‹US\«ˆÆ‰:NwQ    gؚOHQ§~„vD– R—Bl0'
  id: 'Toggle to create a new set' value: 'RbcåNRú^°eƖ'
  id: 'Tool' value: 'å]wQ'
  id: 'Total supply' value: ';`›OÙ~'
  id: 'Transition Types' value: 'Ǐ!n{|‹W'
  id: 'Transition type' value: 'Ǐ!n{|‹W'
  id: 'Transition type matrix' value: 'Ǐ!n{|‹Wéw5–'
  id: 'Transition types' value: 'Ǐ!n{|‹W'
  id: 'Translations::MP_Designer_DialogSmartPlan_IsBatchTotalSupply()' value: 'ûыÿÿMP_Designer_DialogSmartPlan_IsBatchTotalSupplyÿ    ÿ'
  id: 'Transport' value: 'Џ“'
  id: 'Transport Capacities' value: 'Џ“§Ný€'
  id: 'Transport Capacity' value: 'Џ“§Ný€'
  id: 'Transportation Accounts' value: 'Џ“&7b'
  id: 'Transportation Cost' value: 'Џ“b,g'
  id: 'Transportation Costs' value: 'Џ“b,g'
  id: 'Trip Feedback' value: 'ï zÍSˆ™'
  id: 'Trips' value: 'ï z'
  id: 'Tuning and Scaling' value: 'ŒŒŒT)>e'
  id: 'Unassign' value: 'ÖSˆmRM‘'
  id: 'Unassign from all usergroups' value: 'ÎN@b    g(u7bÄ~-NÖSˆmRM‘'
  id: 'Unassign from usergroup' value: 'ÎN(u7bÄ~-NÖSˆmRM‘'
  id: 'Uncheck to exclude this unit from any supply specifications defined on this unit or its parent units' value: 'ÖSˆm    -NåN\dkUSMO’cd–(WdkUSMObvQÍkUSMO
Nš[IN„vûNUO›O”^ĉ<hKNY'
  id: 'Undo' value: '¤d•'
  id: 'Undo last change' value: '¤dˆm
N!kôf9e'
  id: 'Unfulfilled quantity' value: 'Unfulfilled quantity'
  id: 'Unignore' value: 'ý_eu'
  id: 'Unit' value: 'USMO'
  id: 'Unit       ' value: 'USCQ '
  id: 'Unit Accounts' value: 'USCQ&7b'
  id: 'Unit Capacity' value: 'USMO§Ný€'
  id: 'Unit Capacity Utilization' value: 'USCQ§Ný€)R(u‡s'
  id: 'Unit Cost' value: 'USMOb,g'
  id: 'Unit Costs' value: 'USCQb,g'
  id: 'Unit capacity utilization' value: 'USCQ§Ný€)R(u‡s'
  id: 'Unit of Measurement' value: '¡‹Ï‘USMO'
  id: 'Unit of measurement' value: '¡‹Ï‘USMO'
  id: 'Unit periods with utilization higher than the bottleneck threshold are marked as bottleneck and shown in yellow in the Capacity planning chart.' value: ')R(u‡sؚŽNötˆ˜–<P„vUSMOhTg«ˆh°‹:Nötˆ˜ ÿv^(W§Ný€¡‹RþVhˆ-NåNĞr‚>f:y0'
  id: 'Unit periods with utilization higher than the overload threshold are shown in orange in the Capacity planning chart.' value: ')R(u‡sؚŽNǏ}–<P„vUSMOhTg(W§Ný€¡‹RþVhˆ-NåNYjr‚>f:y0'
  id: 'Unit utilization thresholds' value: 'USMO)R(u‡s–<P'
  id: 'Unit...' value: 'USCQ...'
  id: 'Units' value: 'USMO'
  id: 'Units and Stocking Points' value: 'USCQÊS“^X['
  id: 'Units and stocking points with percentage of bottleneck periods in the detection window higher than specified tolerance are marked as bottleneck.' value: 'ÀhKm—zãS-Nötˆ˜g~vRÔkؚŽNĉš[lQî]„vUSMOŒT“^X[¹p«ˆh°‹:Nötˆ˜0'
  id: 'Units of Measure' value: 'KmϑUSMO'
  id: 'Units of measure' value: 'KmϑUSMO'
  id: 'Units used for smart plan' value: '(uŽNzfý€¡‹R„vUSMO'
  id: 'Unload' value: 'xS}'
  id: 'Unlock' value: 'Unlock'
  id: 'Unselected units' value: '*g    éb„vUSMO'
  id: 'Up' value: 'T
N'
  id: 'Update changes from Excel and database' value: 'ÎNExcelŒTpenc“^ôf°eôf9e'
  id: 'Update with current selection' value: '(uS_MR    ébôf°e'
  id: 'Upstream' value: '
N8n'
  id: 'Upstream;Downstream;Middle-out' value: '
N8n N8n„v-Nô•ºN'
  id: 'Usage percentage for trip cleanup' value: 'Lˆ znt„vO(u~vRÔk'
  id: 'Use Existing Set' value: 'O(u°s    gƖ'
  id: 'Use New Set' value: 'O(u°eƖT'
  id: 'Use automatic safety stock calculation, taking into account expected service levels, demand and lead times.' value: 'O(uꁨR‰[hQ“^X[¡‹—{ ÿ€Q†„˜g g¡R4ls^0—BlŒT¤N'g0'
  id: 'Use capacity smoothing' value: 'O(u¹[ϑs^Ñn'
  id: 'Use for planning;Use for visualization' value: '(uŽNĉR;(uŽNïSƉS'
  id: 'Use meta optimizer approach' value: 'O(uCQOShV¹eÕl'
  id: 'Use sliding windows approach' value: 'O(uÑn¨R—zãS¹eÕl'
  id: 'Use the allocation algorithm to link demands to supplies.' value: 'O(uRM‘—{Õl\—Blþ”¥c0R›O”^0'
  id: 'Used capacity' value: 'ò](u§Ný€'
  id: 'User Settings' value: '(u7b¾‹n'
  id: 'Utilization' value: 'Utilization'
  id: 'Utilization (%)' value: 'Utilization (%)'
  id: 'Utilization(%)' value: 'Utilization(%)'
  id: 'Validity' value: '    gHe'`'
  id: 'Value for high interval' value: 'ؚô•”–<P'
  id: 'Value for medium interval' value: '-NI{ô•”–<P'
  id: 'Value is locked and will not be overwritten by the optimizer unless explicitly specified.' value: 'd–^—fnxcš[ ÿ&TR<P«ˆ•š[v^N NO«ˆOShV†‰Öv0'
  id: 'Visible value corresponds to the KPI value divided by the KPI setting precision' value: 'ïSÁ‰<Pù[”^ŽNKPI<Pd–åNKPI¾‹n¾|¦^'
  id: 'Visualize and create activities as part of the workflow cycle.' value: '\;m¨RïSƉSv^Rú^:Nå]\OAmhTg„vNèR0'
  id: 'Visualize and manage all supply scenarios. Configure planning strategies.' value: 'ïSƉSŒT¡{t@b    g›O”^:Wof0M‘nĉRV{eu0'
  id: 'Visualize and modify the supply plan.' value: 'ïSƉSv^îO9e›O”^¡‹R0'
  id: 'Visualize optimizer reports and analyze results.' value: 'ïSƉSOShV¥bJTv^RgÓ~œg0'
  id: 'Visualize planning, fulfillment and financial reports. Compare supply scenarios.' value: 'ïSƉSĉR0e\LˆŒT"¡R¥bJT0Ôkƒ›O”^Å`µQ0'
  id: 'Volume settings' value: ';`ϑ¾‹n'
  id: 'Weight' value: 'Cg͑'
  id: 'Weight for collapsed slack level' value: 'MWLX~g_4ls^„v͑ϑ'
  id: 'Weight in the solver goal of the slack level when collapsed into single solver level' value: '˜bàS0RUS*N㉗{hVB\§~öe ÿ~g_B\§~„v㉗{hVîvh-N„vCg͑'
  id: 'When checked, changes in capacity usage for subsequent periods will not exceed the Delta value' value: '    -NT ÿTí~hTg„v§Ný€O(uØSS NO…ÇDelta<P'
  id: 'When checked, smart plan will only plan one routing/lane upstream from the selected stockingpoint. <br>When unchecked, it will consider the complete upstream supply chain from this stocking point.' value: '    -Nöe ÿzfý€Ä‰R\ÅNĉR    š[X[¨P¹p
N8n„vNag~/Џ“ï¿~<br>*g    -Nöe ÿƒ[\€Q†ÎN勓^X[¹p_ËY„vte*N
N8n›O”^þ”0'
  id: 'When checked, the supply can be used to fulfill demand even though it matures somewhere within the period. <br> When unchecked, the supply can only be used to fulfill demand if it matures before the start of that period.' value: '    -NT ÿsSO›O”^(Wå‹hTg„vÐg*N0W¹ebŸq ÿ_NïS(uŽNán³—Bl0 <br> ‚Yœg*g    -N ÿRêS    g(Wå‹öeg_ËYKNMR0Rg„v›O”^Mbý€(uŽNán³—Bl0'
  id: 'When checked, the supply can be used to fulfill demand even though it will expire somewhere within the period. <br> When unchecked, the supply can only be used to fulfill demand if it remains unexpired for the entire period.' value: '    -NT ÿ›O”^ïS(uŽNán³—Bl ÿsSOƒ[\(WdkhTg„vÐg*N0W¹e0Rg0 <br> ‚Yœg*g    -N ÿRêS    g(Wte*NhTgý*gǏg„vÅ`µQ N ÿ›O”^Mbý€(uŽNán³—Bl0'
  id: 'When enabled, the optimizer plans shift patterns on units that use shift pattern optimization and on which the shift patterns are allowed.<br/>When disabled, the optimizer is not allowed to modify shift patterns on any unit, and uses the current assignments as an input.' value: '/T(uöe ÿOShV(WO(uís!k!j_OSNAQ¸‹ís!k!j_„vUSCQ
N¡‹Rís!k!j_0<br/>y(uöe ÿOShV NAQ¸‹îO9eûNUOUSCQ
N„vís!k!j_ ÿv^\S_MRRM‘(u\ON*N“eQ'
  id: 'When the conversion factor is not defined, a default factor of 1 will be used.' value: 'S_*gš[INlbcàVP[öe ÿ\O(u؞¤‹àVP[ 10'
  id: 'When there are multiple periods between the start and end dates, the quantity is disaggregated proportionally over the periods.' value: 'S__ËYåegŒTÓ~_gåegKNô•    gY*Ngô•öe ÿpeϑ\    cgô•    cÔk‹OۏLˆR{|0'
  id: 'When toggled on, the optimizer can plan shift patterns on this unit if they are allowed on it.<br/>When toggled off, the optimizer is not allowed to modify shift patterns on this unit.<br/>If shift optimization is disabled on the optimizer strategy, shift patterns will not be modified regardless of this setting.' value: '_/Töe ÿOShVïSåN(WAQ¸‹„vÅ`µQ N(WdkUSCQ
NĉRís!k!j_<br/>sQí•öe ÿ NAQ¸‹OShVîO9edkňn
N„vís!k!j_<br/>‚Yœg(WOShVV{eu
Ny(u†NbcchOS ÿRàeº‹dk¾‹n‚YUO ÿý NOîO9eís!k!j_0'
  id: 'When you run smart plan, it will automatically select the strategy that was used in the last smart plan run. <br>If there is no previous smart plan run, then this strategy will be used.' value: 'S_¨`ЏLˆzfý€¡‹Röe ÿƒ[\ꁨR    éb
N!kzfý€¡‹RЏLˆ-NO(u„vV{eu0 <br>‚YœgKNMR¡l    gЏLˆÇzfý€¡‹R ÿR\O(udkV{eu0'
  id: 'Workflow configuration' value: 'å]\OAm zM‘n'
  id: 'hh:mm' value: 'hh:mm'
  id: 'per' value: 'Ïk'
  id: 's' value: 's'
  id: ' Effective date' value: ' uHeåeg'
  id: ' End' value: ' Ó~_g'
  id: ' Minimum' value: ' g\<P'
  id: '  Nominal' value: '   TIN
N'
  id: '  Stocking point' value: '  “^X[¹p'
  id: '      Bottleneck' value: '      ötˆ˜'
  id: '      Start' value: '      _ËY'
  id: '       End' value: '       Ó~_g'
  id: '        Time unit' value: '        öeô•USMO'
  id: '          Parent product' value: '          6r§NÁT'
  id: '           Minimum quantity' value: '           g\peϑ'
  id: '            Product' value: '            §NÁT'
  id: '               Lot size' value: '               yb!k'Y\'
  id: '                Customer ID' value: '                ¢[7bID'
  id: '                Customer name' value: '                ¢[7b Tðy'
  id: '                Order ID' value: '                ¢‹USID'
  id: '                Order line ID' value: '                ¢‹USLˆID'
  id: '                Price' value: '                ÷N<h'
  id: '                 Order date' value: '                 ¢‹US¤Ng'
  id: '                 Start' value: '                 _ËY'
  id: '                  End' value: '                  Ó~_g'
  id: '                   Currency' value: '                   '^'
  id: '                      Priority' value: '                      OHQ§~'
  id: '                         Name' value: '                          Tðy'
  id: '                               ID' value: '                               ID'
  id: '                                Campaign horizon' value: '                                ý€WWU\gg'
}