forked from Pauldusler/3D-Fix-Manager---Localizations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StringResources_EN.xaml
2092 lines (1744 loc) · 181 KB
/
StringResources_EN.xaml
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
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="../Styles/FlowDocument.xaml"/>
</ResourceDictionary.MergedDictionaries>
<!-- Display Profiles Window Bar -->
<system:String x:Key="Monitor">Monitor</system:String>
<system:String x:Key="Projector">Projector</system:String>
<system:String x:Key="TV">TV</system:String>
<system:String x:Key="VrHeadset">VR Headset</system:String>
<!-- Misc -->
<system:String x:Key="LoadingApplication">Loading Application. Please wait...</system:String>
<system:String x:Key="SwitchToCompactGui">Switch to compact gui size.</system:String>
<system:String x:Key="SwitchToNormalGui">Switch to normal gui size.</system:String>
<system:String x:Key="MinimizeToTray">Minimize window to system tray.</system:String>
<system:String x:Key="ChangeLanguage">Change Language</system:String>
<system:String x:Key="Close">Close</system:String>
<system:String x:Key="Show">Show</system:String>
<system:String x:Key="Enable3D">Enable 3D</system:String>
<system:String x:Key="Disable3D">Disable 3D</system:String>
<system:String x:Key="EnableDriverMod">Enable driver mod</system:String>
<system:String x:Key="DisableDriverMod">Disable driver mod</system:String>
<system:String x:Key="NoMatchFound">No Match found for</system:String>
<!-- Tab header title -->
<system:String x:Key="Installation">Installation</system:String>
<system:String x:Key="Play">Play</system:String>
<system:String x:Key="EditProfile">Edit Profile</system:String>
<system:String x:Key="NewProfile">New Profile</system:String>
<system:String x:Key="Hotkeys">Hotkeys</system:String>
<system:String x:Key="3dfix">3D Fix</system:String>
<system:String x:Key="Profile">Profile</system:String>
<system:String x:Key="Settings">Settings</system:String>
<system:String x:Key="About">About</system:String>
<system:String x:Key="GeneralSettings">Application Settings</system:String>
<system:String x:Key="Nvidia3DSettings">Nvidia 3D Settings</system:String>
<system:String x:Key="DisplayProfiles">Display Profiles</system:String>
<!-- Game list on left column-->
<system:String x:Key="AllGames">All Games</system:String>
<system:String x:Key="InstalledGames">Installed Games</system:String>
<system:String x:Key="AllFixTypes">All Fix Types</system:String>
<system:String x:Key="_3dmigoto">3dmigoto (DX 11)</system:String>
<system:String x:Key="Helixmod">Helixmod (DX 9)</system:String>
<system:String x:Key="OpenGLwrapper">OpenGL Wrapper</system:String>
<system:String x:Key="VulkanWrapper">Vulkan Wrapper</system:String>
<system:String x:Key="NotFixed">Without 3D Fix</system:String>
<system:String x:Key="VerifiedFixes">Verified 3D Fixes</system:String>
<system:String x:Key="UnverifiedFixes">Unverified 3D Fixes</system:String>
<system:String x:Key="UE3">Unreal Engine 3</system:String>
<system:String x:Key="UE4">Unreal Engine 4</system:String>
<system:String x:Key="Unity">Unity</system:String>
<system:String x:Key="VrCompatible">VR compatible</system:String>
<system:String x:Key="New">New</system:String>
<system:String x:Key="CreateProfileToolTip">Create Fix Profile</system:String>
<system:String x:Key="Edit">Edit</system:String>
<system:String x:Key="EditProfileToolTip">Edit Fix Profile</system:String>
<system:String x:Key="Delete">Delete</system:String>
<system:String x:Key="DeleteProfileToolTip">Remove Fix Profile</system:String>
<system:String x:Key="FoundGames">Listed games:</system:String>
<!-- Installation Tab -->
<system:String x:Key="NoGamesInstalled">No compatible games installed.</system:String>
<system:String x:Key="Play2D">Play 2D</system:String>
<system:String x:Key="Play3D">Play 3D</system:String>
<system:String x:Key="PlayVR">Play in VR</system:String>
<system:String x:Key="InstallFix">Install 3D Fix</system:String>
<system:String x:Key="InstallFixCompleted">Install completed</system:String>
<system:String x:Key="BackupRecoveryFailed">Backup recovery failed.</system:String>
<system:String x:Key="InstallFixFailed">Install failed. Check Install Path</system:String>
<system:String x:Key="InstallFixFailed02" xml:space="preserve">Error: Fix could not be installed.

Make sure 3D Fix Manager is started with admin rights and try again.</system:String>
<system:String x:Key="InstallWrapperFailed" xml:space="preserve">Error: Wrapper could not be installed.

Make sure 3D Fix Manager is started with admin rights and try again.</system:String>
<system:String x:Key="FixWrapperOutdated">This fix includes an outdated version of 3dmigoto.</system:String>
<system:String x:Key="DownloadFix">Download 3D Fix</system:String>
<system:String x:Key="UninstallFix">Uninstall 3D Fix</system:String>
<system:String x:Key="UninstallFixCompleted">Uninstall completed</system:String>
<system:String x:Key="UninstallFixFailed">Uninstall failed</system:String>
<system:String x:Key="InstallWrapper">Install 3D Wrapper</system:String>
<system:String x:Key="UninstallWrapper">Uninstall 3D Wrapper</system:String>
<system:String x:Key="DeleteDownload">Clear DL Cache</system:String>
<system:String x:Key="DeleteDownloadToolTip">Deletes downloaded files of a 3D fix from 3D Fix Manager directory.</system:String>
<system:String x:Key="DeleteSuccess">Success. All downloaded files deleted.</system:String>
<system:String x:Key="DeleteError" xml:space="preserve">Error: Not all files could be deleted. 

Please make sure that no file is in use.</system:String>
<system:String x:Key="SourceFolder">Profile Folder</system:String>
<system:String x:Key="SourceFolderToolTip">Opens windows explorer and shows all files related to this 3D fix profile.</system:String>
<system:String x:Key="VisitSteamStore">Product Page</system:String>
<system:String x:Key="VisitSteamStoreToolTip">Opens webbrowser to show additional information about the game.</system:String>
<system:String x:Key="VisitHelixMod">HelixMod Blog</system:String>
<system:String x:Key="VisitHelixModToolTip">Get more information about the selected fix on HelixMod Webpage.</system:String>
<system:String x:Key="ForceCompatibilityMode">Enable CMU</system:String>
<system:String x:Key="EnableFix">Enable Fix</system:String>
<system:String x:Key="DownloadCompleted">Download completed</system:String>
<system:String x:Key="Downloading">Downloading...</system:String>
<system:String x:Key="DownloadFailed">Download failed.</system:String>
<system:String x:Key="Extracting">Extracting...</system:String>
<system:String x:Key="ExtractionFailed">Extraction failed.</system:String>
<system:String x:Key="GameNotInstalled">Game not installed</system:String>
<system:String x:Key="OpenExplorerError">Error: Could not open path in Windows explorer. Path does not exist</system:String>
<system:String x:Key="HotkeyBackupFound" xml:space="preserve">A backup for hotkeys and 3d fix configuration has been found. 

Do you want to restore the backup?</system:String>
<system:String x:Key="CreateHotkeyBackup">Do you want to create a backup of your hotkeys and 3D fix configuration before uninstall?</system:String>
<system:String x:Key="ThirdPartyDllError" xml:space="preserve">Warning: A third party DLL was found in the game directory having the same name like the 3D fix. 

DLL path: {0}

