-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.translation-state
More file actions
1899 lines (1899 loc) · 79.1 KB
/
.translation-state
File metadata and controls
1899 lines (1899 loc) · 79.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"LastProcessedCommit": "6f3a78ffa2f31cb639f0a5c20ab0ed15c6d4ccac",
"LastTranslatedCommit": null,
"Items": {
"c3b8854dbecd4ab03e46c51a23ac00461bdd7014": {
"FileHash": "c3b8854dbecd4ab03e46c51a23ac00461bdd7014",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "CONTRIBUTING.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"CONTRIBUTING.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\CONTRIBUTING.3f454a98e586d1aa0d322e19afd5e67e08f2d3c8.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"d0d36cc79854de58e99c4984ef47dab41a4e7df4": {
"FileHash": "d0d36cc79854de58e99c4984ef47dab41a4e7df4",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\archiveResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\archiveResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\archiveResource.b4701b9fe5acf94be3fabf470371d8e47dd154d4.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"fde661d2dc3c7c099c34134f4e665ba02cc3ceb9": {
"FileHash": "fde661d2dc3c7c099c34134f4e665ba02cc3ceb9",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResource.106f1f4d77068b2b95f1927b611b5f405ec7a317.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"565d71def9c15b19f10ec144ff29e82b9e205e31": {
"FileHash": "565d71def9c15b19f10ec144ff29e82b9e205e31",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResourceClass.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResourceClass.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResourceClass.3603134df9ad1cad202d10769ff631a083cc3aae.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"c7b9c9ffe6a4a82c8d8935ab75d9942bf8b9970d": {
"FileHash": "c7b9c9ffe6a4a82c8d8935ab75d9942bf8b9970d",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResourceComposite.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResourceComposite.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResourceComposite.6d5d1e53e83e25cfc63e26078da390a4fa6737f2.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"f64cbea29a1e9998b8ade46d69c1ef1c584bd633": {
"FileHash": "f64cbea29a1e9998b8ade46d69c1ef1c584bd633",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResourceMOF.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResourceMOF.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResourceMOF.1f503c33425780c369e78193e2f2f4e9242c401b.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"28a9448f7c815bc154612af16634435b6987b7fc": {
"FileHash": "28a9448f7c815bc154612af16634435b6987b7fc",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResourceMofCS.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResourceMofCS.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResourceMofCS.0647b27b00ec52b2f524a2856e48bc7c29c0f867.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"a95d0b59a90cbae44ec8d68bdaf59a1e318736d9": {
"FileHash": "a95d0b59a90cbae44ec8d68bdaf59a1e318736d9",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\authoringResourceMofDesigner.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\authoringResourceMofDesigner.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\authoringResourceMofDesigner.09b1adffc4afb0d9b1154880e2dab0b25d82d51b.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"e3243caa7ec8682a4010e25a4ae0b2359c2d7866": {
"FileHash": "e3243caa7ec8682a4010e25a4ae0b2359c2d7866",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\builtInResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\builtInResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\builtInResource.2f855e1582347e986aa4e5e62b842b886596fdc2.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"25ea7bc8b398577cb2916ec833d61c38af812637": {
"FileHash": "25ea7bc8b398577cb2916ec833d61c38af812637",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\configData.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\configData.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\configData.51d01a46dd9af8b425788cc485523b09f8470b95.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"065f423b82d69a7c9dbc6384711d2135a3b7e5ec": {
"FileHash": "065f423b82d69a7c9dbc6384711d2135a3b7e5ec",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\configurations.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\configurations.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\configurations.02626ddbf3a00f8ede56fdfd2e46a027800e75b6.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"277d3032f45323050e140f466f639e5606fef53a": {
"FileHash": "277d3032f45323050e140f466f639e5606fef53a",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\enactingConfigurations.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\enactingConfigurations.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\enactingConfigurations.5949c3926cc7d368fa49b0ba340a078984794e5d.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"d3008e3fe7da4c118c693d2b34a0b329780f8d86": {
"FileHash": "d3008e3fe7da4c118c693d2b34a0b329780f8d86",
"SourceFileCommit": "46ecc054c2a848e8c31a156b55f298e6b4984750",
"SourceFilePath": "dsc\\images\\Push.png",
"HandoffReason": 2,
"DependencyFrom": [
"dsc\\enactingConfigurations.md"
],
"TokenReference": null,
"FilePathList": [
"dsc\\images\\Push.png"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\d3008e3fe7da4c118c693d2b34a0b329780f8d86.png",
"HandoffFileCommit": "3b67e3059bbd07a4bd6d849536f5645c7f2e8a43",
"HandoffDateTime": "2016-02-23T18:17:03.7999971Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"86d829b1fcdd41e648ed0594eaf337b3726c143c": {
"FileHash": "86d829b1fcdd41e648ed0594eaf337b3726c143c",
"SourceFileCommit": "46ecc054c2a848e8c31a156b55f298e6b4984750",
"SourceFilePath": "dsc\\images\\Pull.png",
"HandoffReason": 2,
"DependencyFrom": [
"dsc\\enactingConfigurations.md"
],
"TokenReference": null,
"FilePathList": [
"dsc\\images\\Pull.png"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\86d829b1fcdd41e648ed0594eaf337b3726c143c.png",
"HandoffFileCommit": "3b67e3059bbd07a4bd6d849536f5645c7f2e8a43",
"HandoffDateTime": "2016-02-23T18:17:03.7999971Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"f4ce18cb2680c7d9347a1887c282c3e4707a2c8c": {
"FileHash": "f4ce18cb2680c7d9347a1887c282c3e4707a2c8c",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\environmentResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\environmentResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\environmentResource.eb91ffd4cd8bdb9476e5a83de1a20d3b7b502a56.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"ce115dd79b0793718f8e79bb465f244b7cc725b1": {
"FileHash": "ce115dd79b0793718f8e79bb465f244b7cc725b1",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\fileResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\fileResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\fileResource.ad0d9bba41b615db808e5dfc814b50945863b3da.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"bc098355d65bff2203a212f2387be6f79fbb63e8": {
"FileHash": "bc098355d65bff2203a212f2387be6f79fbb63e8",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\groupResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\groupResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\groupResource.d19d416269795c92566b62c36b9782062dcea43e.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"2e0a09a025bcee8fc97e417b21a51773904a0d2e": {
"FileHash": "2e0a09a025bcee8fc97e417b21a51773904a0d2e",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxArchiveResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxArchiveResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxArchiveResource.095aab7d23720fd394f2573c30223a6bbcc0a4ef.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"e4d20bc0f083c463514e2044ce86679041263075": {
"FileHash": "e4d20bc0f083c463514e2044ce86679041263075",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxBuiltInResources.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxBuiltInResources.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxBuiltInResources.12cc0e2a7d17afe6b1e1b9c928760080863926f9.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"ef0812e4b382b5efb6e6f42d8671fab3ab663a4b": {
"FileHash": "ef0812e4b382b5efb6e6f42d8671fab3ab663a4b",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxEnvironmentResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxEnvironmentResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxEnvironmentResource.60c6523b1d06708f748c9039105a2042fa341552.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"0b7aa5b03a19ff1afa79f5ae96f24d034531e4b8": {
"FileHash": "0b7aa5b03a19ff1afa79f5ae96f24d034531e4b8",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxFileLineResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxFileLineResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxFileLineResource.d91fc802a4c6cdbff5a2e35f92b34c36c6dbf5eb.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"8be1ad92f73cb8ddb2ced42d6471c90a67807b7a": {
"FileHash": "8be1ad92f73cb8ddb2ced42d6471c90a67807b7a",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxFileResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxFileResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxFileResource.1f67ed46e7bb4ac04f73143e1d7ab7e9199d3191.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"ce17b7bb17435cd925f196e4736114982de4e056": {
"FileHash": "ce17b7bb17435cd925f196e4736114982de4e056",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxGettingStarted.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxGettingStarted.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxGettingStarted.1601cf6d0eb8b4f7343575c8fbf2106bfaad8b65.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"9bda555be3a52c574eccfa66b114883e2f543c70": {
"FileHash": "9bda555be3a52c574eccfa66b114883e2f543c70",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxGroupResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxGroupResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxGroupResource.0cedb684d797032bd47cdb852629c36da0884567.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"37c34dfa85386e8d190a5cfd459c3a6885cca838": {
"FileHash": "37c34dfa85386e8d190a5cfd459c3a6885cca838",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxPackageResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxPackageResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxPackageResource.db35ab938bbfbb38cae53fe9ae98fd22b5f18009.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"056b0c86701cfd096c863560836dc129ecefc862": {
"FileHash": "056b0c86701cfd096c863560836dc129ecefc862",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxScriptResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxScriptResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxScriptResource.1344a5d5b807ee53705e93842d9ef5e25a883359.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"3d766f5b9e2bb9284e717d5a998b1a7c291221fc": {
"FileHash": "3d766f5b9e2bb9284e717d5a998b1a7c291221fc",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxServiceResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxServiceResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxServiceResource.e637c7f7b18939ec8c16eadf2c42ab00e236fb7b.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"6b36c9b34b8f76cbae8443058dbd949e47dbc0b2": {
"FileHash": "6b36c9b34b8f76cbae8443058dbd949e47dbc0b2",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxSshAuthorizedKeysResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxSshAuthorizedKeysResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxSshAuthorizedKeysResource.9a647ff238cd38a2fc7da58f3cc5682acf7d3346.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"31eea97ab4912ca241557cddbf59929e085ebe80": {
"FileHash": "31eea97ab4912ca241557cddbf59929e085ebe80",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\lnxUserResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\lnxUserResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\lnxUserResource.2376554a25dd8dfad6a78a6180b7c7166e4817e1.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"0f4922e1df8725aad839211dbe0dfc532692f606": {
"FileHash": "0f4922e1df8725aad839211dbe0dfc532692f606",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\logResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\logResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\logResource.07af9dfcf6076ef19059178c3b404762677920f0.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"d7b3908ae670a7bcc976f2675834316862a25802": {
"FileHash": "d7b3908ae670a7bcc976f2675834316862a25802",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\metaConfig.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\metaConfig.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\metaConfig.915dba9ed66671e4a41c35a16d5248bb4c94e3d6.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"ef2664b6dd61bd55898971adf7e4a57f92be88cc": {
"FileHash": "ef2664b6dd61bd55898971adf7e4a57f92be88cc",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\metaConfig4.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\metaConfig4.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\metaConfig4.4ec702d458e6574099cead724f0e57c3c5d262df.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"7f5f99f0f0befde13272221e376006dffbddb994": {
"FileHash": "7f5f99f0f0befde13272221e376006dffbddb994",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\overview.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\overview.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\overview.8cc85dd99239e10c76baa6006d906abfd6122c3f.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"9c9f1da0b560c44c9760583c4193bdf4eaee09f7": {
"FileHash": "9c9f1da0b560c44c9760583c4193bdf4eaee09f7",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\packageResource.md",
"HandoffReason": 1,
"DependencyFrom": null,
"TokenReference": null,
"FilePathList": [
"dsc\\packageResource.md"
],
"HandoffFilePath": "ol-handoff\\OpenLocalizationOrg\\PowerShell-Docs.it-it\\master\\packageResource.132c4949cee174dc0dc324456d220436cb9884e6.it-it.xlf",
"HandoffFileCommit": "d7324c66e2969a749bc343099b0c3b39bc765d8b",
"HandoffDateTime": "2016-01-05T07:28:12.8241265Z",
"HandoffPriority": "",
"HandoffException": null,
"HandoffFailureTimes": 0,
"TargetFileCommit": null,
"TargetFilePath": null,
"HandbackFilePath": null,
"HandbackFileCommit": null,
"HandbackDateTime": "0001-01-01T00:00:00",
"HandbackException": null,
"HandbackFailureTimes": 0,
"UpdatedDateTime": "0001-01-01T00:00:00",
"ArchiveFilePath": null,
"ArchiveFileCommit": null,
"ArchiveFileDateTime": "0001-01-01T00:00:00",
"ArchiveException": null
},
"3f1843e8a1335617c562084ce69fc82ae7c2c694": {
"FileHash": "3f1843e8a1335617c562084ce69fc82ae7c2c694",
"SourceFileCommit": "414637d15df6927f455eee7150f79148ea47c023",
"SourceFilePath": "dsc\\partialConfigs.md",
"HandoffReason": 1,
"DependencyFrom": null,