-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_script.iss
5366 lines (5352 loc) · 653 KB
/
install_script.iss
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
;InnoSetupVersion=5.5.7 (Unicode)
[Setup]
AppName={cm:AppName}
AppVerName={cm:AppName}
AppId=Foxit Reader
AppVersion=2024.4.0.27683
AppPublisher=Foxit Software Inc.
AppPublisherURL={cm:AppSupportURL}0
AppSupportURL={cm:AppPublisherURL}0
AppMutex=Foxit PDF Reader,Global\Foxit PDF Reader
DefaultDirName={pf}\Foxit Software\Foxit PDF Reader
DefaultGroupName={cm:AppName}
UninstallDisplayIcon={app}\FoxitPDFReader.exe
UninstallDisplayName={cm:AppName}
OutputBaseFilename=tmpsafld3.tmp
Compression=lzma
DisableDirPage=auto
DisableProgramGroupPage=yes
WizardImageFile=embedded\WizardImage0.bmp
WizardSmallImageFile=embedded\WizardSmallImage0.bmp
[Files]
Source: "{app}\plugins\DMSforLegal.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\AiAssistant.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\icudtl.dat"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\V8\icudtl.dat"; DestDir: "{app}\V8"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\FoxitSign.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\InkSign.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Collaboration.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\U3DBrowser.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Sensor.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\opentracing.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Sensor64.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\opentracing64.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Browser.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\FPCSDK.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0; Flags: ignoreversion
Source: "{app}\FPCSDK64.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0; Flags: ignoreversion
Source: "{app}\plugins\FoxitAccountManagement.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\fxhostobject.tlb"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\WebView2Loader.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\WebView\x64\WebView2Loader.dll"; DestDir: "{app}\WebView\x64"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\mfc140u.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\mfcm140u.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\msvcp140.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\vccorlib140.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\vcruntime140.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-console-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-console-l1-2-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-datetime-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-debug-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-errorhandling-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-fibers-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-file-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-file-l1-2-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-file-l2-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-handle-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-heap-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-interlocked-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-libraryloader-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-localization-l1-2-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-memory-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-namedpipe-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-processenvironment-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-processthreads-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-processthreads-l1-1-1.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-profile-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-rtlsupport-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-string-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-synch-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-synch-l1-2-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-sysinfo-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-timezone-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-core-util-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\API-MS-Win-core-xstate-l2-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-conio-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-convert-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-environment-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-filesystem-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-heap-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-locale-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-math-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-multibyte-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-private-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-process-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-runtime-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-stdio-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-string-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-time-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\api-ms-win-crt-utility-l1-1-0.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\ucrtbase.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lucene++-contrib.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lucene++.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\fxLuceneLib.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\legal.txt"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\OneDrivePlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\GoogleDrivePlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\DropboxPlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\BoxPlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\CommentsSummary.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{tmp}\Foxit_PhantomPDF_Setup.exe"; DestDir: "{tmp}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0; Flags: deleteafterinstall dontcopy
Source: "{app}\plugins\HttpCallWebService.dll"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\64BitMailAgent.exe"; DestDir: "{app}"; Check: "IsWin64"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\PlgDynLoader.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\TrackReview.exe"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\ShareReviewPlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\agnosticuilib.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\notice.txt"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\PlgPltfm.fpi"; DestDir: "{app}\plugins"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\DefaultPluginsList.xml"; DestDir: "{app}\plugins"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\LayerPanelToolPlugin.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Signature.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Security.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\LoupeTool.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Email.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\DocProcess.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\MAPIEmail.dll"; DestDir: "{app}"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Portfolio.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\Bookmark.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\PDFAccessibility.fpi"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\no_connection.html"; DestDir: "{app}\plugins"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\accent.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\correct.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceam.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceam2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscebr.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscebr2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceca.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceca2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscedu.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscedu2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscefr.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscefr2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscege.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscegn2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceit.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\ssceit2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscepb.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscepb2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscesp.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\sscesp2.clx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\tech.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\lex\userdic.tlx"; DestDir: "{app}\lex"; Components: ffSpellCheck; Check: "CheckIsffspellcheck"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\plugins\npFoxitPDFReaderPlugin.dll"; DestDir: "{app}\plugins"; Components: ffaddin; Check: "CheckIsffaddin"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\index.html"; DestDir: "{app}\Start\da-DK"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\index_dark.html"; DestDir: "{app}\Start\da-DK"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\skin.css"; DestDir: "{app}\Start\da-DK"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\version.xml"; DestDir: "{app}\Start\da-DK"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\da-DK\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\css\bootstrap.min.css"; DestDir: "{app}\Start\da-DK\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\css\reader.css"; DestDir: "{app}\Start\da-DK\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\css\reader_dark.css"; DestDir: "{app}\Start\da-DK\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\Default\config.css"; DestDir: "{app}\Start\da-DK\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\history\history.json"; DestDir: "{app}\Start\da-DK\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\5-star-rating.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-logo-white.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_epub.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_folder_open.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_folder_open.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_pdf.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_pdf.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_pdf_dark.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_remove.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_remove.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\icon_remove_dark.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\remove-all.svg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-default-bg.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-one-bg.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-one-image.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-one-logo.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-three-logo.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-two-image.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\right-two-logo.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-01-dark.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-01.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-01.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-02.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-03.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-04.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-05.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\top-features-icon-06.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\web-apps-title-image.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\images\web-apps-title-image~.png"; DestDir: "{app}\Start\da-DK\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\js\common.js"; DestDir: "{app}\Start\da-DK\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\da-DK\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\da-DK\js\nor.js"; DestDir: "{app}\Start\da-DK\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\index.html"; DestDir: "{app}\Start\de-DE"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\index_dark.html"; DestDir: "{app}\Start\de-DE"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\skin.css"; DestDir: "{app}\Start\de-DE"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\version.xml"; DestDir: "{app}\Start\de-DE"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\de-DE\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\css\bootstrap.min.css"; DestDir: "{app}\Start\de-DE\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\css\reader.css"; DestDir: "{app}\Start\de-DE\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\css\reader_dark.css"; DestDir: "{app}\Start\de-DE\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\Default\config.css"; DestDir: "{app}\Start\de-DE\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\history\history.json"; DestDir: "{app}\Start\de-DE\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\5-star-rating.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-logo-white.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_epub.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_folder_open.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_folder_open.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_pdf.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_pdf.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_pdf_dark.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_remove.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_remove.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\icon_remove_dark.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\remove-all.svg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-default-bg.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-one-bg.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-one-image.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-one-logo.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-three-logo.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-two-image.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\right-two-logo.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-01-dark.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-01.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-01.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-02.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-03.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-04.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-05.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\top-features-icon-06.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\web-apps-title-image.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\images\web-apps-title-image~.png"; DestDir: "{app}\Start\de-DE\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\js\common.js"; DestDir: "{app}\Start\de-DE\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\de-DE\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\de-DE\js\nor.js"; DestDir: "{app}\Start\de-DE\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\index.html"; DestDir: "{app}\Start\en-US"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\index_dark.html"; DestDir: "{app}\Start\en-US"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\skin.css"; DestDir: "{app}\Start\en-US"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\version.xml"; DestDir: "{app}\Start\en-US"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\en-US\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\css\bootstrap.min.css"; DestDir: "{app}\Start\en-US\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\css\reader.css"; DestDir: "{app}\Start\en-US\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\css\reader_dark.css"; DestDir: "{app}\Start\en-US\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\Default\config.css"; DestDir: "{app}\Start\en-US\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\history\history.json"; DestDir: "{app}\Start\en-US\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\5-star-rating.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\background-foxit-blog.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\background-phantompdf.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\background-web-apps.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-logo-white.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_epub.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_folder_open.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_folder_open.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_pdf.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_pdf.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_pdf_dark.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_remove.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_remove.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\icon_remove_dark.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\phantom-title-image.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\remove-all.svg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-default-bg.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-one-bg.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-one-image.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-one-logo.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-three-logo.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-two-image.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\right-two-logo.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-01-dark.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-01.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-01.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-02.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-03.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-04.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-05.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\top-features-icon-06.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\web-apps-title-image.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\images\web-apps-title-image~.png"; DestDir: "{app}\Start\en-US\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\js\common.js"; DestDir: "{app}\Start\en-US\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\en-US\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\en-US\js\nor.js"; DestDir: "{app}\Start\en-US\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\index.html"; DestDir: "{app}\Start\es-419"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\index_dark.html"; DestDir: "{app}\Start\es-419"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\skin.css"; DestDir: "{app}\Start\es-419"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\version.xml"; DestDir: "{app}\Start\es-419"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\es-419\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\css\bootstrap.min.css"; DestDir: "{app}\Start\es-419\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\css\reader.css"; DestDir: "{app}\Start\es-419\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\css\reader_dark.css"; DestDir: "{app}\Start\es-419\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\Default\config.css"; DestDir: "{app}\Start\es-419\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\history\history.json"; DestDir: "{app}\Start\es-419\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\5-star-rating.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-logo-white.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_epub.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_folder_open.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_folder_open.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_pdf.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_pdf.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_pdf_dark.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_remove.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_remove.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\icon_remove_dark.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\remove-all.svg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-default-bg.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-one-bg.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-one-image.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-one-logo.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-three-logo.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-two-image.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\right-two-logo.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-01-dark.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-01.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-01.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-02.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-03.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-04.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-05.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\top-features-icon-06.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\web-apps-title-image.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\images\web-apps-title-image~.png"; DestDir: "{app}\Start\es-419\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\js\common.js"; DestDir: "{app}\Start\es-419\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\es-419\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\es-419\js\nor.js"; DestDir: "{app}\Start\es-419\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\index.html"; DestDir: "{app}\Start\fi-FI"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\index_dark.html"; DestDir: "{app}\Start\fi-FI"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\skin.css"; DestDir: "{app}\Start\fi-FI"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\version.xml"; DestDir: "{app}\Start\fi-FI"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\fi-FI\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\css\bootstrap.min.css"; DestDir: "{app}\Start\fi-FI\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\css\reader.css"; DestDir: "{app}\Start\fi-FI\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\css\reader_dark.css"; DestDir: "{app}\Start\fi-FI\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\Default\config.css"; DestDir: "{app}\Start\fi-FI\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\history\history.json"; DestDir: "{app}\Start\fi-FI\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\5-star-rating.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-logo-white.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_epub.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_folder_open.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_folder_open.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_pdf.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_pdf.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_pdf_dark.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_remove.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_remove.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\icon_remove_dark.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\remove-all.svg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-default-bg.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-one-bg.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-one-image.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-one-logo.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-three-logo.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-two-image.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\right-two-logo.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-01-dark.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-01.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-01.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-02.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-03.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-04.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-05.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\top-features-icon-06.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\web-apps-title-image.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\images\web-apps-title-image~.png"; DestDir: "{app}\Start\fi-FI\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\js\common.js"; DestDir: "{app}\Start\fi-FI\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\fi-FI\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fi-FI\js\nor.js"; DestDir: "{app}\Start\fi-FI\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\index.html"; DestDir: "{app}\Start\fr-FR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\index_dark.html"; DestDir: "{app}\Start\fr-FR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\skin.css"; DestDir: "{app}\Start\fr-FR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\version.xml"; DestDir: "{app}\Start\fr-FR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\fr-FR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\css\bootstrap.min.css"; DestDir: "{app}\Start\fr-FR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\css\reader.css"; DestDir: "{app}\Start\fr-FR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\css\reader_dark.css"; DestDir: "{app}\Start\fr-FR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\Default\config.css"; DestDir: "{app}\Start\fr-FR\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\history\history.json"; DestDir: "{app}\Start\fr-FR\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\5-star-rating.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-logo-white.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_epub.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_folder_open.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_folder_open.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_pdf.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_pdf.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_pdf_dark.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_remove.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_remove.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\icon_remove_dark.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\remove-all.svg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-default-bg.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-one-bg.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-one-image.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-one-logo.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-three-logo.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-two-image.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\right-two-logo.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-01-dark.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-01.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-01.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-02.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-03.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-04.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-05.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\top-features-icon-06.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\web-apps-title-image.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\images\web-apps-title-image~.png"; DestDir: "{app}\Start\fr-FR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\js\common.js"; DestDir: "{app}\Start\fr-FR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\fr-FR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\fr-FR\js\nor.js"; DestDir: "{app}\Start\fr-FR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\index.html"; DestDir: "{app}\Start\it-IT"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\index_dark.html"; DestDir: "{app}\Start\it-IT"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\skin.css"; DestDir: "{app}\Start\it-IT"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\version.xml"; DestDir: "{app}\Start\it-IT"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\it-IT\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\css\bootstrap.min.css"; DestDir: "{app}\Start\it-IT\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\css\reader.css"; DestDir: "{app}\Start\it-IT\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\css\reader_dark.css"; DestDir: "{app}\Start\it-IT\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\Default\config.css"; DestDir: "{app}\Start\it-IT\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\history\history.json"; DestDir: "{app}\Start\it-IT\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\5-star-rating.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-logo-white.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_epub.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_folder_open.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_folder_open.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_pdf.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_pdf.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_pdf_dark.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_remove.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_remove.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\icon_remove_dark.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\remove-all.svg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-default-bg.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-one-bg.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-one-image.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-one-logo.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-three-logo.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-two-image.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\right-two-logo.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-01-dark.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-01.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-01.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-02.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-03.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-04.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-05.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\top-features-icon-06.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\web-apps-title-image.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\images\web-apps-title-image~.png"; DestDir: "{app}\Start\it-IT\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\js\common.js"; DestDir: "{app}\Start\it-IT\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\it-IT\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\it-IT\js\nor.js"; DestDir: "{app}\Start\it-IT\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\index.html"; DestDir: "{app}\Start\ja-JP"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\index_dark.html"; DestDir: "{app}\Start\ja-JP"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\skin.css"; DestDir: "{app}\Start\ja-JP"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\version.xml"; DestDir: "{app}\Start\ja-JP"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\ja-JP\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\css\bootstrap.min.css"; DestDir: "{app}\Start\ja-JP\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\css\reader.css"; DestDir: "{app}\Start\ja-JP\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\css\reader_dark.css"; DestDir: "{app}\Start\ja-JP\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\Default\config.css"; DestDir: "{app}\Start\ja-JP\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\history\history.json"; DestDir: "{app}\Start\ja-JP\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\5-star-rating.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\background-foxit-blog.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\background-phantompdf.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\background-web-apps.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-logo-white.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-editor-cloud-logo.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-editor-logo.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-editor-logo.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-sdk-logo.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-pdf-sdk-logo.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-sign-logo.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_epub.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_folder_open.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_folder_open.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_pdf.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_pdf.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_pdf_dark.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_remove.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_remove.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\icon_remove_dark.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\phantom-title-image.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\remove-all.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\remove-all.svg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\top-features-01-dark.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\top-features-01.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\web-apps-title-image.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\images\web-apps-title-image~.png"; DestDir: "{app}\Start\ja-JP\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\js\common.js"; DestDir: "{app}\Start\ja-JP\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\ja-JP\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ja-JP\js\nor.js"; DestDir: "{app}\Start\ja-JP\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\index.html"; DestDir: "{app}\Start\ko-KR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\index_dark.html"; DestDir: "{app}\Start\ko-KR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\skin.css"; DestDir: "{app}\Start\ko-KR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\version.xml"; DestDir: "{app}\Start\ko-KR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\ko-KR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\css\bootstrap.min.css"; DestDir: "{app}\Start\ko-KR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\css\reader.css"; DestDir: "{app}\Start\ko-KR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\css\reader_dark.css"; DestDir: "{app}\Start\ko-KR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\Default\config.css"; DestDir: "{app}\Start\ko-KR\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\history\history.json"; DestDir: "{app}\Start\ko-KR\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\5-star-rating.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-logo-white.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_epub.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_folder_open.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_folder_open.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_pdf.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_pdf.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_pdf_dark.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_remove.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_remove.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\icon_remove_dark.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\remove-all.svg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-default-bg.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-one-bg.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-one-image.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-one-logo.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-three-logo.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-two-image.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\right-two-logo.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-01-dark.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-01.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-01.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-02.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-03.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-04.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-05.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\top-features-icon-06.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\web-apps-title-image.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\images\web-apps-title-image~.png"; DestDir: "{app}\Start\ko-KR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\js\common.js"; DestDir: "{app}\Start\ko-KR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\ko-KR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ko-KR\js\nor.js"; DestDir: "{app}\Start\ko-KR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\index.html"; DestDir: "{app}\Start\nb-NO"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\index_dark.html"; DestDir: "{app}\Start\nb-NO"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\skin.css"; DestDir: "{app}\Start\nb-NO"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\version.xml"; DestDir: "{app}\Start\nb-NO"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\nb-NO\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\css\bootstrap.min.css"; DestDir: "{app}\Start\nb-NO\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\css\reader.css"; DestDir: "{app}\Start\nb-NO\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\css\reader_dark.css"; DestDir: "{app}\Start\nb-NO\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\Default\config.css"; DestDir: "{app}\Start\nb-NO\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\history\history.json"; DestDir: "{app}\Start\nb-NO\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\5-star-rating.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-logo-white.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_epub.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_folder_open.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_folder_open.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_pdf.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_pdf.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_pdf_dark.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_remove.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_remove.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\icon_remove_dark.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\remove-all.svg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-default-bg.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-one-bg.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-one-image.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-one-logo.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-three-logo.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-two-image.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\right-two-logo.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-01-dark.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-01.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-01.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-02.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-03.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-04.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-05.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\top-features-icon-06.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\web-apps-title-image.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\images\web-apps-title-image~.png"; DestDir: "{app}\Start\nb-NO\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\js\common.js"; DestDir: "{app}\Start\nb-NO\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\nb-NO\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nb-NO\js\nor.js"; DestDir: "{app}\Start\nb-NO\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\index.html"; DestDir: "{app}\Start\nl-NL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\index_dark.html"; DestDir: "{app}\Start\nl-NL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\skin.css"; DestDir: "{app}\Start\nl-NL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\version.xml"; DestDir: "{app}\Start\nl-NL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\nl-NL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\css\bootstrap.min.css"; DestDir: "{app}\Start\nl-NL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\css\reader.css"; DestDir: "{app}\Start\nl-NL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\css\reader_dark.css"; DestDir: "{app}\Start\nl-NL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\Default\config.css"; DestDir: "{app}\Start\nl-NL\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\history\history.json"; DestDir: "{app}\Start\nl-NL\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\5-star-rating.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-logo-white.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_epub.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_folder_open.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_folder_open.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_pdf.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_pdf.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_pdf_dark.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_remove.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_remove.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\icon_remove_dark.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\remove-all.svg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-default-bg.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-one-bg.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-one-image.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-one-logo.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-three-logo.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-two-image.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\right-two-logo.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-01-dark.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-01.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-01.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-02.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-03.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-04.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-05.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\top-features-icon-06.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\web-apps-title-image.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\images\web-apps-title-image~.png"; DestDir: "{app}\Start\nl-NL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\js\common.js"; DestDir: "{app}\Start\nl-NL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\nl-NL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\nl-NL\js\nor.js"; DestDir: "{app}\Start\nl-NL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\index.html"; DestDir: "{app}\Start\pl-PL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\index_dark.html"; DestDir: "{app}\Start\pl-PL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\skin.css"; DestDir: "{app}\Start\pl-PL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\version.xml"; DestDir: "{app}\Start\pl-PL"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\pl-PL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\css\bootstrap.min.css"; DestDir: "{app}\Start\pl-PL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\css\reader.css"; DestDir: "{app}\Start\pl-PL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\css\reader_dark.css"; DestDir: "{app}\Start\pl-PL\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\Default\config.css"; DestDir: "{app}\Start\pl-PL\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\history\history.json"; DestDir: "{app}\Start\pl-PL\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\5-star-rating.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-logo-white.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_epub.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_folder_open.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_folder_open.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_pdf.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_pdf.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_pdf_dark.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_remove.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_remove.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\icon_remove_dark.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\remove-all.svg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-default-bg.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-one-bg.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-one-image.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-one-logo.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-three-logo.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-two-image.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\right-two-logo.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-01-dark.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-01.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-01.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-02.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-03.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-04.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-05.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\top-features-icon-06.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\web-apps-title-image.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\images\web-apps-title-image~.png"; DestDir: "{app}\Start\pl-PL\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\js\common.js"; DestDir: "{app}\Start\pl-PL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\pl-PL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pl-PL\js\nor.js"; DestDir: "{app}\Start\pl-PL\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\index.html"; DestDir: "{app}\Start\pt-BR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\index_dark.html"; DestDir: "{app}\Start\pt-BR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\skin.css"; DestDir: "{app}\Start\pt-BR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\version.xml"; DestDir: "{app}\Start\pt-BR"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\pt-BR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\css\bootstrap.min.css"; DestDir: "{app}\Start\pt-BR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\css\reader.css"; DestDir: "{app}\Start\pt-BR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\css\reader_dark.css"; DestDir: "{app}\Start\pt-BR\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\Default\config.css"; DestDir: "{app}\Start\pt-BR\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\history\history.json"; DestDir: "{app}\Start\pt-BR\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\5-star-rating.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-logo-white.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_epub.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_folder_open.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_folder_open.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_pdf.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_pdf.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_pdf_dark.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_remove.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_remove.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\icon_remove_dark.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\remove-all.svg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-default-bg.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-one-bg.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-one-image.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-one-logo.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-three-logo.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-two-image.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\right-two-logo.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-01-dark.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-01.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-01.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-02.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-03.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-04.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-05.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\top-features-icon-06.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\web-apps-title-image.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\web-apps-title-image_dark.jpg"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\images\web-apps-title-image~.png"; DestDir: "{app}\Start\pt-BR\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\js\common.js"; DestDir: "{app}\Start\pt-BR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\js\jquery-1.9.1.min.js"; DestDir: "{app}\Start\pt-BR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\pt-BR\js\nor.js"; DestDir: "{app}\Start\pt-BR\js"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\index.html"; DestDir: "{app}\Start\ru-RU"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\index_dark.html"; DestDir: "{app}\Start\ru-RU"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\skin.css"; DestDir: "{app}\Start\ru-RU"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\version.xml"; DestDir: "{app}\Start\ru-RU"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\css\bootstrap-theme.min.css"; DestDir: "{app}\Start\ru-RU\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\css\bootstrap.min.css"; DestDir: "{app}\Start\ru-RU\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\css\reader.css"; DestDir: "{app}\Start\ru-RU\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\css\reader_dark.css"; DestDir: "{app}\Start\ru-RU\css"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\Default\config.css"; DestDir: "{app}\Start\ru-RU\Default"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\history\history.json"; DestDir: "{app}\Start\ru-RU\history"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\5-star-rating.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-logo-white.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-pdf-editor-title-image.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-pdf-editor-title-image_dark.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-sign-title-background.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-sign-title-image.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-sign-title-image_dark.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\foxit-web-apps-logo.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon-up-left-arrow-external-link.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_epub.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_folder_open.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_folder_open.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_folder_open_dark.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_folder_open_dark.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_pdf.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_pdf.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_pdf_dark.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_pdf_dark.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_remove.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_remove.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\icon_remove_dark.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\remove-all.svg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-default-bg.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-default-dark-bg.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-one-bg.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-one-dark-bg.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-one-image.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-one-logo.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-three-logo.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-two-image.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\right-two-logo.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-01-dark.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-01.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-01.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-02.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-03.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-04.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-05.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-dark-icon-06.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-01.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-02.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-03.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-04.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-05.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\top-features-icon-06.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\web-apps-title-image.jpg"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;
Source: "{app}\Start\ru-RU\images\web-apps-title-image.png"; DestDir: "{app}\Start\ru-RU\images"; BeforeInstall: "ChangeDisplay"; MinVersion: 0.0,5.0;