Do you want to backup this file before installing the 3D fix?</system:String>
<!--.................... New / Edit Profile Tab Begin .......................... -->
<system:String x:Key="VrCompatibility">Compatible to VR:</system:String>
<system:String x:Key="VrWarnMultiplayerOnline">Show Multiplayer Warning:</system:String>
<system:String x:Key="Uses3DDirect">Uses 3D Direct Mode:</system:String>
<system:String x:Key="OptimizedConvergenceValue">Optimized Convergence Value:</system:String>
<system:String x:Key="MaxConvergenceValue">Maximum Convergence Value:</system:String>
<system:String x:Key="MainSettingsGroup">Title and State of the 3D Fix:</system:String>
<system:String x:Key="VrSettingsGroup">Virtual Reality:</system:String>
<system:String x:Key="HelixApiSettingsGroup">Helix / Google Blogger API:</system:String>
<system:String x:Key="PrimaryDownloadGroup">Download 3D Fix:</system:String>
<system:String x:Key="AlternativeDownloadGroup">Download an alternative version of the 3D Fix:</system:String>
<system:String x:Key="InstallFixSettingsGroup">Install 3D Fix:</system:String>
<system:String x:Key="GameConfigSettingsGroup">Game Configuration:</system:String>
<system:String x:Key="OverrideMonitorProfileGroup">Override Monitor Profile:</system:String>
<system:String x:Key="OverrideTVProfileGroup">Override TV Profile:</system:String>
<system:String x:Key="OverrideProjectorProfileGroup">Override Projector Profile:</system:String>
<system:String x:Key="GameIconSettingsGroup">Game Icon:</system:String>
<system:String x:Key="DriverSettingsGroup">Driver Settings / Profiles for Nvidia Profile Inspector:</system:String>
<system:String x:Key="GameLaunchSettingsGroup">Game Launch:</system:String>
<system:String x:Key="MiscSettingsGroup">Misc Settings:</system:String>
<system:String x:Key="FixDescriptionSettingsGroup">3D Fix Description / Helix Blog:</system:String>
<system:String x:Key="GameTitle">*Game Title:</system:String>
<system:String x:Key="RelativeInstallPath">*Relative Install Path:</system:String>
<system:String x:Key="InstallDir">Install Folder:</system:String>
<system:String x:Key="InstallDirName">*Install Folder Name:</system:String>
<system:String x:Key="CustomRootPath">Custom Root / Game Path:</system:String>
<system:String x:Key="RelativeGameIniPath">1. Relative Path to a Game Config File:</system:String>
<system:String x:Key="SecondRelativeGameIniPath">2. Relative Path to a Game Config File:</system:String>
<system:String x:Key="ThirdRelativeGameIniPath">3. Relative Path to a Game Config File:</system:String>
<system:String x:Key="SetDate">Set Date</system:String>
<system:String x:Key="SetDateTooltip">Sets today's date as a timestamp.</system:String>
<system:String x:Key="DownloadLink_1">1. URL to 3D Fix:</system:String>
<system:String x:Key="DownloadLink_2">2. URL to 3D Fix:</system:String>
<system:String x:Key="DownloadLink_3">3. URL to 3D Fix:</system:String>
<system:String x:Key="InfoAlternativeUrl">Info about the alternative 3D Fix:</system:String>
<system:String x:Key="FixArchiveExtractor">Fix Archive Extractor:</system:String>
<system:String x:Key="AllowFixInstallation">Allow 3D Fix Installation:</system:String>
<system:String x:Key="AllowMigotoUpdate">Allow 3dmigoto Wrapper Update:</system:String>
<system:String x:Key="StereoRefreshRateOverride">Stereo Refresh Rate:</system:String>
<system:String x:Key="StartTool">Start additional Exe:</system:String>
<system:String x:Key="RequiresSwCursor">Requires Software Mouse Cursor:</system:String>
<system:String x:Key="UniversalFixDetectionError">Error: Game Engine could not be detected by searching PC Gaming Wiki and Wikipedia.</system:String>
<system:String x:Key="DetectEngine">Detect Engine</system:String>
<system:String x:Key="WebLinkHelix">URL to Helix Blog / Geforce Forum:</system:String>
<system:String x:Key="HelixPostUpdated">Helix Post last updated:</system:String>
<system:String x:Key="AllowHelixPostUpdate">Allow automatic post update:</system:String>
<system:String x:Key="LocalIconPath">Local Icon Path:</system:String>
<system:String x:Key="RemoteIconPath">Remote Icon Path:</system:String>
<system:String x:Key="DepthHackOverride">3D Depth Hack:</system:String>
<system:String x:Key="DisableFixIn2DMode">Disable 3D fix in 2D mode:</system:String>
<system:String x:Key="ProductPageUrl">URL to Product Page:</system:String>
<system:String x:Key="CmFlag">Hex Value for Compatibility Mode:</system:String>
<system:String x:Key="Profile2DMode">Nvidia Inspector Profile for 2D Mode:</system:String>
<system:String x:Key="Profile3DMode">Nvidia Inspector Profile for 3D Mode:</system:String>
<system:String x:Key="FixState">3D Fix State:</system:String>
<system:String x:Key="SteamAppID">Steam App ID:</system:String>
<system:String x:Key="EpicAppID">Epic App ID:</system:String>
<system:String x:Key="WaitForExit">Wait for exit</system:String>
<system:String x:Key="GameExeAsArgument">Game Exe as start parameter</system:String>
<system:String x:Key="Create">Create</system:String>
<system:String x:Key="GameLauncherExe">*Game Launcher Exe:</system:String>
<system:String x:Key="GameLauncherOptions">Start Parameters:</system:String>
<system:String x:Key="ModifyGameExe">Modify Game Exe:</system:String>
<system:String x:Key="GameExeSearchString">Search String:</system:String>
<system:String x:Key="GameExeReplaceString">Replacement String:</system:String>
<system:String x:Key="DoNotModify">Do not modify</system:String>
<system:String x:Key="ModifyNormalGameExe">Modify Game Exe</system:String>
<system:String x:Key="ModifyAdditionalExe">Modify additional Exe</system:String>
<system:String x:Key="FixDescription">Fix Description:</system:String>
<system:String x:Key="CreateEditConfigFile">Create / edit</system:String>
<system:String x:Key="EditOnlyConfigFile">Edit only</system:String>
<!-- ComboBoxes -->
<system:String x:Key="SimpleView">Simple View</system:String>
<system:String x:Key="DetailedView">Detailed View</system:String>
<system:String x:Key="NoProfileInstall">Do not install Profile</system:String>
<system:String x:Key="InstallWithDialog">Install with Dialog</system:String>
<system:String x:Key="SilentInstallation">Silent Installation</system:String>
<system:String x:Key="Unknown">Unknown</system:String>
<system:String x:Key="FixBroken">Fix Broken</system:String>
<system:String x:Key="FixBrokenToolTip">3D Fix is currently broken.</system:String>
<system:String x:Key="RequiresExtraSteps">Requires extra steps by user</system:String>
<system:String x:Key="RequiresExtraStepsToolTip">Installation of fix requires additional steps done by the user for completing installation. Please check description below.</system:String>
<system:String x:Key="WorksOutOfTheBox">Works out of the box</system:String>
<system:String x:Key="WorksOutOfTheBoxToolTip">No additional steps required for installing the fix. This is a simple one click installation.</system:String>
<system:String x:Key="CloseRTSS">Close RTSS</system:String>
<system:String x:Key="StartRTSS">Start RTSS</system:String>
<system:String x:Key="StartByAppId">Start via Steam App ID</system:String>
<system:String x:Key="StartByGameExe">Start via Game Exe</system:String>
<system:String x:Key="StartByToolExe">Start via additional Exe</system:String>
<system:String x:Key="RunNormal">Run normal</system:String>
<system:String x:Key="RunAsAdmin">Run as admin</system:String>
<system:String x:Key="ApplyGlobalSetting">Apply global Setting</system:String>
<system:String x:Key="OverrideGlobalSetting">Override global Setting</system:String>
<system:String x:Key="CustomText">Custom Info Text</system:String>
<system:String x:Key="SLI">SLI Info Text</system:String>
<!-- Buttons-->
<system:String x:Key="ChoosePath">Choose Path</system:String>
<system:String x:Key="PickFile">Pick File</system:String>
<system:String x:Key="RemoveIcon">Remove Icon</system:String>
<system:String x:Key="OpenUrl">Open URL</system:String>
<system:String x:Key="SearchUrl">Search URL</system:String>
<system:String x:Key="SearchAppID">Search App ID</system:String>
<system:String x:Key="SearchInDB">Search in DB</system:String>
<system:String x:Key="SearchSteamDb">Search Steam DB</system:String>
<system:String x:Key="ValuesFor2D">Values for 2D</system:String>
<system:String x:Key="ValuesFor3D">Values for 3D</system:String>
<system:String x:Key="Open">Open File</system:String>
<system:String x:Key="OpenExplorer">Open Explorer</system:String>
<system:String x:Key="Cancel">Cancel</system:String>
<system:String x:Key="Save">Save</system:String>
<system:String x:Key="SaveChanges">Save Changes</system:String>
<system:String x:Key="CreateProfile">Create Profile</system:String>
<!--.................... Edit Profile Tab End .......................... -->
<!--.................... Hotkeys Tab Begin .......................... -->
<!-- CMU Management Group-->
<system:String x:Key="CmuGameExe">Game Exe:</system:String>
<system:String x:Key="AutoPatch">Enable auto patching:</system:String>
<system:String x:Key="PatchDelay">Patch delay:</system:String>
<system:String x:Key="AutoUpdateDriver">Update driver profile:</system:String>
<system:String x:Key="CmuSettings">Compatibility Mode Unleashed Settings:</system:String>
<system:String x:Key="CmuWarning" xml:space="preserve">Show CMU warning</system:String>
<system:String x:Key="CmuWarningDialog" xml:space="preserve">Warning: Although not being a cheat tool CMU might be detected as such in online games. As a result your game account would be banned.
Therefore it's recommended to use CMU for singleplayer or offline games only.</system:String>
<TextBlock x:Key="CmuWarningToolTip" TextWrapping="Wrap" Width="300">
Warns the user that using CMU in online games might lead to a ban of the game account.
</TextBlock>
<TextBlock x:Key="AutoUpdateDriverToolTip" TextWrapping="Wrap" Width="300">
This option controls whether to modify the driver profile of the game.<LineBreak/><LineBreak/>
If you have installed 3dmigoto this option is automatically disabled because 3dmigoto will take care of setting the driver profile for Compatibility Mode.<LineBreak/><LineBreak/>
When 3dmigoto is not installed CMU is used instead for adjusting the driver profile.
</TextBlock>
<TextBlock x:Key="AutoPatchToolTip" TextWrapping="Wrap" Width="300">
Controls whether to enable CMU automatically when starting a game. The activation of CMU is done after a defined period you can adjust in the option below.<LineBreak/><LineBreak/>
CMU then patches the Nvidia driver and allows the CMU hotkeys to work in order increase the 3D depth beyond allowed values by pressing F11 (default key binding).<LineBreak/><LineBreak/>
If you leave this option disabled you have to press CTRL + SHIFT + T ingame for enabling CMU manually.
</TextBlock>
<TextBlock x:Key="PatchDelayToolTip" TextWrapping="Wrap" Width="300">
Defines the period for automatically enabling CMU after the game was started.
</TextBlock>
<TextBlock x:Key="CmuGameExeToolTip" TextWrapping="Wrap" Width="300">
Name of the executable used to start the game.<LineBreak/><LineBreak/>
This is automatically set and should only be changed if required.
</TextBlock>
<TextBlock x:Key="CmuConvergenceToolTip" TextWrapping="Wrap" Width="300">
Enter the convergence value you want to set when the hotkey is pressed.<LineBreak/><LineBreak/>
Valid values range from 0.2 and 1.0. All numbers higher or lower than this are clamped by the Nvidia driver.
</TextBlock>
<TextBlock x:Key="CmuSeparationToolTip" TextWrapping="Wrap" Width="300">
Enter a factor to be multiplied with the current 3D depth.<LineBreak/><LineBreak/>
In other words with this factor you can exceed the very limited 3D depth of Compatibility Mode to improve the 3D effect.<LineBreak/><LineBreak/>
Example: if you choose a value of 2.2 this means that your maximum 3D depth is increased by 220%.<LineBreak/><LineBreak/>
You can also use the factor to lower the 3D depth (e.g. with a value of 0.2).<LineBreak/><LineBreak/>
This is especially useful in ego shooters where you want to aim by holding the right mouse button. A low 3D depth in this situation makes aiming more comfortable.
</TextBlock>
<system:String x:Key="FixInfo">Fix Info:</system:String>
<system:String x:Key="Game">Game:</system:String>
<system:String x:Key="GameEngine">Game Engine:</system:String>
<system:String x:Key="FixType">Fix Type:</system:String>
<system:String x:Key="WrapperVersion">Wrapper Version:</system:String>
<system:String x:Key="IniPath">Ini Path:</system:String>
<system:String x:Key="IniPath02">Ini Path 2:</system:String>
<system:String x:Key="CreateIni">Create Ini</system:String>
<system:String x:Key="ResetIniToDefault">Reset Ini to Default:</system:String>
<system:String x:Key="DownloadDefaultIni">Download Default Ini</system:String>
<system:String x:Key="ManageHotkeys">Manage Hotkeys:</system:String>
<system:String x:Key="NoIniProvided">No ini provided by this fix</system:String>
<system:String x:Key="ParseError">Sorry, ini file could not be parsed"</system:String>
<system:String x:Key="HelixVersionNotDetected" xml:space="preserve">Sorry, could not determine Helix Wrapper Version. 
Please click on 'Download Default Ini' to get this information</system:String>
<system:String x:Key="MigotoOld">3dmigoto (DirectX 11) - Old Version</system:String>
<system:String x:Key="HelixModOld">Helix Mod (DirectX 9) - Old Version</system:String>
<system:String x:Key="HotkeysNotSupportedMigoto">Sorry, hotkey editing not supported with this version of 3dmigoto.</system:String>
<system:String x:Key="HotkeysNotSupportedOpenGL">Sorry, hotkey editing not supported with this version of OpenGl Wrapper.</system:String>
<!-- Hotkey Management Group -->
<system:String x:Key="HotkeyManagement">Hotkey Management:</system:String>
<system:String x:Key="NewHotkey">New Hotkey</system:String>
<system:String x:Key="NewHotkeyToolTip">Creates a new hotkey. Don't forget to assign a key.</system:String>
<system:String x:Key="DeleteHotkey"> Remove Key</system:String>
<system:String x:Key="DeleteHotkeyToolTip">Removes hotkey with all corresponding 3D presets.</system:String>
<system:String x:Key="SelectedHotkey">Selected Hotkey:</system:String>
<system:String x:Key="SelectedHotkeyToolTip">Selected Hotkey for editing.</system:String>
<system:String x:Key="EditKeyBinding">Edit Key Binding:</system:String>
<system:String x:Key="KeyType">Key Type:</system:String>
<system:String x:Key="PressKeyToolTip">Press a key to change key binding.</system:String>
<system:String x:Key="ChooseInputDeviceToolTip">Choose Input Device for Key Binding.</system:String>
<system:String x:Key="Description">Description:</system:String>
<system:String x:Key="DescriptionToolTip">Short summary about the purpose of the hotkey.</system:String>
<system:String x:Key="ResetIniToolTip">Resets the ini to the original state.</system:String>
<!-- Preset Management Group -->
<system:String x:Key="PresetManagement">Preset Management:</system:String>
<system:String x:Key="NewPreset">New Preset</system:String>
<system:String x:Key="NewPresetToolTip">Creates a new 3D preset.</system:String>
<system:String x:Key="DefaultPreset">Default Preset:</system:String>
<system:String x:Key="Delay">Delay:</system:String>
<system:String x:Key="ReleaseDelay">Release Delay:</system:String>
<system:String x:Key="Transition">Transition:</system:String>
<system:String x:Key="ReleaseTransition">Release Transition:</system:String>
<!-- Preset Group -->
<system:String x:Key="UseStereoSettings">Use Stereo Settings</system:String>
<system:String x:Key="UseStereoSettingsToolTip">Enable this to allow this preset to change the separation and / or convergence settings in game.</system:String>
<system:String x:Key="SaveStereoSettings">Save Stereo Settings in Game with F7:</system:String>
<system:String x:Key="SaveStereoSettingsToolTip">Enable this to allow presets to be changed while playing. Make sure you select the preset in game by pressing the hotkey button, change 3D Depth / Convergence with CTRL + F3 - F6 to your liking and press F7 to save.</system:String>
<system:String x:Key="chkStereoSeparationToolTip">Enable this to set the 3D separation. Unchecking will remove the corresponding entry from the ini file.</system:String>
<system:String x:Key="sliderStereoSeparationToolTip">Set 3D separation in percent.</system:String>
<system:String x:Key="Convergence">Convergence:</system:String>
<system:String x:Key="chkConvergenceToolTip">"Enable this to set the convergence. Unchecking will remove the corresponding entry from the ini file."</system:String>
<system:String x:Key="tbConvergenceToolTip">Set the Convergence as a floating-point number.</system:String>
<system:String x:Key="chkShaderConstToolTip">Enable this to define a shader constant and set its value. Unchecking will remove the corresponding entry from the ini file</system:String>
<system:String x:Key="chbShaderConstToolTip">Choose a constant to be passed to the shader.</system:String>
<system:String x:Key="tbShaderConstToolTip">Set the constant value as a floating-point number.</system:String>
<system:String x:Key="NewConstant">New Constant</system:String>
<system:String x:Key="NewConstantToolTip">Creates a new shader constant.</system:String>
<system:String x:Key="DefaultConstToolTip">Type in a floating-point number</system:String>
<system:String x:Key="RemovePresetToolTip">Removes the entire preset from the ini file.</system:String>
<!-- General Ini Settings group -->
<system:String x:Key="GeneralIniSettings">General Ini Settings:</system:String>
<system:String x:Key="StereoOverlay">Stereo Overlay:</system:String>
<system:String x:Key="EnableStereoOverlay">Stereo Overlay / Hunting Mode:</system:String>
<system:String x:Key="ShowHideOverlay">Show / Hide Stereo Overlay:</system:String>
<system:String x:Key="ShowHideOverlayToolTip">Hotkey for hiding the overlay. Note: this will not disable hunting mode.</system:String>
<system:String x:Key="ReloadIniFile">Reload Ini File in Game:</system:String>
<system:String x:Key="ReloadIniFileToolTip">Reloads the ini while playing and applies hotkey / preset changes.</system:String>
<system:String x:Key="DefaultValuesConstants">Default Values for Shader Constants:</system:String>
<system:String x:Key="EnableAlternative3dMode">Enable alternative 3D format:</system:String>
<system:String x:Key="EnableAlternative3dModeToolTip">Choose an alternative 3D Format for use with 3D TVs and projectors.</system:String>
<system:String x:Key="EnableSoftwareMouse">Enable Software Mouse Cursor</system:String>
<system:String x:Key="Constant">Constant</system:String>
<system:String x:Key="ResolutionAndRefreshRates">Resolution and refresh rates:</system:String>
<system:String x:Key="EnableUpscaling">Enable upscaling:</system:String>
<system:String x:Key="UpscalingMode">Upscaling mode:</system:String>
<system:String x:Key="OverrideScreenWidth">Override screen width:</system:String>
<system:String x:Key="OverrideScreenHeight">Override screen height:</system:String>
<system:String x:Key="OverrideScreenToolTip">Force override the screen resolution.</system:String>
<system:String x:Key="UpscalingScreenWidth">Target screen width for upscaling:</system:String>
<system:String x:Key="UpscalingScreenHeight">Target screen height for upscaling:</system:String>
<system:String x:Key="OverrideRefrehRate">Override refresh rate:</system:String>
<system:String x:Key="OverrideRefrehRateToolTip">Overrides refresh rate set by game.</system:String>
<system:String x:Key="FilterRefreshRates">Filter refresh rates</system:String>
<system:String x:Key="ForceFullscreen">Force fullscreen on game start:</system:String>
<system:String x:Key="ForceFullscreenOnKeyPress">Force fullscreen on key press:</system:String>
<system:String x:Key="ToggleFullscreen">Toggle fullscreen:</system:String>
<system:String x:Key="ForcedFullscreen">Force fullscreen</system:String>
<system:String x:Key="NormalFullscreen">Normal fullscreen</system:String>
<system:String x:Key="SoftDisabled">Soft disabled</system:String>
<system:String x:Key="TypeInIntegerToolTip">Type in an integer value.</system:String>
<system:String x:Key="TypeInCommaSeparatedListToolTip">Type in a comma separated list of refresh rates.</system:String>
<!-- Driver Profile Settings group -->
<system:String x:Key="DriverProfileSettings">Driver Profile Settings:</system:String>
<system:String x:Key="Stereo3DSettings">Stereo 3D Settings:</system:String>
<system:String x:Key="CompatibilityModeSettings">3D Compatibility Mode Settings:</system:String>
<system:String x:Key="VisionReady">3D Vision Ready</system:String>
<system:String x:Key="VisionReadyToolTip">Changes the rating of the stereoscopic quality.</system:String>
<system:String x:Key="Excellent">Excellent</system:String>
<system:String x:Key="Good">Good</system:String>
<system:String x:Key="Fair">Fair</system:String>
<system:String x:Key="Not Recommended">Not Recommended</system:String>
<!--.................... Hotkeys Tab End .......................... -->
<!--.................... Drivers View Begin ....................-->
<system:String x:Key="Drivers">Drivers</system:String>
<system:String x:Key="Stereo3dDriver">STEREOSCOPIC 3D DRIVER:</system:String>
<system:String x:Key="3dDriver">3D driver:</system:String>
<system:String x:Key="DriverVersion">Driver version:</system:String>
<system:String x:Key="DriverIntegrity">Driver integrity:</system:String>
<system:String x:Key="IrEmitterDriver">IR emitter driver:</system:String>
<system:String x:Key="Stereo3d">Stereo 3D:</system:String>
<system:String x:Key="3dSetup">3D setup:</system:String>
<system:String x:Key="Details">Details:</system:String>
<system:String x:Key="GraphicsDriver">VIDEO DRIVER:</system:String>
<system:String x:Key="GeforceDriver">GeForce driver:</system:String>
<system:String x:Key="GeforceDriverType">Driver type:</system:String>
<system:String x:Key="VirtualReality">VIRTUAL REALITY:</system:String>
<system:String x:Key="SteamVR">SteamVR:</system:String>
<system:String x:Key="WmrCompatibility">WMR crash fix:</system:String>
<system:String x:Key="Installed">Installed</system:String>
<system:String x:Key="NotInstalled">Not installed</system:String>
<system:String x:Key="Enabled">Enabled</system:String>
<system:String x:Key="Disabled">Disabled</system:String>
<system:String x:Key="InitFailed">Initialization failed</system:String>
<system:String x:Key="VrHealthOk">All components for VR installed and the VR headset connected to computer.</system:String>
<system:String x:Key="VrHealthOkDetails">SteamVR was successfully launched. Your system is VR ready.</system:String>
<system:String x:Key="SteamVrNotInstalled">Steam VR is not installed.</system:String>
<system:String x:Key="SteamVrNotInstalledDetails">Please install SteamVR to play in VR mode.</system:String>
<system:String x:Key="SteamVrInitializationFailed">Steam VR failed to initialize.</system:String>
<system:String x:Key="SteamVrInitializationFailedDetails">Please check your current SteamVR installation and restart it if necessary.</system:String>
<system:String x:Key="VrHeadsetNotConnected">VR headset is not connected.</system:String>
<system:String x:Key="VrHeadsetNotConnectedDetails">Please connect your VR headset to your computer and restart SteamVR.</system:String>
<system:String x:Key="WmrFixNotInstalled">Crash fix for Windows Mixed Reality is not installed.</system:String>
<system:String x:Key="WmrFixNotInstalledDetails">Please install the crash fix for using stereo 3D and VR at the same time.</system:String>
<system:String x:Key="FramerateLimiterDisabled">Framerate limiter for VR games is disabled.</system:String>
<system:String x:Key="FramerateLimiterDisabledDetails">Please enable the framerate limiter in VR display profile to avoid stuttering in games.</system:String>
<system:String x:Key="FramerateLimiterSetWrong">Framerate limit exceeds maximum possible refresh rate of your VR headset.</system:String>
<system:String x:Key="FramerateLimiterSetWrongDetails">Please reduce the framerate limit below the maximum possible refresh rate of your VR headset in order to avoid stuttering in games.</system:String>
<system:String x:Key="InstallSteamVr">Install SteamVR</system:String>
<system:String x:Key="InstallWmrCrashFix">Install WMR crash fix</system:String>
<system:String x:Key="EnableFramerateLimiter">Enable framerate limit</system:String>
<system:String x:Key="SetFramerateLimiter">Set framerate limit</system:String>
<system:String x:Key="GameStartFailedVrMissing" xml:space="preserve">Error: Failed to launch game in VR mode as one or more VR components are missing or haven't been set up. 

