aboutsummaryrefslogtreecommitdiff
path: root/tools/Translator/Setup/Setup.vdproj
blob: a4d163062ffce8389820e118bdb7eb25f52e7aad (plain)
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
"DeployProject"
{
"VSVersion" = "3:701"
"ProjectType" = "8:{2C2AF0D9-9B47-4FE5-BEF2-169778172667}"
"IsWebType" = "8:FALSE"
"ProjectName" = "8:Setup"
"LanguageId" = "3:1033"
"CodePage" = "3:1252"
"UILanguageId" = "3:1033"
"SccProjectName" = "8:"
"SccLocalPath" = "8:"
"SccAuxPath" = "8:"
"SccProvider" = "8:"
    "Hierarchy"
    {
        "Entry"
        {
        "MsmKey" = "8:_06A7E233C0184D43976534F6D22D901A"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_15F65061D55F45418AAEF2D60CB7B847"
        "OwnerKey" = "8:_8DF39D3C82A542C4B2A77AB57D96302F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8DF39D3C82A542C4B2A77AB57D96302F"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
    }
    "Configurations"
    {
        "Debug"
        {
        "DisplayName" = "8:Debug"
        "IsDebugOnly" = "11:TRUE"
        "IsReleaseOnly" = "11:FALSE"
        "OutputFilename" = "8:Debug\\Setup.msi"
        "PackageFilesAs" = "3:2"
        "PackageFileSize" = "3:-2147483648"
        "CabType" = "3:1"
        "Compression" = "3:2"
        "SignOutput" = "11:FALSE"
        "CertificateFile" = "8:"
        "PrivateKeyFile" = "8:"
        "TimeStampServer" = "8:"
        "InstallerBootstrapper" = "3:2"
        }
        "Release"
        {
        "DisplayName" = "8:Release"
        "IsDebugOnly" = "11:FALSE"
        "IsReleaseOnly" = "11:TRUE"
        "OutputFilename" = "8:Release\\Setup.msi"
        "PackageFilesAs" = "3:2"
        "PackageFileSize" = "3:-2147483648"
        "CabType" = "3:1"
        "Compression" = "3:2"
        "SignOutput" = "11:FALSE"
        "CertificateFile" = "8:"
        "PrivateKeyFile" = "8:"
        "TimeStampServer" = "8:"
        "InstallerBootstrapper" = "3:2"
        }
    }
    "Deployable"
    {
        "CustomAction"
        {
        }
        "DefaultFeature"
        {
        "Name" = "8:DefaultFeature"
        "Title" = "8:"
        "Description" = "8:"
        }
        "ExternalPersistence"
        {
            "LaunchCondition"
            {
                "{2522A265-4974-4402-83C5-3B575A2E935A}:_3DEF919586F543A5B635EA07154B7AC3"
                {
                "Name" = "8:.NET Framework"
                "Message" = "8:[VSDNETMSG]"
                "SupportedRuntimes" = "8:1.1.4322"
                "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=9832"
                }
            }
        }
        "Feature"
        {
        }
        "File"
        {
            "{A582A373-4685-4296-BEFE-614B80A702C3}:_06A7E233C0184D43976534F6D22D901A"
            {
            "SourcePath" = "8:..\\Translator\\App.ico"
            "TargetName" = "8:App.ico"
            "Tag" = "8:"
            "Folder" = "8:_A27FF7782150426E8C0B3F894FAA4AAE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:TRUE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            }
        }
        "FileType"
        {
        }
        "Folder"
        {
            "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_186E24BB7F834634919C5B5D3C1A6BDF"
            {
            "Name" = "8:#1916"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:DesktopFolder"
                "Folders"
                {
                }
            }
            "{58C0ADA3-3CEA-43BD-A3B3-2EA121BC8217}:_A27FF7782150426E8C0B3F894FAA4AAE"
            {
            "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
            "Name" = "8:#1925"
            "AlwaysCreate" = "11:TRUE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:TARGETDIR"
                "Folders"
                {
                }
            }
            "{78BAF5CE-F2E5-45BE-83BC-DB6AF387E941}:_F186081223AE46EB855F73828372471B"
            {
            "Name" = "8:#1919"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:ProgramMenuFolder"
                "Folders"
                {
                    "{F27BD5C5-A65D-4608-96D4-7C5DA1F76302}:_1DC52301BCE34042B390DE888763ACEA"
                    {
                    "Name" = "8:Team XBMC"
                    "AlwaysCreate" = "11:FALSE"
                    "Condition" = "8:"
                    "Transitive" = "11:FALSE"
                    "Property" = "8:_ECF515590B0E4B229642B7D51AB5A4FD"
                        "Folders"
                        {
                        }
                    }
                }
            }
        }
        "LaunchCondition"
        {
        }
        "Locator"
        {
        }
        "MsiBootstrapper"
        {
        "LangId" = "3:1033"
        }
        "Product"
        {
        "Name" = "8:Microsoft Visual Studio"
        "ProductName" = "8:Translator"
        "ProductCode" = "8:{2C7E914A-C942-4AD5-BECD-70E3A916851B}"
        "PackageCode" = "8:{261EC689-4F4A-4478-8876-63D66EAC2DA8}"
        "UpgradeCode" = "8:{C448D307-6596-4437-88A2-A45CB80E62AF}"
        "RestartWWWService" = "11:FALSE"
        "RemovePreviousVersions" = "11:FALSE"
        "DetectNewerInstalledVersion" = "11:TRUE"
        "ProductVersion" = "8:1.0.0"
        "Manufacturer" = "8:Team XBMC"
        "ARPHELPTELEPHONE" = "8:"
        "ARPHELPLINK" = "8:http://xbmc.org"
        "Title" = "8:Team XBMC Translator"
        "Subject" = "8:"
        "ARPCONTACT" = "8:Team XBMC"
        "Keywords" = "8:"
        "ARPCOMMENTS" = "8:"
        "ARPURLINFOABOUT" = "8:http://xbmc.org"
        "ARPPRODUCTICON" = "8:_06A7E233C0184D43976534F6D22D901A"
        "ARPIconIndex" = "3:0"
        "SearchPath" = "8:"
        "UseSystemSearchPath" = "11:TRUE"
        }
        "Registry"
        {
            "HKLM"
            {
                "Keys"
                {
                    "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_E0048E33FC2945188CEC0C66B5EE26A9"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_5451B466EF694C688946DC25704945AF"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCU"
            {
                "Keys"
                {
                    "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_2406D7E33B72442DB1D084CDB767C1C0"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_40506B3910484842886EB65E90A1E199"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                    "{6A471EEF-D31B-40F8-BCF6-C9E8EC783F36}:_EF632AD9F2BD4D8EB7B09056087D4664"
                                    {
                                    "Name" = "8:[ProductName]"
                                    "Condition" = "8:"
                                    "AlwaysCreate" = "11:FALSE"
                                    "DeleteAtUninstall" = "11:FALSE"
                                    "Transitive" = "11:FALSE"
                                        "Keys"
                                        {
                                        }
                                        "Values"
                                        {
                                            "{35AE352C-BC79-4EF9-ABD8-61F467188583}:_6BB62C54D4DD43D6B75B06F1EF5579C6"
                                            {
                                            "Name" = "8:Email"
                                            "Condition" = "8:"
                                            "Transitive" = "11:FALSE"
                                            "ValueTypes" = "3:1"
                                            "Value" = "8:[TRANSLATOR_EMAIL]"
                                            }
                                            "{35AE352C-BC79-4EF9-ABD8-61F467188583}:_96BF26BA6B04466AA586774BAA4FA97A"
                                            {
                                            "Name" = "8:LanguageFolder"
                                            "Condition" = "8:"
                                            "Transitive" = "11:FALSE"
                                            "ValueTypes" = "3:1"
                                            "Value" = "8:"
                                            }
                                            "{35AE352C-BC79-4EF9-ABD8-61F467188583}:_A7F3A5847F4745D6A657FB9FEACDF784"
                                            {
                                            "Name" = "8:Name"
                                            "Condition" = "8:"
                                            "Transitive" = "11:FALSE"
                                            "ValueTypes" = "3:1"
                                            "Value" = "8:[TRANSLATOR_NAME]"
                                            }
                                            "{35AE352C-BC79-4EF9-ABD8-61F467188583}:_C8DDD9C5AEC34C60B8665318C2C58B43"
                                            {
                                            "Name" = "8:Language"
                                            "Condition" = "8:"
                                            "Transitive" = "11:FALSE"
                                            "ValueTypes" = "3:1"
                                            "Value" = "8:"
                                            }
                                        }
                                    }
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCR"
            {
                "Keys"
                {
                }
            }
            "HKU"
            {
                "Keys"
                {
                }
            }
            "HKPU"
            {
                "Keys"
                {
                }
            }
        }
        "Sequences"
        {
        }
        "Shortcut"
        {
            "{478F747B-8505-45D1-9AAE-8C3B645C26E3}:_A5EC8641F34E432A864FA82BF79FE70D"
            {
            "Name" = "8:XBMC Translator"
            "Arguments" = "8:"
            "Description" = "8:Helps to translate language files for XBMC"
            "ShowCmd" = "3:1"
            "IconIndex" = "3:0"
            "Transitive" = "11:FALSE"
            "Target" = "8:_8DF39D3C82A542C4B2A77AB57D96302F"
            "Folder" = "8:_1DC52301BCE34042B390DE888763ACEA"
            "WorkingFolder" = "8:_A27FF7782150426E8C0B3F894FAA4AAE"
            "Icon" = "8:_06A7E233C0184D43976534F6D22D901A"
            "Feature" = "8:"
            }
        }
        "UserInterface"
        {
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_06B791F8CCE242828BEAA0DA7272021A"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:1"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_12CC3189E724476586EFB987D32B96F0"
                    {
                    "Sequence" = "3:310"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_6E2B40ABD6434A7294C4FA5D9C9FB1EC"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Textboxes   (A)"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdCustomText1Dlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "BannerText"
                            {
                            "Name" = "8:BannerText"
                            "DisplayName" = "8:#1014"
                            "Description" = "8:#1114"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:2"
                            "Value" = "8:Translator Information"
                            "DefaultValue" = "8:#1214"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "BodyText"
                            {
                            "Name" = "8:BodyText"
                            "DisplayName" = "8:#1015"
                            "Description" = "8:#1115"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:2"
                            "Value" = "8:Enter your name and email adress. The name and email will later be saved with your translated files."
                            "DefaultValue" = "8:#1215"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit1Label"
                            {
                            "Name" = "8:Edit1Label"
                            "DisplayName" = "8:#1046"
                            "Description" = "8:#1146"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:2"
                            "Value" = "8:Name:"
                            "DefaultValue" = "8:#1246"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit1Property"
                            {
                            "Name" = "8:Edit1Property"
                            "DisplayName" = "8:#1050"
                            "Description" = "8:#1150"
                            "Type" = "3:14"
                            "ContextData" = "8:Public"
                            "Attributes" = "3:2"
                            "Setting" = "3:2"
                            "Value" = "8:TRANSLATOR_NAME"
                            "DefaultValue" = "8:EDITA1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit1Value"
                            {
                            "Name" = "8:Edit1Value"
                            "DisplayName" = "8:#1054"
                            "Description" = "8:#1154"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:"
                            "DefaultValue" = "8:"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit1Visible"
                            {
                            "Name" = "8:Edit1Visible"
                            "DisplayName" = "8:#1042"
                            "Description" = "8:#1142"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit2Label"
                            {
                            "Name" = "8:Edit2Label"
                            "DisplayName" = "8:#1047"
                            "Description" = "8:#1147"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:2"
                            "Value" = "8:Email:"
                            "DefaultValue" = "8:#1247"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit2Property"
                            {
                            "Name" = "8:Edit2Property"
                            "DisplayName" = "8:#1051"
                            "Description" = "8:#1151"
                            "Type" = "3:14"
                            "ContextData" = "8:Public"
                            "Attributes" = "3:2"
                            "Setting" = "3:2"
                            "Value" = "8:TRANSLATOR_EMAIL"
                            "DefaultValue" = "8:EDITA2"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit2Value"
                            {
                            "Name" = "8:Edit2Value"
                            "DisplayName" = "8:#1055"
                            "Description" = "8:#1155"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:"
                            "DefaultValue" = "8:"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit2Visible"
                            {
                            "Name" = "8:Edit2Visible"
                            "DisplayName" = "8:#1043"
                            "Description" = "8:#1143"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit3Label"
                            {
                            "Name" = "8:Edit3Label"
                            "DisplayName" = "8:#1048"
                            "Description" = "8:#1148"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1248"
                            "DefaultValue" = "8:#1248"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit3Property"
                            {
                            "Name" = "8:Edit3Property"
                            "DisplayName" = "8:#1052"
                            "Description" = "8:#1152"
                            "Type" = "3:14"
                            "ContextData" = "8:Public"
                            "Attributes" = "3:2"
                            "Setting" = "3:2"
                            "Value" = "8:EDITA3"
                            "DefaultValue" = "8:EDITA3"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit3Value"
                            {
                            "Name" = "8:Edit3Value"
                            "DisplayName" = "8:#1056"
                            "Description" = "8:#1156"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:"
                            "DefaultValue" = "8:"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit3Visible"
                            {
                            "Name" = "8:Edit3Visible"
                            "DisplayName" = "8:#1044"
                            "Description" = "8:#1144"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:0"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit4Label"
                            {
                            "Name" = "8:Edit4Label"
                            "DisplayName" = "8:#1049"
                            "Description" = "8:#1149"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1249"
                            "DefaultValue" = "8:#1249"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit4Property"
                            {
                            "Name" = "8:Edit4Property"
                            "DisplayName" = "8:#1053"
                            "Description" = "8:#1153"
                            "Type" = "3:14"
                            "ContextData" = "8:Public"
                            "Attributes" = "3:2"
                            "Setting" = "3:2"
                            "Value" = "8:EDITA4"
                            "DefaultValue" = "8:EDITA4"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit4Value"
                            {
                            "Name" = "8:Edit4Value"
                            "DisplayName" = "8:#1057"
                            "Description" = "8:#1057"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:"
                            "DefaultValue" = "8:"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Edit4Visible"
                            {
                            "Name" = "8:Edit4Visible"
                            "DisplayName" = "8:#1045"
                            "Description" = "8:#1145"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:0"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_EB2E51B34B7748D88E204E8DFD39EA0E"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_F79930341DCC416F819D7276D3EF333B"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_23E83C371897464E8EAE0BDEFEB2B44F"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:2"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_F15CD55A9A124DEE8B3D631F1026AA09"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_269F24532BDA4169885FA5086E633E52"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
            }
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_43FAF03054DE405A81AD0B2EF9D0387E"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:1"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_C26EB658BB46440B8003CC4C2C28F1CE"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{B654A020-6903-4E6A-A86C-75DC463DB54B}:_95D78D1EAD344EAA965D3FADCB36CC2C"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
            }
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_AA563F317E8F4286949243A3FBDA1BAA"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:2"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_56A167D9EE744CE9A1610436C2BD37D6"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_F2C0EBB6F4874870ADD5471517CA054A"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_F8623BBBD1BE48CBAE046D5D4EB3C320"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_BC58D4AD6D9F4EEAAC405596FF203F64"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:2"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_E74FBD9976034D1A924CEF26ADACD155"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{8D9DEE8B-DD8B-4F48-9072-C4364E4F4011}:_F9ACA7AF7FEA4A85B1E2F5213DE90AF5"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:1"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{18ADD6EC-89FE-4ED7-AD3E-211C40278470}:_3EE9B3F2DFBE497884BF510E376A36BB"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "UpdateText"
                            {
                            "Name" = "8:UpdateText"
                            "DisplayName" = "8:#1058"
                            "Description" = "8:#1158"
                            "Type" = "3:15"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1258"
                            "DefaultValue" = "8:#1258"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
        }
        "MergeModule"
        {
            "{35A69C6E-5BA4-440D-803D-762B59A45393}:_15F65061D55F45418AAEF2D60CB7B847"
            {
            "UseDynamicProperties" = "11:TRUE"
            "IsDependency" = "11:TRUE"
            "SourcePath" = "8:dotnetfxredist_x86.msm"
                "Properties"
                {
                }
            "LanguageId" = "3:1033"
            "Exclude" = "11:TRUE"
            "Folder" = "8:"
            "Feature" = "8:"
            "IsolateTo" = "8:"
            }
        }
        "ProjectOutput"
        {
            "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_2A419B2AF19541678CAF43A93072EDE7"
            {
            "SourcePath" = "8:"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_A27FF7782150426E8C0B3F894FAA4AAE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            "ProjectOutputGroupRegister" = "3:1"
            "OutputConfiguration" = "8:Release"
            "OutputGroupCanonicalName" = "8:LocalizedResourceDlls"
            "OutputProjectGuid" = "8:{75A56598-4600-401D-9F4B-B9F36C4AC86F}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
            "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_8DF39D3C82A542C4B2A77AB57D96302F"
            {
            "SourcePath" = "8:..\\Translator\\obj\\Release\\Translator.exe"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_A27FF7782150426E8C0B3F894FAA4AAE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Vital" = "11:TRUE"
            "ReadOnly" = "11:FALSE"
            "Hidden" = "11:FALSE"
            "System" = "11:FALSE"
            "Permanent" = "11:FALSE"
            "SharedLegacy" = "11:FALSE"
            "PackageAs" = "3:1"
            "Register" = "3:1"
            "Exclude" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "IsolateTo" = "8:"
            "ProjectOutputGroupRegister" = "3:1"
            "OutputConfiguration" = "8:Release"
            "OutputGroupCanonicalName" = "8:Built"
            "OutputProjectGuid" = "8:{75A56598-4600-401D-9F4B-B9F36C4AC86F}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
        }
    }
}