Please check VR state and install any components required.</system:String>
<system:String x:Key="Loading">Loading... Please wait.</system:String>
<system:String x:Key="LaptopMonitor">Laptop monitor</system:String>
<system:String x:Key="DetectedHardware">DETECTED HARDWARE:</system:String>
<system:String x:Key="ComputerType">Computer type:</system:String>
<system:String x:Key="GraphicsCard">Graphics card:</system:String>
<system:String x:Key="PrimaryDisplay">Primary display:</system:String>
<system:String x:Key="IrEmitter">IR emitter:</system:String>
<system:String x:Key="Connected">Connected</system:String>
<system:String x:Key="NotConnected">Not connected</system:String>
<system:String x:Key="DllVersionInvalid">DLL version invalid</system:String>
<system:String x:Key="DchStereoFileMissing">DCH stereo file missing</system:String>
<system:String x:Key="NoNvidiaCardInstalled">No Nvidia card installed</system:String>
<system:String x:Key="Completed">Completed</system:String>
<system:String x:Key="NotCompleted">Incomplete</system:String>
<system:String x:Key="IrEmitterDriverNotInstalled">IR emitter driver is not installed.</system:String>
<system:String x:Key="IrEmitterDriverNotInstalledDetails">Please install the driver to make your 3D Vision glasses work with steresocopic 3D.</system:String>
<system:String x:Key="GraphicsCardNotSupported">Stereoscopic 3D is not supported on your graphics gard.</system:String>
<system:String x:Key="GraphicsCardNotSupportedDetails">A Nvidia graphics card is required to play games in steresocopic 3D. AMD and Intel graphics cards are not supported.</system:String>
<system:String x:Key="GeforceDriverNotInstalled">Video driver is not installed.</system:String>
<system:String x:Key="GeforceDriverNotInstalledDetails">Please install the Nvidia GeForce graphics driver to play games in stereosopic 3D now.</system:String>
<system:String x:Key="NativeLaptopMonitorUsed">Stereoscopic 3D is not supported for laptop monitors.</system:String>
<system:String x:Key="NativeLaptopMonitorUsedDetails">Please connect an external monitor and set this one as your primary monitor.</system:String>
<system:String x:Key="StereoDriverNotInstalled">3D driver is not installed.</system:String>
<system:String x:Key="StereoDriverNotInstalledDetails">Please install the driver to play games in stereoscopic 3D now.</system:String>
<system:String x:Key="StereoSetupNotCompleted">3D setup is not complete.</system:String>
<system:String x:Key="StereoSetupNotCompletedDetails">Please finish the setup now to play games in stereoscopic 3D.</system:String>
<system:String x:Key="StereoNotEnabled">3D is not enabled in driver.</system:String>
<system:String x:Key="StereoNotEnabledDetails">Please enable to play games in stereoscopic 3D.</system:String>
<system:String x:Key="StereoDriverCorrupt">3D driver is damaged.</system:String>
<system:String x:Key="StereoDriverCorruptDetails">Please repair to play games in stereoscopic 3D.</system:String>
<system:String x:Key="StereoDriverOk">All stereo driver components installed.</system:String>
<system:String x:Key="StereoDriverOkDetails">Your system is 3D ready.</system:String>
<system:String x:Key="InstallStereoDriver">Install 3D driver</system:String>
<system:String x:Key="InstallIrEmitterDriver">Install IR emitter driver</system:String>
<system:String x:Key="RepairStereoDriver">Repair 3D driver</system:String>
<system:String x:Key="CompleteStereoSetup">Complete 3D setup</system:String>
<system:String x:Key="EnableStereo3D">Enable 3D</system:String>
<system:String x:Key="ExtractingStereoDriver">Extracting 3D driver. Please wait...</system:String>
<system:String x:Key="InstallingStereoDriver">Installing 3D driver. Please Wait...</system:String>
<system:String x:Key="InstallingIrDriver">Installing IR emitter driver. Please wait...</system:String>
<system:String x:Key="CompletingStereoSetup">Completing Stereo 3D setup. Please wait...</system:String>
<system:String x:Key="LoadingStereoSettings">Loading 3D settings profile...</system:String>
<system:String x:Key="EnablingStereo3D">Enabling stereo 3D. Please wait...</system:String>
<system:String x:Key="InstallFailed">Driver install failed.</system:String>
<system:String x:Key="StereoActivationError">Failed to enable stereo 3D. Unknown reason.</system:String>
<system:String x:Key="StereoActivationFailed" xml:space="preserve">Error: Failed to enable stereo 3D as one or more 3D driver components are missing or haven't been set up. 

Please check driver state and install any components required.</system:String>
<system:String x:Key="StereoActivationErrorLaptop">Failed to enable stereo 3D. Please connect an external monitor to the laptop and set it as the primary display.</system:String>
<system:String x:Key="StereoSetupFailed">Stereo 3D Setup failed.</system:String>
<system:String x:Key="DownloadingDrivers">Downloading driver...</system:String>
<system:String x:Key="ExtractingDrivers">Extracting driver. Please wait...</system:String>
<system:String x:Key="InstallingDrivers">Installing drivers...</system:String>
<system:String x:Key="GeforceDriverNoDx11Support">Installed video driver is not compatible to DirectX 11 games in stereoscopic 3D mode.</system:String>
<system:String x:Key="GeforceDriverNoDx11SupportDetails">Please install GeForce driver version 452.06 or earlier to restore full stereo 3D compatibility for all games.</system:String>
<system:String x:Key="InstallGeforceDriverVersion">Install Standard GeForce driver {0}</system:String>
<system:String x:Key="InstallDchGeforceDriverVersion">Install DCH GeForce driver {0}</system:String>
<system:String x:Key="OfficialNvidiaDownload">(Download from original Nvidia server)</system:String>
<system:String x:Key="DriverUpdateAvailable">A new GeForce driver is available.</system:String>
<system:String x:Key="DriverUpdateAvailableDetails">Updating the driver is optional and not required for stereoscopic 3D.</system:String>
<system:String x:Key="LatestDriverInstalled">The best GeForce driver for playing games in stereoscopic 3D is already installed.</system:String>
<system:String x:Key="LatestDriverInstalledDetails">You are notified here whenever a new GeForce driver is released.</system:String>
<system:String x:Key="DchDriverInstalled">DCH version of Geforce driver installed.</system:String>
<system:String x:Key="DchDriverInstalledDetails">Please install the "Standard" version of GeForce driver for an improved stereoscopic 3D experience.</system:String>
<system:String x:Key="ShowMoreInformation">Show more information</system:String>
<system:String x:Key="CancelDownload">Cancel download</system:String>
<system:String x:Key="Remaining">Remaining:</system:String>
<system:String x:Key="DownloadUrlInvalid">Download failed. No internet connection or server unavailable.</system:String>
<system:String x:Key="ExtractingGeforceDriver">Extracting GeForce driver. Please wait...</system:String>
<system:String x:Key="InstallingGeforceDriver">Installing GeForce driver. Please Wait...</system:String>
<!--.................... Drivers View End -->
<!--.................... Application Settings Tab Begin .......................... -->
<!-- General Settings group -->
<system:String x:Key="GeneralSettingsGroup">General Settings:</system:String>
<system:String x:Key="UseProgramFor">Use program for:</system:String>
<system:String x:Key="CheckForUpdates">Check for program updates at startup</system:String>
<system:String x:Key="CheckForDriverUpdates">Check for driver updates at startup</system:String>
<system:String x:Key="UseHwAcceleration">Enable hardware acceleration for the GUI</system:String>
<system:String x:Key="AllowChangesToGameConfig">Optimize game settings for Stereo 3D</system:String>
<system:String x:Key="EnableSteamOverlay">Enable Steam overlay</system:String>
<system:String x:Key="FullscreenOptimizations">Fullscreen optimizations:</system:String>
<system:String x:Key="ControlledByFixProfile">Controlled by Fix Profile</system:String>
<system:String x:Key="SteamNotDetected">Overlay DLLs / Steam not detected</system:String>
<system:String x:Key="PreferIconDownload">Prefer game icons from internet database</system:String>
<system:String x:Key="ResetAllIcons">Reset all game icons:</system:String>
<system:String x:Key="DoNotChangeSetting">Keep current Setting</system:String>
<system:String x:Key="DownloadScreenshots">Download stereoscopic screenshots</system:String>
<!-- 3D Fix / 3dmigoto settings group -->
<system:String x:Key="FixAnd3dmigotoSettings">3D Fix / 3dmigoto Settings:</system:String>
<system:String x:Key="ReinstallFixFromCache">Install 3D fixes from download cache if possible</system:String>
<system:String x:Key="ClearAllDownloadCache">Clear download cache for all fix profiles:</system:String>
<system:String x:Key="EnableAllFixes">Enable / disable all fixes:</system:String>
<system:String x:Key="DisableFixesIn2dMode">Disable 3D fixes in 2D mode:</system:String>
<system:String x:Key="EnableAllFixesToolTip">Enables all installed 3D fixes.</system:String>
<system:String x:Key="DisableAllFixesToolTip">Disables all installed 3D fixes.</system:String>
<system:String x:Key="SendData">Send data when user customizes a fix profile</system:String>
<system:String x:Key="AutoUpdate3dmigoto">Update 3dmigoto at startup</system:String>
<system:String x:Key="UpdateAllWrappers">Update 3dmigoto for all installed 3D fixes:</system:String>
<!-- Search paths group -->
<system:String x:Key="SearchPathsGroup">Detecting installed Games:</system:String>
<system:String x:Key="EnableCachedPaths">Cache detected games for faster app start</system:String>
<system:String x:Key="EnableRegistrySearch">Search games in Windows registry</system:String>
<system:String x:Key="EnableSearchPaths">Search games in specified directories (Search paths)</system:String>
<system:String x:Key="PrioritizeSearchPaths">Prioritize search paths over paths from Windows registry</system:String>
<system:String x:Key="SearchDepth">Search depth:</system:String>
<system:String x:Key="SearchPaths">Search paths:</system:String>
<system:String x:Key="SearchGames">Search games</system:String>
<system:String x:Key="DetectPaths">Detect libraries</system:String>
<system:String x:Key="DetectPathsToolTip">Automatically detects game libraries of Steam, Uplay, Origin, Blizzard App and GOG Galaxy and adds them as search paths.</system:String>
<system:String x:Key="Add">Add</system:String>
<system:String x:Key="AddPathToolTip">Adds a search path.</system:String>
<system:String x:Key="Remove">Remove</system:String>
<system:String x:Key="RemovePathToolTip">Removes the selected search path.</system:String>
<system:String x:Key="ChangePathToolTip">Changes the selected search path</system:String>
<!-- RTSS settings group -->
<system:String x:Key="RtssSettingsGroup">RivaTuner Statistics Server Settings:</system:String>
<system:String x:Key="StartRTSS_Setting">Start / close RTSS depending on fix profile setting</system:String>
<system:String x:Key="InterruptGameLaunch">Pause game start for setting up RTSS</system:String>
<system:String x:Key="CloseRivaTunerIn2D">Close RTSS when starting a game in 2D mode</system:String>
<system:String x:Key="CloseRtssOnAppClose">Close RTSS when quitting 3D Fix Manager</system:String>
<system:String x:Key="RivaTunerNotDetected">RivaTuner Statistics Server not detected / not installed</system:String>
<system:String x:Key="RtssScanlineSyncNotSupportedError">RivaTuner Statistics Server older than version 7.2</system:String>
<!-- Game Launcher Settings group -->
<system:String x:Key="GameLauncherSettings">Game Launcher Settings:</system:String>
<system:String x:Key="StartGamesByGameExe">Prefer starting games via game launcher exe</system:String>
<system:String x:Key="StartGamesBySteamAppId">Prefer starting games via Steam client (Steam app ID)</system:String>
<system:String x:Key="StartGamesByFixProfile">Start method is controlled by fix profile (recommended)</system:String>
<!--Nvidia Profile Inspector Settings group -->
<system:String x:Key="NvidiaProfileInspectorSettings">Nvidia Profile Inspector Settings:</system:String>
<system:String x:Key="NeverInstallProfiles">Globally disable installation of driver profiles</system:String>
<system:String x:Key="ProfileInstallByFixProfile">Installation of driver profiles is controlled by fix profile</system:String>
<system:String x:Key="InstallProfilesSilently">Install driver profiles silently without warning messages</system:String>
<system:String x:Key="NoNvidiaDetected">No Nvidia driver detected / installed</system:String>
<system:String x:Key="Start">Start</system:String>
<system:String x:Key="StartProfileInspectorToolTip">Starts Nvidia Profile Inspector.</system:String>
<system:String x:Key="StartRtssToolTip">Starts RivaTuner Statistics Server.</system:String>
<!-- Stereo Refresh Rate Settings group -->
<system:String x:Key="StereoRefreshRateSettings">Shutter Frequency of Nvidia 3D Glasses / Stereo Refresh Rate:</system:String>
<system:String x:Key="GlobalStereoRefreshRate">Use refresh rate set in Nvidia driver</system:String>
<system:String x:Key="ProfileStereoRefreshRate">Refresh rate is controlled by fix profile</system:String>
<!-- Buttons-->
<system:String x:Key="Disable">Disable</system:String>
<system:String x:Key="Enable">Enable</system:String>
<system:String x:Key="Update">Update</system:String>
<system:String x:Key="Clear">Clear</system:String>
<!--.................... General Settings Tab End .......................... -->
<!--.................... Nvidia 3D Settings Tab Begin .......................... -->
<system:String x:Key="NvidiaNotDetected">Nvidia Stereoscopic 3D not detected</system:String>
<system:String x:Key="PressKeyCombination">Press a key combination on your keyboard.</system:String>
<!-- General settings group -->
<system:String x:Key="EnableStereoGroup">Enable / set up 3D Functionality:</system:String>
<system:String x:Key="EnableNvidia3D">Enable Nvidia Stereoscopic 3D</system:String>
<system:String x:Key="Disable3dOnClosing">Auto disable Nvidia Stereoscopic 3D when closing application</system:String>
<system:String x:Key="Disable3dOnGameClosing">Auto disable Nvidia Stereoscopic 3D when closing games</system:String>
<system:String x:Key="SetStereoTypeTo3DVision">Force 3D Vision / 3DTV Play mode</system:String>
<system:String x:Key="StereoEnabledOnGameLaunch">3D mode enabled on game launch</system:String>
<system:String x:Key="StereoWindowedModeEnabled">Enable 3D in windowed mode (DirectX 9 only)</system:String>
<system:String x:Key="StereoModeAlwaysEnabled">3D mode always enabled</system:String>
<system:String x:Key="StereoModeAlwaysEnabledToolTip">Sets whether the display is permanently in 3D mode (3D windowed mode must be also enabled).</system:String>
<system:String x:Key="Nvida3dDriverOverlay">Enable Nvidia 3D driver overlay</system:String>
<system:String x:Key="LoadGeforceDllHackWith3dmigoto">Apply Geforce driver modification via 3dmigoto</system:String>
<system:String x:Key="UseGlobalDrickerHack">Show global driver hack toggle</system:String>
<system:String x:Key="EnableGeforceDllHack">Enable Geforce driver modification (Windows 10 only)</system:String>
<system:String x:Key="ShowDriverHackDialog">Show warning dialog before modifying Geforce driver</system:String>
<system:String x:Key="EnableWmrFix">Enable crash fix for Windows Mixed Reality</system:String>
<system:String x:Key="InstallRecommendedGeforceDriver">Install recommended Geforce driver:</system:String>
<!-- 3D depth / 3D Vision shutter glasses group -->
<system:String x:Key="Advanced3dSettingsGroup">3D Depth / 3D Vision Shutter Glasses:</system:String>
<system:String x:Key="StereoSeparation">3D depth:</system:String>
<system:String x:Key="DepthMultiplier">3D depth multiplier:</system:String>
<system:String x:Key="Inch">inch</system:String>
<system:String x:Key="StereoRefreshRate">Shutter frequency 3D glasses:</system:String>
<system:String x:Key="IROutput">Sync mode of IR sender:</system:String>
<system:String x:Key="SingleIREnvironment">Single IR Environment</system:String>
<system:String x:Key="MixedIREnvironment">Multi IR Environment</system:String>
<system:String x:Key="LanEnvironment">3D Vision LAN Environment</system:String>
<!-- Driver settings group -->
<system:String x:Key="DriverSettings2D">Optimize global Driver Profile for 2D Mode:</system:String>
<system:String x:Key="DriverSettings3D">Optimize global Driver Profile for 3D Mode:</system:String>
<system:String x:Key="MaxPreRenderedFrames">Maximum pre-rendered frames:</system:String>
<system:String x:Key="VerticalSync">Vertical sync:</system:String>
<system:String x:Key="MonitorTechnology">Monitor technology:</system:String>
<system:String x:Key="GsyncMode">G-Sync Mode:</system:String>
<system:String x:Key="PreferredRefreshRate">Preferred refresh rate:</system:String>
<system:String x:Key="PowerManagementMode">Power management mode:</system:String>
<system:String x:Key="ApplicationControlled">Application controlled</system:String>
<system:String x:Key="Off">Off</system:String>
<system:String x:Key="On">On</system:String>
<system:String x:Key="Fast">Fast</system:String>
<system:String x:Key="FixedRefreshRate">Fixed refresh rate</system:String>
<system:String x:Key="G-SYNC">G-SYNC</system:String>
<system:String x:Key="ULMB">ULMB</system:String>
<system:String x:Key="FullscreenOnly">Fullscreen only</system:String>
<system:String x:Key="FullscreenAndWindowed">Fullscreen and windowed</system:String>
<system:String x:Key="HighestAvailable">Highest available</system:String>
<system:String x:Key="MaximumPerformance">Maximum performance</system:String>
<system:String x:Key="OptimalPerformance">Optimal performance</system:String>
<system:String x:Key="Adaptive">Adaptive</system:String>
<system:String x:Key="AdaptiveHalf">Adaptive (half refresh rate)</system:String>
<system:String x:Key="GlobalDriverProfileFile">Exported profile:</system:String>
<!-- General hotkeys group -->
<system:String x:Key="GeneralHotkeys">General Hotkeys:</system:String>
<system:String x:Key="StereoToggle">Show / hide stereoscopic effects:</system:String>
<system:String x:Key="StereoToggleToolTip">Toggles between plain 2D and stereoscopic 3D while gaming.</system:String>
<system:String x:Key="StereoSeparationAdjustLess">Decrease 3D depth:</system:String>
<system:String x:Key="StereoSeparationAdjustLessToolTip">Decreases 3D depth / separation.</system:String>
<system:String x:Key="StereoSeparationAdjustMore">Increase 3D depth:</system:String>
<system:String x:Key="StereoSeparationAdjustMoreToolTip">Increases 3D depth / separation.</system:String>
<system:String x:Key="ToggleMemo">Show / hide in-game compatibility:</system:String>
<system:String x:Key="ToggleMemoToolTip">Shows / hides green text with compatibility information and recommended in-game settings.</system:String>
<!-- Advanced hotkeys group -->
<system:String x:Key="AdvancedHotkeys">Advanced Hotkeys:</system:String>
<system:String x:Key="StereoAdvancedHKConfig">Enable advanced in-game hotkeys</system:String>
<system:String x:Key="StereoAdvancedHKConfigToolTip">Enables advanced hotkeys for changing convergence / frustum settings and more.</system:String>
<system:String x:Key="StereoConvergenceAdjustLess">Decrease convergence:</system:String>
<system:String x:Key="StereoConvergenceAdjustLessToolTip">Decreases the pop-out effect in games.</system:String>
<system:String x:Key="StereoConvergenceAdjustMore">Increase convergence:</system:String>
<system:String x:Key="StereoConvergenceAdjustMoreToolTip">Increases the pop-out effect in games.</system:String>
<system:String x:Key="WriteConfig">Save in-game changes:</system:String>
<system:String x:Key="WriteConfigToolTip">Saves convergence and frustum adjustments to Nvidia driver profile.</system:String>
<system:String x:Key="CycleFrustumAdjust">Cycle frustum adjustment:</system:String>
<system:String x:Key="CycleFrustumAdjustToolTip">Cycles through three different frustum adjustments.</system:String>
<system:String x:Key="StereoToggleMode">Toggle 3D compatibility mode:</system:String>
<system:String x:Key="StereoToggleModeToolTip">Toggles between compatibility mode for DirectX 11 games (Fake 3D) and Real 3D mode.</system:String>
<!-- Screenshots group -->
<system:String x:Key="ScreenshotsGroup">Screenshots:</system:String>
<system:String x:Key="StereoImageType">Stereo image type:</system:String>
<system:String x:Key="StereoImageTypeToolTip">Sets the format for stereoscopic images (JPS or PNS).</system:String>
<system:String x:Key="StereoImageFolder">Open Folder</system:String>
<system:String x:Key="StereoImageFolderToolTip">Opens location of screenshots folder in windows explorer.</system:String>
<system:String x:Key="SnapShotQuality">JPS quality:</system:String>
<system:String x:Key="SnapShotQualityToolTip">Determines image quality and file size.</system:String>
<system:String x:Key="SaveStereoImage">Take screenshot:</system:String>
<system:String x:Key="SaveStereoImageToolTip">Saves a stereoscopic screenshot on the hard drive.</system:String>
<!-- LaserSight group -->
<system:String x:Key="LaserSightGroup">Laser Sight:</system:String>
<system:String x:Key="LaserSightEnabled">Enable laser sight:</system:String>
<system:String x:Key="LaserSightEnabledToolTip">Sets whether 3D laser sight can be enabled with a hotkey or automatically by Nvidia driver profile.</system:String>
<system:String x:Key="ToggleLaserSight">Toggle laser sight:</system:String>
<system:String x:Key="ToggleLaserSightToolTip">Enables or disables stereoscopic laser sight in-game.</system:String>
<system:String x:Key="LaserSightTransparency">Laser sight transparency:</system:String>
<system:String x:Key="LaserSightTransparencyToolTip">Controls the transparency of the laser sight.</system:String>
<system:String x:Key="LaserSightCrosshair">Laser sight:</system:String>
<system:String x:Key="LaserSightCrosshairToolTip">Sets the appearance of the laser sight.</system:String>
<!-- Buttons-->
<system:String x:Key="Load">Load</system:String>
<system:String x:Key="Reset">Reset</system:String>
<system:String x:Key="Apply">Apply</system:String>
<!--.................... Nvidia 3D Settings Tab End .......................... -->
<!--.................... Display Profiles Tab Begin .......................... -->
<system:String x:Key="MonitorProfileGroup">Monitor Profile:</system:String>
<system:String x:Key="TVProfileGroup">TV Profile:</system:String>
<system:String x:Key="ProjectorProfileGroup">Projector Profile:</system:String>
<system:String x:Key="VrProfileGroup">VR Profile:</system:String>
<system:String x:Key="ProfileSettingsGroup">General Profile Settings:</system:String>
<system:String x:Key="LinkProfileToDisplay">Link profile to display:</system:String>
<system:String x:Key="DisplaySize">Display size:</system:String>
<system:String x:Key="RealScreenSize">Screen size:</system:String>
<system:String x:Key="DisplayType">3D display type:</system:String>
<system:String x:Key="Preferred3dFormat">3dmigoto 3D format:</system:String>
<system:String x:Key="GameSettings2D">Game settings for 2D mode:</system:String>
<system:String x:Key="GameSettings3D">Game settings for 3D mode:</system:String>
<system:String x:Key="GameSettingsVR">Game settings for VR mode:</system:String>
<system:String x:Key="FramerateLimit">Framerate limit:</system:String>
<system:String x:Key="DesktopSettings">Desktop settings:</system:String>
<system:String x:Key="GameResolution">Game resolution:</system:String>
<system:String x:Key="GameResolution2D">Game resolution 2D mode:</system:String>
<system:String x:Key="GameResolution3D">Game resolution 3D mode:</system:String>
<system:String x:Key="DesktopResolution2D">Desktop resolution 2D mode:</system:String>
<system:String x:Key="DesktopResolution2DClosing">Desktop resolution on closing:</system:String>
<system:String x:Key="DesktopResolution3D">Desktop resolution 3D mode:</system:String>
<system:String x:Key="DesktopResolutionVr">Desktop resolution:</system:String>
<system:String x:Key="ShowProfileSelectionOnStartup">Show profile selection dialog on application start</system:String>
<system:String x:Key="ShowProfileSelectionOnGameStart">Show profile selection dialog on game start</system:String>
<system:String x:Key="AllowDisplayProfileOverride">Allow fix profiles to override global display profiles</system:String>
<system:String x:Key="DefaultProfileOnStartup">Default profile on startup:</system:String>
<system:String x:Key="PleaseChooseProfile">Please choose a display profile:</system:String>
<system:String x:Key="DoNotShowProfileSelection">Do not show this dialog again</system:String>
<system:String x:Key="ShowProfileDialogOnGameStart">Show this dialog every time a game is started</system:String>
<system:String x:Key="ShowProfileDialogOnAppStart">Show this dialog every time the application is started</system:String>
<!--.................... Display Profiles Tab End .......................... -->
<!--.................... About Tab Begin .......................... -->
<system:String x:Key="ProgramDevelopedBy">Program developed by:</system:String>
<system:String x:Key="FixesDevelopedBy">3D Fixes developed by:</system:String>
<system:String x:Key="DonationDeveloperToolTip">Send a donation to the developer of 3D Fix Manager.</system:String>
<system:String x:Key="DonationShaderHackersToolTip">Send a donation to the developers of 3D fixes.</system:String>
<system:String x:Key="ProgramVersion">Program version:</system:String>
<system:String x:Key="FixProfiles">Profiles version:</system:String>
<system:String x:Key="CheckUpdate">Check for Updates</system:String>
<system:String x:Key="UpdateSuccess">Update completed</system:String>
<system:String x:Key="UpdateFailed">Update failed</system:String>
<system:String x:Key="ChangeNotes">(Change Notes)</system:String>
<system:String x:Key="Donate">Donate</system:String>
<system:String x:Key="Installing">Installing...</system:String>
<!-- Buttons -->
<system:String x:Key="Manual">Manual</system:String>
<system:String x:Key="ReportBugs">Report Bugs</system:String>
<system:String x:Key="UpdateSteamDb">Update Steam DB</system:String>
<system:String x:Key="CreateReleases">Create Releases</system:String>
<system:String x:Key="ReferenceDb">Fill Reference DB</system:String>
<system:String x:Key="GithubLanguages">GitHub Languages</system:String>
<!--.................... About Tab End .......................... -->
<!--.................... Dialog Window Begin .......................... -->
<!-- Buttons-->
<system:String x:Key="Yes">Yes</system:String>
<system:String x:Key="No">No</system:String>
<system:String x:Key="Downgrade3dMigotoDialog" xml:space="preserve">Do you want to revert 3dmigoto to the original version which was shipped with this 3D fix? 

Original version: {0}
Installed version: {1}</system:String>
<system:String x:Key="Install3dmigotox32">Install 3dmigoto x32</system:String>
<system:String x:Key="Install3dmigotox64">Install 3dmigoto x64</system:String>
<system:String x:Key="InstallOpenGLwrapperx32">Install OpenGL x32</system:String>
<system:String x:Key="InstallOpenGLwrapperx64">Install OpenGL x64</system:String>
<system:String x:Key="InstallHelixModx32">Install HelixMod x32</system:String>
<system:String x:Key="InstallHelixModx64">Install HelixMod x64</system:String>
<system:String x:Key="QuickSetup">Quick Setup</system:String>
<system:String x:Key="SetupWizard">Setup Wizard</system:String>
<system:String x:Key="NormalFix">Regular 3D Fix</system:String>
<system:String x:Key="SliFix">SLI 3D Fix</system:String>
<system:String x:Key="AlternativeFix">Alternative 3D Fix</system:String>
<system:String x:Key="DriverType">Driver type</system:String>
<!-- Messages -->
<system:String x:Key="GameStartFailedStereoMissing" xml:space="preserve">Error: Failed to launch game in stereoscopic 3D mode as one or more 3D driver components are missing or haven't been set up. 

Please check driver state and install any components required.</system:String>
<system:String x:Key="GeforceDriverIncompatible" xml:space="preserve">Error: Failed to launch game in stereoscopic 3D mode as your currently installed video driver is not compatible to stereo 3D for DirectX 11 games. 

Info: Geforce driver version 456.38 and higher are affected by this issue. We are currently working on solving this issue and apologize for the inconvenience.</system:String>
<system:String x:Key="WizardCrashWarning" xml:space="preserve">Warning: The following programs are running: 

{0}

These programs are known to crash the 3D Vision Setup Wizard. 

Please close mentioned programs and click on 'OK' to continue.</system:String>
<system:String x:Key="FailedToFindGeforceDriver">Error: Could not find Geforce driver in Windows driver store.</system:String>
<!-- DCH Warning dialog -->
<system:String x:Key="DchWarningHeadline">Warning: Your currently installed Geforce graphics driver is of driver type 'DCH' what is not recommended for Stereoscopic 3D.</system:String>
<system:String x:Key="DchWarningDchExplanationTitle">What does the term "DCH" stand for?</system:String>
<system:String x:Key="DchWarningDchExplanation">DCH is a new package format for drivers introduced with Windows 10. Microsoft's long-term plan is to make this the default driver type for Windows 10 and replace installed standard drivers with DCH ones. DCH and standard drivers are basically the same drivers - only how they are packed and installed differs.</system:String>
<system:String x:Key="DchWarningDchWhyUnrecommendedTitle">Why are DCH drivers not recommended for Stereoscopic 3D?</system:String>
<system:String x:Key="DchWarningDchWhyUnrecommended">For current DCH drivers Stereo 3D compatibility is restored by applying workarounds what comes at the cost of an significantly increased loading time of apps and games in 3D mode. So for the moment we do not recommend to use current DCH drivers. Instead standard drivers are the preferred ones.</system:String>
<system:String x:Key="DchWarningDchWhereToGetDefaultTitle">Where to get "Standard" Geforce drivers?</system:String>
<system:String x:Key="DchWarningDchWhereToGetDefault">Nvidia started to hide the standard drivers on their download page as they want to support Microsoft's plan to distribute DCH drivers on Windows 10. However latest standard drivers can be still found in section "Beta drivers and archive". For installing standard drivers manually just click the link below and make sure you selected option "Standard" for "Windows Driver Type" on the webpage.</system:String>
<system:String x:Key="DchWarningDchHowToReplaceTitle">How to replace DCH drivers with Standard ones?</system:String>
<system:String x:Key="DchWarningDchHowToReplace">Since Nvidia driver version 441.12 it's possible to install "Standard" drivers over the "DCH" ones for switching the driver type.</system:String>
<system:String x:Key="DchWarningDchEasierWayTitle">Is there an easier way for switching to default drivers?</system:String>
<system:String x:Key="DchWarningDchEasierWay">Unfortunately no. If the instructions for replacing DCH drivers do not work for you there is still the option to install old the old DCH driver 425.31 from May 2019 whith still works perfectly in stereo 3D mode. You can do this automatically by just clicking on the button "Install Geforce Driver 425.31 (DCH)". Please be aware that graphics cards RTX 2070 Super / RTX 2080 Super are not supported by this driver.</system:String>
<system:String x:Key="DownloadDDU">Download DDU (Display Driver Uninstaller)</system:String>
<system:String x:Key="DownloadStandardDriver">Download Standard drivers manually</system:String>
<system:String x:Key="InstallDch42531">Install Geforce Driver 425.31 (DCH)</system:String>
<system:String x:Key="Install3DVisionDriver">Install NVidia 3D Vision Driver</system:String>
<!-- Recommended Driver dialog -->
<system:String x:Key="DriverUpdateRecommendedVersion" xml:space="preserve">Geforce graphics driver 425.31 ist the last driver officially supporting 3D Vision. Using this driver will get you the best experience as you don't have to deal with driver hacks and tricks to get stereo 3D working again on current drivers. 

Do you want to install Geforce driver 425.31 now?</system:String>
<system:String x:Key="DriverAlreadyInstalled" xml:space="preserve">Geforce graphics driver 425.31 ist already installed on your system which is the recommended driver for stereoscopic 3D. 

Do you want to reinstall the driver now?</system:String>
<!-- Driver update dialog -->
<system:String x:Key="DriverUpdateHeadline">A new Geforce graphics driver is available. Do you want to update your driver?</system:String>
<system:String x:Key="DriverUpdateInstalledDriver">Installed driver:</system:String>
<system:String x:Key="DriverUpdateInstalledDriverValue">Placeholder</system:String>
<system:String x:Key="DriverUpdateLatestDriver">Latest driver:</system:String>
<system:String x:Key="DriverUpdateLatestDriverValue">Placeholder</system:String>
<system:String x:Key="DriverUpdateInstalledDriverType" xml:space="preserve">Installed driver type: {0}</system:String>
<system:String x:Key="DriverUpdateUsedWindowsVersion" xml:space="preserve">Installed Windows version: {0}</system:String>
<system:String x:Key="DriverUpdateImportantInfoHeadline">Important information:</system:String>
<system:String x:Key="DriverUpdateImportantInfoExplanation">
Nvidia officially dropped support for 3D Vision / stereoscopic 3D in May 2019 which means that the stereo 3D driver is no longer included in recent Geforce graphics drivers.
Although not included in the driver package 3D Vision still can be installed and still is fully functional.
3D Fix Manager does this part for you and restores 3D Vision / stereoscopic 3D functionality.
</system:String>
<FlowDocument x:Key="testDoku">
<Paragraph Foreground="red">test</Paragraph>
</FlowDocument>
<system:String x:Key="StereoDriverAlreadyInstalled">The stereoscopic 3D driver is already installed on your system. You are ready to play in VR now!</system:String>
<system:String x:Key="SaveProfileToRepo">Do you want to apply the profile changes to the git working copy as well?</system:String>
<!-- VR Splash Dialog -->
<FlowDocument x:Key="VrSplashDialog" FontFamily="SegeUI" FontSize="16" PagePadding="5">
<Paragraph Style="{DynamicResource LargeGreenTitle}">Welcome to HelixVision!</Paragraph>
<Paragraph>Thanks for joining us on an epic stereoscopic 3D adventure. We hope you enjoy it as much as we do.</Paragraph>
<Paragraph>HelixVision starts with NVidia 3D Vision, which creates stereo images from any game.
Those stereo images are fixed up by mods downloaded from the
<Hyperlink NavigateUri="http://helixmod.blogspot.com">HelixModBlog</Hyperlink>, and installed in the game directory.
Game pref files are modified for optimal settings, and your video driver is modded for the game while it is running.
</Paragraph>
<Paragraph Margin="0,0,0,28">As with any modding, you can expect occasional glitches and problems, especially as games, drivers, and the OS are updated.</Paragraph>
<Paragraph><Italic>We are here to help.</Italic> If you run into problems, please don't hesitate to ask for help on the Steam Forums.</Paragraph>
<Paragraph>
<Hyperlink NavigateUri="https://steamcommunity.com/app/1127310/discussions/">Support Link: HelixVision Steam Forums</Hyperlink>
</Paragraph>
<Paragraph Style="{DynamicResource LargeGreenTitle}">Getting Started:</Paragraph>
<List MarkerStyle="Decimal">
<ListItem>
<Paragraph Style="{DynamicResource ParagraphInList}">Install the NVidia 3D Vision Driver by clicking the button below.</Paragraph>
</ListItem>
<ListItem>
<Paragraph Style="{DynamicResource ParagraphInList}">Start SteamVR. Mixed Reality or Oculus Home will start as necessary.</Paragraph>
</ListItem>
<ListItem>
<Paragraph Style="{DynamicResource ParagraphInList}">Choose a game from the list on the left. Installed games are in bold.</Paragraph>
</ListItem>
<ListItem>
<Paragraph Style="{DynamicResource ParagraphInList}">Click Play in VR. The game will appear in anaglyph 3D on your monitor, and be mirrored in VR.</Paragraph>
</ListItem>
<ListItem>
<Paragraph Style="{DynamicResource ParagraphInList}">Put on your HMD and enjoy glorius stereoscopic 3D.</Paragraph>
</ListItem>
</List>
</FlowDocument>
<!-- Close to System Tray Warning -->
<FlowDocument x:Key="CloseToTrayWarning">
<Paragraph Style="{DynamicResource SemiLargeGreenTitle}">Info:</Paragraph>
<Paragraph>The application is minimized to the system tray now and represented as an icon there. The icon is either labeled with
<Image Source="..\Images\Tray Icons\2d_icon.ico" Height="20" Width="20" VerticalAlignment="Bottom" RenderOptions.BitmapScalingMode="HighQuality"/>
or
<Image Source="..\Images\Tray Icons\3d_icon.ico" Height="20" Width="20 " VerticalAlignment="Bottom" RenderOptions.BitmapScalingMode="HighQuality"/>
which tells whether 3D mode is currently enabled.
</Paragraph>
<Paragraph>To close the application right click on the icon and choose
<Bold>
<Italic>"Close".</Italic>
</Bold>
</Paragraph>
<Paragraph>A left click on the icon brings the application back to the foreground.</Paragraph>
</FlowDocument>
<system:String x:Key="DriverUpdateInstallProcedure">Install notes:</system:String>
<system:String x:Key="DriverUpdateInstallProcedureExplanation">
Just let 3D Fix Manager install the required drivers.
For doing so please click on the "continue" button in the install wizards whenever asked and wait until the installation is completed. That's all.
Don't worry if you canceled one of the setup wizards by mistake. 3D Fix Manager checks all dependencies and installs missing components automatically.
</system:String>
<system:String x:Key="DriverUpdateSupportedDriversHeadline">Last official 3D Vision driver:</system:String>
<system:String x:Key="DriverUpdateSupportedDriversExplanation">
Geforce Driver version 425.31 released on April 2019 was the last one to officially support 3D Vision.
Install this one if newer drivers do not work with stereoscopic 3D despite automatic installation through 3D Fix Manager.
</system:String>
<system:String x:Key="StereoSetupError">Error: Failed to enable Stereoscopic 3D as 3D Vision driver is missing. 

Please install older version 425.31 of your graphics driver.</system:String>
<system:String x:Key="DriverInstallFailed">Driver install failed.</system:String>
<system:String x:Key="ControllerInstallFailed">Failed to install 3D controller driver.</system:String>
<system:String x:Key="DchFixInstallFailed">Failed to install DCH fix.</system:String>
<!-- Driver update dialog simple-->
<system:String x:Key="DriverUpdateSimpleHeadline">Do you want to update your graphics driver to the latest version as well?</system:String>
<system:String x:Key="DriverUpdatePleaseChoose">Please choose</system:String>
<system:String x:Key="DriverUpdateSimpleYesChoice">, if you want to update your Geforce graphics driver to the latest version (recommended)</system:String>
<system:String x:Key="DriverUpdateSimpleNoChoice">, if you want to keep your currently installed Geforce drivers.</system:String>
<system:String x:Key="DriverUpdateSimpleNote">At any case stereoscopic 3D features of the driver will be restored.</system:String>
<system:String x:Key="DriverRestore2d" xml:space="preserve">For 2D mode it's recommended to undo the modification of the video driver. 

We highly recommend to do so as games using anti cheat software like "Easy Anticheat" might get your gaming account banned when having modified drivers installed. 

Do you want to restore original video drivers now?</system:String>
<system:String x:Key="DriverRestoreCloseApp" xml:space="preserve">Before closing the application it's recommended to undo the modification of the video driver. 

Restoring the original driver is required for some games which use anti cheat software like "Easy Anticheat". Such games might prevent you from starting the game or in worst case your account might get banned because of using a modified driver. 

Do you want to restore original video driver now?</system:String>
<system:String x:Key="DriverHackPlay3d" xml:space="preserve">To play this game in Stereo 3D it's necessary to install a mod to the video driver. The modification of the driver is done only for games that need it, and the modified driver is installed and loaded from the game directory only while the game is running. 

The modification replaces just one instruction in the video driver which brings back full Stereo 3D compatibility to Windows 10 v. 1903 and higher, and any version of the video driver. 

WARNING: Please be aware that modifying driver files is forbidden by online games which use anti cheat protection software (for example "Easy AntiCheat"). To avoid getting your game account banned it's strongly advised to use the modified driver for single player games only.


Do you want to modify the video driver for full stereo 3D support now?</system:String>
<system:String x:Key="DriverHack3d" xml:space="preserve">For playing in Stereo 3D mode it's necessary to install a mod to the video driver. 

The modification replaces just one instruction in the video driver which brings back full Stereo 3D compatibility to Windows 10 v. 1903 and higher, and any version of the video driver. 

WARNING: Please be aware that modifying driver files is forbidden by online games which use anti cheat protection software (for example "Easy AntiCheat"). To avoid getting your game account banned it's strongly advised to use the modified driver for single player games only.


Do you want to modify the video driver for full stereo 3D support now?</system:String>
<system:String x:Key="FallBackToLocalDriverHack" xml:space="preserve">Error: Failed to install the global driver modification to Windows driver store. 

Do you want to install the driver modification to your local game folder instead where it is loaded on game start? (recommended) 

Tip: You can switch between local or global driver modification anytime in 'Nvidia 3D Settings' tab by toggling 'Apply driver modification via 3dmigoto' option.</system:String>
<system:String x:Key="DriverHackErrorFixNotInstalled" xml:space="preserve">Error: The 3D fix is not installed which is required for loading the driver modification. 

Please install the 3D fix and try again.</system:String>
<system:String x:Key="GlobalDriverHackNotRecommended" xml:space="preserve">A modification to your video driver was detected which was done to achieve full compatibility for stereo 3D on Windows 10. 

The driver modification is still active on a global scope which affects all installed games including those who don't require the mod. It's recommended to undo the modification and install and load the modified video driver from the game directory instead. 

Do you want to restore the original video driver now?</system:String>
<system:String x:Key="GlobalDriverHackNotRecommendedNoneDx11" xml:space="preserve">A modification to your video driver was detected which was done to achieve full compatibility for stereo 3D on Windows 10. 

For playing this game in stereo 3D the modification is not required and undoing the mod is recommended. 

Do you want to undo the video driver modification now?</system:String>
<system:String x:Key="LocalDriverHackNotPossibleForHelixVision" xml:space="preserve">Currently it's not possible to install the mod to the video driver required to play this game on the big VR screen when running Windows 10 v.1903 or later with drivers higher than 425.31. 

Reverting to driver version 425.31 is sure to work. 

We are working on a solution and apologize for the inconvenience.</system:String>
<!-- 3D Vision driver restore dialog -->
<system:String x:Key="DriverRestoreHeadline">3D Vision is not installed on your system. Do you want to install the required drivers now?</system:String>
<system:String x:Key="StereoDependencyMissing">One or more driver components required for stereosopic 3D are missing on your system. Do you want to install them now?</system:String>
<system:String x:Key="StereoDriver">Stereoscopic 3D Driver:</system:String>
<system:String x:Key="StereoDriverValue">Placeholder</system:String>
<system:String x:Key="StereoDllPatched">DLL Fix for Stereo 3D Driver:</system:String>
<system:String x:Key="DchDriverFixInstalled">DCH Fix for Stereo 3D Driver:</system:String>
<system:String x:Key="DchDriverFixInstalledValue">Placeholder</system:String>
<system:String x:Key="StereoDllPatchedValue">Placeholder</system:String>
<system:String x:Key="ControllerDriver">3D Controller Driver:</system:String>
<system:String x:Key="ControllerDriverValue">Placeholder</system:String>
<system:String x:Key="Win10GeforceFixInstalled">DLL Fix for Geforce Driver:</system:String>
<system:String x:Key="Win10GeforceFixInstalledValue">Placeholder</system:String>
<system:String x:Key="Win10GeforceFixInstallationFailed" xml:space="preserve">Error:

An error occured while installing the Geforce graphics driver modification required for Stereo 3D and higher.</system:String>
<system:String x:Key="Win10GeforceFixInstallationCanceled" xml:space="preserve">Installation of the Geforce graphics driver modification required for Stereo 3D was canceled by the user.</system:String>
<system:String x:Key="Win10GeforceFixInstallationProcessKillFailed" xml:space="preserve">Error:

Installation of the Geforce graphics driver modification required for Stereo 3D failed. 

Error cause: Not all processes could be closed which continued to block driver DLLs.</system:String>
<system:String x:Key="Win10GeforceFixRestoreProcessKillFailed" xml:space="preserve">Error:

Geforce graphics driver couldn't be reset to original version. 

Error cause: Not all processes could be closed which continued to block driver DLLs.</system:String>
<system:String x:Key="Win10GeforceFixRestoreCanceled" xml:space="preserve">Resetting Geforce graphics driver to original state was canceled by the user.</system:String>
<system:String x:Key="Win10GeforceFixRestoreFailed" xml:space="preserve">Error:

Geforce graphics driver couldn't be reset to original version.</system:String>
<system:String x:Key="CloseBlockingProcessesForGeforceFix">For applying the modification to the Geforce graphics driver the following processes must be closed:</system:String>
<system:String x:Key="CloseBlockingProcessesForRestore">For restoring original version of Geforce graphics driver the following processes must be closed:</system:String>
<system:String x:Key="CloseProcessesConfirmation">Do you want the processes to be closed now?</system:String>
<system:String x:Key="DriverNotRequired">Not required</system:String>
<system:String x:Key="DriverInstalled">Installed</system:String>
<system:String x:Key="DriverNotInstalled">Not installed</system:String>
<system:String x:Key="DriverRestoreImportantInfoExplanation">The 3D Vision driver is required to show games in stereoscopic 3D.
Unfortunately this driver isn't included in the official driver package of the Geforce drivers any more as Nvidia dropped support for 3D Vision in May 2019.