-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Resources.resw
1261 lines (1247 loc) · 59.3 KB
/
Resources.resw
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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Shell_Home.Content" xml:space="preserve">
<value>RyTuneX</value>
</data>
<data name="Shell_Debloat.Content" xml:space="preserve">
<value>Debloat</value>
</data>
<data name="Shell_SystemInfo.Content" xml:space="preserve">
<value>Device</value>
</data>
<data name="Shell_Issue.Content" xml:space="preserve">
<value>Report</value>
</data>
<data name="Shell_OptimizeSystem.Content" xml:space="preserve">
<value>Optimize</value>
</data>
<data name="Settings_Theme.Text" xml:space="preserve">
<value>Theme</value>
</data>
<data name="Settings_Theme_Light.Content" xml:space="preserve">
<value>Light</value>
</data>
<data name="Settings_Theme_Dark.Content" xml:space="preserve">
<value>Dark</value>
</data>
<data name="Settings_Theme_Default.Content" xml:space="preserve">
<value>Default</value>
</data>
<data name="Settings_About.Text" xml:space="preserve">
<value>About this application</value>
</data>
<data name="Settings_AboutDescription.Text" xml:space="preserve">
<value>RyTuneX, a Windows 10 and 11 optimizer created by Rayen Ghanmi, is designed to enhance system performance and efficiency by selectively removing chosen software and disabling unnecessary services.</value>
</data>
<data name="SettingsPage_PrivacyTermsLink.Content" xml:space="preserve">
<value>AGPL v3.0</value>
</data>
<data name="SettingsPage_PrivacyTermsLink.NavigateUri" xml:space="preserve">
<value>https://github.com/rayenghanmi/RyTuneX/blob/main/LICENSE.md</value>
</data>
<data name="Settings_Language.Text" xml:space="preserve">
<value>Language</value>
</data>
<data name="DebloatSystemPage_FetchingInstalledApps.Text" xml:space="preserve">
<value>Fetching Installed Apps Data...</value>
</data>
<data name="DebloatSystemPage_ShowAll.Content" xml:space="preserve">
<value>Show All</value>
</data>
<data name="DebloatSystemPage_UninstallButton.Content" xml:space="preserve">
<value>Uninstall Selected App(s)</value>
</data>
<data name="Done" xml:space="preserve">
<value>Done</value>
</data>
<data name="Uninstalling" xml:space="preserve">
<value>Uninstalling</value>
</data>
<data name="UninstallTip" xml:space="preserve">
<value>Select apps that you want to remove and hit uninstall</value>
</data>
<data name="Shell_Features.Content" xml:space="preserve">
<value>Features</value>
</data>
<data name="Shell_Privacy.Content" xml:space="preserve">
<value>Privacy</value>
</data>
<data name="HomePage_DiscordButton.Text" xml:space="preserve">
<value>Join Our Server</value>
</data>
<data name="HomePage_WebsiteButton.Text" xml:space="preserve">
<value>Check out RyTuneX</value>
</data>
<data name="SettingsPage_FeedbackButton.Content" xml:space="preserve">
<value>Send feedback</value>
</data>
<data name="SystemInfoPage_CPU.Text" xml:space="preserve">
<value>Processor</value>
</data>
<data name="SystemInfoPage_GPU.Text" xml:space="preserve">
<value>Graphics Card</value>
</data>
<data name="SystemInfoPage_OS.Text" xml:space="preserve">
<value>Operating System</value>
</data>
<data name="SystemInfoPage_RAM.Text" xml:space="preserve">
<value>RAM</value>
</data>
<data name="SystemInfoPage_Storage.Text" xml:space="preserve">
<value>Storage</value>
</data>
<data name="Debloat" xml:space="preserve">
<value>Debloat</value>
</data>
<data name="DebloatPage_NotificationBody" xml:space="preserve">
<value>Uninstalling some of these apps may not remove them completely.</value>
</data>
<data name="UninstallationError" xml:space="preserve">
<value>Error uninstalling the following app(s)</value>
</data>
<data name="UninstallationSuccess" xml:space="preserve">
<value>Successfully uninstalled the following app(s)</value>
</data>
<data name="DebloatSystemPage_TempButton.Content" xml:space="preserve">
<value>Remove Temp Files</value>
</data>
<data name="AdapterRAM" xml:space="preserve">
<value>Adapter RAM</value>
</data>
<data name="Architecture" xml:space="preserve">
<value>Architecture</value>
</data>
<data name="BuildNumber" xml:space="preserve">
<value>Build Number</value>
</data>
<data name="Capacity" xml:space="preserve">
<value>Capacity</value>
</data>
<data name="Caption" xml:space="preserve">
<value>Caption</value>
</data>
<data name="Cores" xml:space="preserve">
<value>Cores</value>
</data>
<data name="DeviceLocator" xml:space="preserve">
<value>Device Locator</value>
</data>
<data name="DriverVersion" xml:space="preserve">
<value>Driver Version</value>
</data>
<data name="ErrDriversExtract" xml:space="preserve">
<value>There was an error while extracting drivers</value>
</data>
<data name="ExtractingDrivers" xml:space="preserve">
<value>Extracting Drivers</value>
</data>
<data name="GPU" xml:space="preserve">
<value>GPU</value>
</data>
<data name="InstallDate" xml:space="preserve">
<value>Install Date</value>
</data>
<data name="InterfaceType" xml:space="preserve">
<value>Interface Type</value>
</data>
<data name="L2Cache" xml:space="preserve">
<value>L2 Cache Size</value>
</data>
<data name="L3Cache" xml:space="preserve">
<value>L3 Cache Size</value>
</data>
<data name="LastBoot" xml:space="preserve">
<value>Last Boot Up Time</value>
</data>
<data name="LogicalProcessors" xml:space="preserve">
<value>Logical Processors</value>
</data>
<data name="Manufacturer" xml:space="preserve">
<value>Manufacturer</value>
</data>
<data name="MaxSpeed" xml:space="preserve">
<value>Max Speed</value>
</data>
<data name="Name" xml:space="preserve">
<value>Name</value>
</data>
<data name="OSName" xml:space="preserve">
<value>OS Name</value>
</data>
<data name="RAMModule" xml:space="preserve">
<value>RAM Module</value>
</data>
<data name="RegisteredUser" xml:space="preserve">
<value>Registered User</value>
</data>
<data name="Size" xml:space="preserve">
<value>Size</value>
</data>
<data name="SocketDesignation" xml:space="preserve">
<value>Socket Designation</value>
</data>
<data name="Speed" xml:space="preserve">
<value>Speed</value>
</data>
<data name="SystemDirectory" xml:space="preserve">
<value>System Directory</value>
</data>
<data name="Version" xml:space="preserve">
<value>Version</value>
</data>
<data name="VideoArchitecture" xml:space="preserve">
<value>Video Architecture</value>
</data>
<data name="WindowsDirectory" xml:space="preserve">
<value>Windows Directory</value>
</data>
<data name="DeligTemp" xml:space="preserve">
<value>Deleting Temp Files</value>
</data>
<data name="ErrTempDel" xml:space="preserve">
<value>Error Deleting Temp Files</value>
</data>
<data name="FeaturesPage_SysFeat.Text" xml:space="preserve">
<value>System Features</value>
</data>
<data name="FeaturesPage_Win11.Text" xml:space="preserve">
<value>Windows 11 Exclusive</value>
</data>
<data name="SystemInfoPage_FolderPathText.Text" xml:space="preserve">
<value>Select a folder</value>
</data>
<data name="TempDelSucc" xml:space="preserve">
<value>Temp Files Deleted Successfully!</value>
</data>
<data name="Disk" xml:space="preserve">
<value>Disk</value>
</data>
<data name="Model" xml:space="preserve">
<value>Model</value>
</data>
<data name="Feature_EnableVerboseLogon.Description" xml:space="preserve">
<value>Enable detailed logon messages for better system monitoring and troubleshooting. May not be user-friendly for everyday use</value>
</data>
<data name="Feature_EnableVerboseLogon.Header" xml:space="preserve">
<value>Enable Verbose Logon</value>
</data>
<data name="SelecFold" xml:space="preserve">
<value>Select a folder</value>
</data>
<data name="SystemInfoPage_Drivers.Text" xml:space="preserve">
<value>Drivers</value>
</data>
<data name="SystemInfoPage_ExtractButton.Content" xml:space="preserve">
<value>Extract</value>
</data>
<data name="SystemInfoPage_ExtractDrivers.Text" xml:space="preserve">
<value>Extract your drivers to an external folder for easy backup</value>
</data>
<data name="SystemInfoPage_ExtractingStatusText.Text" xml:space="preserve">
<value>Extracting Drivers</value>
</data>
<data name="SystemInfoPage_SelectButton.Content" xml:space="preserve">
<value>Select</value>
</data>
<data name="Feature_DisableHibernation.Header" xml:space="preserve">
<value>Disable Hibernation</value>
</data>
<data name="Feature_DisableHibernation.Description" xml:space="preserve">
<value>Turn off hibernation to save power and prevent the computer from entering sleep mode. Not recommended for laptops</value>
</data>
<data name="Feature_DisableHomeGroup.Header" xml:space="preserve">
<value>Disable Home Group</value>
</data>
<data name="Feature_DisableHomeGroup.Description" xml:space="preserve">
<value>Turns off Home Group to stop sharing files and printers with other devices on the network</value>
</data>
<data name="Feature_DisablePrintService.Header" xml:space="preserve">
<value>Disable Print Service</value>
</data>
<data name="Feature_DisablePrintService.Description" xml:space="preserve">
<value>Disables the printing service, preventing print-related functionalities</value>
</data>
<data name="Feature_DisableCompatibilityAssistant.Header" xml:space="preserve">
<value>Disable Compatibility Assistant</value>
</data>
<data name="Feature_DisableCompatibilityAssistant.Description" xml:space="preserve">
<value>Turns off Compatibility Assistant to disable automatic compatibility checks for programs</value>
</data>
<data name="Feature_DisableSearch.Header" xml:space="preserve">
<value>Disable Search</value>
</data>
<data name="Feature_DisableSearch.Description" xml:space="preserve">
<value>Turns off system-wide search functionality</value>
</data>
<data name="Feature_DisableErrorReporting.Header" xml:space="preserve">
<value>Disable Error Reporting</value>
</data>
<data name="Feature_DisableErrorReporting.Description" xml:space="preserve">
<value>Turns off error reporting to prevent the automatic sending of error reports to Microsoft</value>
</data>
<data name="Feature_DisableGameBar.Header" xml:space="preserve">
<value>Disable Game Bar</value>
</data>
<data name="Feature_DisableGameBar.Description" xml:space="preserve">
<value>Turns off the Game Bar and its associated features</value>
</data>
<data name="Feature_DisableQuickAccessHistory.Header" xml:space="preserve">
<value>Disable Quick Access History</value>
</data>
<data name="Feature_DisableQuickAccessHistory.Description" xml:space="preserve">
<value>Disables recording and display of Quick Access history</value>
</data>
<data name="Feature_DisableMyPeople.Header" xml:space="preserve">
<value>Disable My People</value>
</data>
<data name="Feature_DisableMyPeople.Description" xml:space="preserve">
<value>Turns off My People feature in the taskbar</value>
</data>
<data name="Feature_DisableSensorServices.Header" xml:space="preserve">
<value>Disable Sensor Services</value>
</data>
<data name="Feature_DisableSensorServices.Description" xml:space="preserve">
<value>Turns off sensor services for privacy and power savings. Not recommended for laptops with relevant sensors</value>
</data>
<data name="Feature_DisableWindowsInk.Header" xml:space="preserve">
<value>Disable Windows Ink</value>
</data>
<data name="Feature_DisableWindowsInk.Description" xml:space="preserve">
<value>Turns off Windows Ink Workspace and related features. Not recommended for devices with a stylus</value>
</data>
<data name="Feature_DisableSpellingAndTypingFeatures.Header" xml:space="preserve">
<value>Disable Spelling and Typing Features</value>
</data>
<data name="Feature_DisableSpellingAndTypingFeatures.Description" xml:space="preserve">
<value>Disables spelling and typing suggestions</value>
</data>
<data name="Feature_DisableFaxService.Header" xml:space="preserve">
<value>Disable Fax Service</value>
</data>
<data name="Feature_DisableFaxService.Description" xml:space="preserve">
<value>Disables the Fax service in Windows</value>
</data>
<data name="Feature_DisableInsiderService.Header" xml:space="preserve">
<value>Disable Insider Service</value>
</data>
<data name="Feature_DisableInsiderService.Description" xml:space="preserve">
<value>Opt-out of Windows Insider Program and stop receiving preview builds</value>
</data>
<data name="Feature_DisableCloudClipboard.Header" xml:space="preserve">
<value>Disable Cloud Clipboard</value>
</data>
<data name="Feature_DisableCloudClipboard.Description" xml:space="preserve">
<value>Disables Cloud Clipboard feature for cross-device clipboard sharing</value>
</data>
<data name="Feature_DisableStickyKeys.Header" xml:space="preserve">
<value>Disable Sticky Keys</value>
</data>
<data name="Feature_DisableStickyKeys.Description" xml:space="preserve">
<value>Disables Sticky Keys accessibility feature. Useful for people who accidentally press multiple keys at once</value>
</data>
<data name="Feature_DisableCastToDevice.Header" xml:space="preserve">
<value>Disable Cast to Device</value>
</data>
<data name="Feature_DisableCastToDevice.Description" xml:space="preserve">
<value>Disables the Cast to Device feature in Windows. Useful for presentations or sharing media on other devices</value>
</data>
<data name="Feature_DisableVBS.Header" xml:space="preserve">
<value>Disable VBS</value>
</data>
<data name="Feature_DisableVBS.Description" xml:space="preserve">
<value>Disables Virtualization-Based Security (VBS) for advanced security features. Not recommended for high-security environments</value>
</data>
<data name="Feature_MoveTaskbarToLeft.Header" xml:space="preserve">
<value>Move Taskbar to The Left</value>
</data>
<data name="Feature_MoveTaskbarToLeft.Description" xml:space="preserve">
<value>Moves the taskbar from the default bottom position to the left side of the screen. Personal preference</value>
</data>
<data name="Feature_DisableSnapAssist.Header" xml:space="preserve">
<value>Disable Snap Assist</value>
</data>
<data name="Feature_DisableSnapAssist.Description" xml:space="preserve">
<value>Disables Snap Assist, which automatically arranges open windows when dragging. Useful for multitasking but some users prefer manual window management</value>
</data>
<data name="Feature_DisableWidgets.Header" xml:space="preserve">
<value>Disable Widgets</value>
</data>
<data name="Feature_DisableWidgets.Description" xml:space="preserve">
<value>Disables the Widgets feature on the Windows 11 taskbar. Consider if you find the widgets useful for quick updates (Windows 11 only)</value>
</data>
<data name="Feature_DisableChat.Header" xml:space="preserve">
<value>Disable Chat</value>
</data>
<data name="Feature_DisableChat.Description" xml:space="preserve">
<value>Disables the Chat feature on the Windows 11 taskbar. Only recommended if you don't use the chat feature for communication (Windows 11 only)</value>
</data>
<data name="Feature_EnableFilesCompactMode.Header" xml:space="preserve">
<value>Enable Files Compact Mode</value>
</data>
<data name="Feature_EnableFilesCompactMode.Description" xml:space="preserve">
<value>Enables Compact Mode for file browsing with smaller thumbnails. Useful for low-resolution displays or managing large folders</value>
</data>
<data name="Feature_DisableStickers.Header" xml:space="preserve">
<value>Disable Stickers</value>
</data>
<data name="Feature_DisableStickers.Description" xml:space="preserve">
<value>Disables the Stickers feature in the Windows 11 messaging app. Only recommended if you don't use stickers for communication (Windows 11 only)</value>
</data>
<data name="Feature_DisableEdgeDiscoverBar.Header" xml:space="preserve">
<value>Disable Edge Discover Bar</value>
</data>
<data name="Feature_DisableEdgeDiscoverBar.Description" xml:space="preserve">
<value>Disables the Discover Bar feature in Microsoft Edge. Useful if you find it distracting or prefer cleaner browser interface</value>
</data>
<data name="Feature_DisableCoPilotAI.Header" xml:space="preserve">
<value>Disable CoPilot AI</value>
</data>
<data name="Feature_DisableCoPilotAI.Description" xml:space="preserve">
<value>Disables the CoPilot AI feature in Windows for assistance with code writing. Not recommended for developers</value>
</data>
<data name="OptimizeBasic.Text" xml:space="preserve">
<value>Basic Optimizations</value>
</data>
<data name="Feature_PerformanceTweaks.Header" xml:space="preserve">
<value>Performance Tweaks</value>
</data>
<data name="Feature_DisableSysMain.Header" xml:space="preserve">
<value>Disable SysMain</value>
</data>
<data name="Feature_DisableSysMain.Description" xml:space="preserve">
<value>Turns off SysMain, which preloads frequently used applications for faster startup. May impact startup times for some programs if you're using HDD.</value>
</data>
<data name="Feature_DisableNTFSTimestamp.Header" xml:space="preserve">
<value>Disable NTFS Timestamp</value>
</data>
<data name="Feature_DisableNTFSTimestamp.Description" xml:space="preserve">
<value>Disables updates to NTFS timestamps for file operations. May affect functionality of programs relying on precise timestamps.</value>
</data>
<data name="Feature_EnableGamingMode.Header" xml:space="preserve">
<value>Enable Gaming Mode</value>
</data>
<data name="Feature_EnableGamingMode.Description" xml:space="preserve">
<value>Enables Gaming Mode, which optimizes system resources for a smoother gaming experience. May affect background processes.</value>
</data>
<data name="Feature_ExcludeDriversFromWindowsUpdates.Header" xml:space="preserve">
<value>Exclude Drivers From Windows Updates</value>
</data>
<data name="Feature_ExcludeDriversFromWindowsUpdates.Description" xml:space="preserve">
<value>Excludes driver updates from Windows Update. May lead to outdated drivers with potential security risks or compatibility issues. Use with caution.</value>
</data>
<data name="Feature_LearnButtonLink.Content" xml:space="preserve">
<value>Learn more about what's being disabled</value>
</data>
<data name="OptimizeAdvanced.Text" xml:space="preserve">
<value>Advanced Optimizations</value>
</data>
<data name="Feature_DisableSystemRestore.Header" xml:space="preserve">
<value>Disable System Restore</value>
</data>
<data name="Feature_DisableSystemRestore.Description" xml:space="preserve">
<value>Disables System Restore, which creates restore points to revert the system to a previous state in case of problems. Not recommended. Disabling this feature removes the ability to easily recover from potential system issues.</value>
</data>
<data name="Feature_DisableCortana.Header" xml:space="preserve">
<value>Disable Cortana</value>
</data>
<data name="Feature_DisableCortana.Description" xml:space="preserve">
<value>Disables Cortana, the virtual assistant that can answer questions and complete tasks. May impact voice search and some productivity features.</value>
</data>
<data name="Feature_DisableStoreUpdates.Header" xml:space="preserve">
<value>Disable Store Updates</value>
</data>
<data name="Feature_DisableStoreUpdates.Description" xml:space="preserve">
<value>Disables automatic updates for apps downloaded from the Microsoft Store. May leave apps vulnerable to security risks or lacking new features.</value>
</data>
<data name="Feature_DisableAutomaticUpdates.Header" xml:space="preserve">
<value>Disable Automatic Updates</value>
</data>
<data name="Feature_DisableAutomaticUpdates.Description" xml:space="preserve">
<value>Turns off automatic Windows updates, requiring manual installation. Highly discouraged. This can leave your system vulnerable to security exploits and bug fixes.</value>
</data>
<data name="Privacy_Telemetry.Text" xml:space="preserve">
<value>Telemetry</value>
</data>
<data name="Feature_EnhancePrivacy.Header" xml:space="preserve">
<value>Enhance Privacy</value>
</data>
<data name="Feature_DisableSMBv1.Header" xml:space="preserve">
<value>Disable SMBv1</value>
</data>
<data name="Feature_DisableSMBv1.Description" xml:space="preserve">
<value>Disables Server Message Block version 1 (SMBv1) for enhanced security. Recommended</value>
</data>
<data name="Feature_DisableSMBv2.Header" xml:space="preserve">
<value>Disable SMBv2</value>
</data>
<data name="Feature_DisableSMBv2.Description" xml:space="preserve">
<value>Disables Server Message Block version 2 (SMBv2) for enhanced security. Use with caution as it might break network file sharing functionalities.</value>
</data>
<data name="Feature_DisableTelemetryServices.Header" xml:space="preserve">
<value>Disable Telemetry Services</value>
</data>
<data name="Feature_DisableTelemetryServices.Description" xml:space="preserve">
<value>Turns off telemetry services to prevent the collection and transmission of usage data by the operating system.</value>
</data>
<data name="Feature_DisableEdgeTelemetry.Header" xml:space="preserve">
<value>Disable Edge Telemetry</value>
</data>
<data name="Feature_DisableEdgeTelemetry.Description" xml:space="preserve">
<value>Disables telemetry data collection in Microsoft Edge.</value>
</data>
<data name="Feature_DisableVisualStudioTelemetry.Header" xml:space="preserve">
<value>Disable Visual Studio Telemetry</value>
</data>
<data name="Feature_DisableVisualStudioTelemetry.Description" xml:space="preserve">
<value>Disables telemetry data collection in Visual Studio.</value>
</data>
<data name="Feature_DisableNvidiaTelemetry.Header" xml:space="preserve">
<value>Disable Nvidia Telemetry</value>
</data>
<data name="Feature_DisableNvidiaTelemetry.Description" xml:space="preserve">
<value>Disables telemetry data collection by Nvidia drivers.</value>
</data>
<data name="Feature_DisableChromeTelemetry.Header" xml:space="preserve">
<value>Disable Chrome Telemetry</value>
</data>
<data name="Feature_DisableChromeTelemetry.Description" xml:space="preserve">
<value>Disables telemetry data collection in Google Chrome.</value>
</data>
<data name="Feature_DisableFirefoxTelemetry.Header" xml:space="preserve">
<value>Disable Firefox Telemetry</value>
</data>
<data name="Feature_DisableFirefoxTelemetry.Description" xml:space="preserve">
<value>Disables telemetry data collection in Mozilla Firefox.</value>
</data>
<data name="Settings_LanguageSettingsCard.Description" xml:space="preserve">
<value>Choose your default language</value>
</data>
<data name="Settings_LanguageSettingsCard.Header" xml:space="preserve">
<value>Change Language</value>
</data>
<data name="Shell_Network.Content" xml:space="preserve">
<value>Networking</value>
</data>
<data name="Feature_EnableEndTask.Description" xml:space="preserve">
<value>Enables an option when right clicking on apps' icons in the taskbar, allowing you to quickly terminate unresponsive applications without opening Task Manager.</value>
</data>
<data name="Feature_EnableEndTask.Header" xml:space="preserve">
<value>Enable EndTask</value>
</data>
<data name="Network_ApplyDNS.Content" xml:space="preserve">
<value>Apply DNS</value>
</data>
<data name="Network_IPv4Title.Text" xml:space="preserve">
<value>IPv4 DNS Servers</value>
</data>
<data name="Network_IPv6Title.Text" xml:space="preserve">
<value>IPv6 DNS Servers</value>
</data>
<data name="Network_NicTitle.Text" xml:space="preserve">
<value>Network Interface</value>
</data>
<data name="Network_Primary.Text" xml:space="preserve">
<value>Primary</value>
</data>
<data name="Network_ResetDNS.Content" xml:space="preserve">
<value>Reset Default DNS</value>
</data>
<data name="Network_Secondary.Text" xml:space="preserve">
<value>Secondary</value>
</data>
<data name="Network_SetDNSTitle.Text" xml:space="preserve">
<value>Set Custom DNS</value>
</data>
<data name="NoIPv4" xml:space="preserve">
<value>No IPv4 DNS addresses found</value>
</data>
<data name="NoIPv6" xml:space="preserve">
<value>No IPv6 DNS addresses found</value>
</data>
<data name="NoNic" xml:space="preserve">
<value>No network interface selected</value>
</data>
<data name="NotSet" xml:space="preserve">
<value>Not set</value>
</data>
<data name="AdultFilter" xml:space="preserve">
<value>(adult filter)</value>
</data>
<data name="Automatic" xml:space="preserve">
<value>Automatic</value>
</data>
<data name="Feature_DisableBiometrics.Description" xml:space="preserve">
<value>Disables the use of biometrics for authentication, such as fingerprint or facial recognition.</value>
</data>
<data name="Feature_DisableBiometrics.Header" xml:space="preserve">
<value>Disable Biometrics features</value>
</data>
<data name="AppDescription" xml:space="preserve">
<value>RyTuneX is a cutting-edge optimizer built with the WinUI 3 framework, designed to amplify the performance of Windows devices. Crafted for both Windows 10 and 11, RyTuneX empowers users to effortlessly remove stubborn pre-installed apps and optimize system resources</value>
</data>
<data name="SettingsPage_UpdateButton.Content" xml:space="preserve">
<value>Check for updates</value>
</data>
<data name="AvailableUpdateContent0" xml:space="preserve">
<value>A newer version (</value>
</data>
<data name="AvailableUpdateContent1" xml:space="preserve">
<value>) is available. Please update to the latest version to enjoy new features and improvements.</value>
</data>
<data name="UpdateTitle" xml:space="preserve">
<value>RyTuneX updates</value>
</data>
<data name="NetworkError" xml:space="preserve">
<value>There was an error. Make sure to check your internet connection and try again later.</value>
</data>
<data name="UnavailableUpdate0" xml:space="preserve">
<value>You are already running the latest version (</value>
</data>
<data name="UnavailableUpdate1" xml:space="preserve">
<value>). No updates are available at this time.</value>
</data>
<data name="Close" xml:space="preserve">
<value>Close</value>
</data>
<data name="Update" xml:space="preserve">
<value>Update</value>
</data>
<data name="Shell_Support.Content" xml:space="preserve">
<value>Support</value>
</data>
<data name="SystemInfoPage_Network.Text" xml:space="preserve">
<value>Network</value>
</data>
<data name="SystemInfoPage_Battery.Text" xml:space="preserve">
<value>Battery</value>
</data>
<data name="MACAddress" xml:space="preserve">
<value>MAC Address</value>
</data>
<data name="AdapterType" xml:space="preserve">
<value>Adapter Type</value>
</data>
<data name="EstimatedChargeRemaining" xml:space="preserve">
<value>Estimated Charge Remaining</value>
</data>
<data name="BatteryStatus" xml:space="preserve">
<value>Battery Status</value>
</data>
<data name="Chemistry" xml:space="preserve">
<value>Chemistry</value>
</data>
<data name="Shell_Security.Content" xml:space="preserve">
<value>Security</value>
</data>
<data name="UnexpectedError" xml:space="preserve">
<value>There was an unexpected error</value>
</data>
<data name="SettingsPage_LogsLink.Content" xml:space="preserve">
<value>View Logs</value>
</data>
<data name="TotalApps" xml:space="preserve">
<value>Total: {0} App(s)</value>
</data>
<data name="HomePage_Performance.Text" xml:space="preserve">
<value>Performance</value>
</data>
<data name="Enabled" xml:space="preserve">
<value>Enabled</value>
</data>
<data name="Disabled" xml:space="preserve">
<value>Disabled</value>
</data>
<data name="SecurityPage_Status.Text" xml:space="preserve">
<value>Security Status</value>
</data>
<data name="SecurityPage_VirusThreatProtection.Text" xml:space="preserve">
<value>Virus & Threat Protection</value>
</data>
<data name="SecurityPage_FirewallNetworkProtection.Text" xml:space="preserve">
<value>Firewall & Network Protection</value>
</data>
<data name="SecurityPage_WindowsUpdate.Text" xml:space="preserve">
<value>Windows Update</value>
</data>
<data name="SecurityPage_SmartScreen.Text" xml:space="preserve">
<value>SmartScreen</value>
</data>
<data name="SecurityPage_RealTimeProtection.Text" xml:space="preserve">
<value>Real-Time Protection</value>
</data>
<data name="SecurityPage_UAC.Text" xml:space="preserve">
<value>User Account Control (UAC)</value>
</data>
<data name="SecurityPage_Details.Text" xml:space="preserve">
<value>Details</value>
</data>
<data name="Shell_Repair.Content" xml:space="preserve">
<value>Repair</value>
</data>
<data name="ConfirmRemoveApps" xml:space="preserve">
<value>You’re about to completely remove the following apps from your system:</value>
</data>
<data name="ConfirmContinue" xml:space="preserve">
<value>Are you sure you want to continue?</value>
</data>
<data name="Continue" xml:space="preserve">
<value>Continue</value>
</data>
<data name="HomePage_cpuUsage.Text" xml:space="preserve">
<value>CPU Usage</value>
</data>
<data name="HomePage_ramUsage.Text" xml:space="preserve">
<value>RAM Usage</value>
</data>
<data name="HomePage_gpuUsage.Text" xml:space="preserve">
<value>GPU Usage</value>
</data>
<data name="HomePage_diskUsage.Text" xml:space="preserve">
<value>Disk Usage</value>
</data>
<data name="HomePage_networkUsage.Text" xml:space="preserve">
<value>Network Usage</value>
</data>
<data name="HomePage_installedAppsCount.Text" xml:space="preserve">
<value>Installed Apps</value>
</data>
<data name="HomePage_processesCount.Text" xml:space="preserve">
<value>Processes</value>
</data>
<data name="HomePage_servicesCount.Text" xml:space="preserve">
<value>Services</value>
</data>
<data name="Feature_DisableSmartScreen.Header" xml:space="preserve">
<value>Disable Smart Screen</value>
</data>
<data name="Feature_DisableSmartScreen.Description" xml:space="preserve">
<value>Turns off SmartScreen Filter, which warns you about potentially unsafe apps and files downloaded from the internet. Disabling this feature increases the risk of malware infection.</value>
</data>
<data name="Feature_DisableNewsAndInterests.Header" xml:space="preserve">
<value>Disable News and Interests</value>
</data>
<data name="Feature_DisableNewsAndInterests.Description" xml:space="preserve">
<value>Disables the News and Interests feed on the taskbar, which displays news, weather, and other updates. Disabling this may improve system performance.</value>
</data>
<data name="Feature_DisableSpotlightFeatures.Header" xml:space="preserve">
<value>Disable Spotlight Features</value>
</data>
<data name="Feature_DisableSpotlightFeatures.Description" xml:space="preserve">
<value>Turns off the Spotlight feature that shows personalized content and recommendations on your lock screen. Disabling this feature can help protect privacy.</value>
</data>
<data name="Feature_DisableTailoredExperiences.Header" xml:space="preserve">
<value>Disable Tailored Experiences</value>
</data>
<data name="Feature_DisableTailoredExperiences.Description" xml:space="preserve">
<value>Disables tailored experiences across apps and services, preventing Windows from collecting your preferences and activity data.</value>
</data>
<data name="Feature_DisableCloudOptimizedContent.Header" xml:space="preserve">
<value>Disable Cloud Optimized Content</value>
</data>
<data name="Feature_DisableCloudOptimizedContent.Description" xml:space="preserve">
<value>Disables cloud-optimized content, which may include app updates and file syncing. This can reduce internet bandwidth usage but may limit functionality.</value>
</data>
<data name="Feature_DisableFeedbackNotifications.Header" xml:space="preserve">
<value>Disable Feedback Notifications</value>
</data>
<data name="Feature_DisableFeedbackNotifications.Description" xml:space="preserve">
<value>Prevents Windows from showing feedback notifications related to your experience with the OS. Disabling this feature may reduce interruptions.</value>
</data>
<data name="Feature_DisableAdvertisingID.Header" xml:space="preserve">
<value>Disable Advertising ID</value>
</data>
<data name="Feature_DisableAdvertisingID.Description" xml:space="preserve">
<value>Disables the Advertising ID, preventing Windows from tracking your activities for targeted advertising. This can enhance privacy but may affect app experiences.</value>
</data>
<data name="Feature_DisableBluetoothAdvertising.Header" xml:space="preserve">
<value>Disable Bluetooth Advertising</value>
</data>
<data name="Feature_DisableBluetoothAdvertising.Description" xml:space="preserve">
<value>Turns off Bluetooth advertising, which broadcasts your device's presence to other nearby devices. Disabling this can reduce privacy risks.</value>
</data>
<data name="Feature_DisableAutomaticRestartSignOn.Header" xml:space="preserve">
<value>Disable Automatic Restart Sign-On</value>
</data>
<data name="Feature_DisableAutomaticRestartSignOn.Description" xml:space="preserve">
<value>Disables automatic sign-on after a restart, requiring you to enter your credentials manually. This may enhance security but adds an extra step to logging in.</value>
</data>
<data name="Feature_DisableHandwritingDataSharing.Header" xml:space="preserve">
<value>Disable Handwriting Data Sharing</value>
</data>
<data name="Feature_DisableHandwritingDataSharing.Description" xml:space="preserve">
<value>Turns off the sharing of handwriting data with Microsoft services, improving privacy but reducing some features related to handwriting recognition.</value>
</data>
<data name="Feature_DisableTextInputDataCollection.Header" xml:space="preserve">
<value>Disable Text Input Data Collection</value>
</data>
<data name="Feature_DisableTextInputDataCollection.Description" xml:space="preserve">
<value>Disables the collection of text input data, preventing Windows from storing and analyzing what you type. This helps protect privacy but may reduce typing accuracy improvements.</value>
</data>
<data name="Feature_DisableInputPersonalization.Header" xml:space="preserve">
<value>Disable Input Personalization</value>
</data>
<data name="Feature_DisableInputPersonalization.Description" xml:space="preserve">
<value>Disables personalization of input methods, including predictive text and autocorrect features. This may reduce system performance improvements in text input.</value>
</data>
<data name="Feature_DisableSafeSearchMode.Header" xml:space="preserve">
<value>Disable Safe Search Mode</value>
</data>
<data name="Feature_DisableSafeSearchMode.Description" xml:space="preserve">
<value>Turns off Safe Search Mode, which filters out potentially harmful or inappropriate content from search results. Disabling this increases the risk of exposure to unsafe content.</value>
</data>
<data name="Feature_DisableActivityUploads.Header" xml:space="preserve">
<value>Disable Activity Uploads</value>
</data>
<data name="Feature_DisableActivityUploads.Description" xml:space="preserve">
<value>Disables the uploading of activity data, preventing Microsoft from collecting your usage data for improving services. This helps maintain privacy.</value>
</data>
<data name="Feature_DisableClipboardSync.Header" xml:space="preserve">
<value>Disable Clipboard Sync</value>
</data>
<data name="Feature_DisableClipboardSync.Description" xml:space="preserve">
<value>Disables clipboard synchronization across your devices, ensuring your copied data stays local and preventing data from being shared with other devices.</value>
</data>
<data name="Feature_DisableMessageSync.Header" xml:space="preserve">
<value>Disable Message Sync</value>
</data>
<data name="Feature_DisableMessageSync.Description" xml:space="preserve">
<value>Prevents messages from syncing across devices, ensuring your text messages and notifications are only available on the device you are using.</value>
</data>
<data name="Feature_DisableSettingSync.Header" xml:space="preserve">
<value>Disable Setting Sync</value>
</data>
<data name="Feature_DisableSettingSync.Description" xml:space="preserve">
<value>Disables synchronization of system settings across devices. This prevents your device settings, themes, and other configurations from being shared.</value>
</data>
<data name="Feature_DisableVoiceActivation.Header" xml:space="preserve">
<value>Disable Voice Activation</value>
</data>
<data name="Feature_DisableVoiceActivation.Description" xml:space="preserve">
<value>Disables voice activation features like Cortana, preventing the assistant from listening for your voice commands. This can improve privacy but reduces voice command functionality.</value>
</data>
<data name="Feature_DisableFindMyDevice.Header" xml:space="preserve">
<value>Disable Find My Device</value>
</data>
<data name="Feature_DisableFindMyDevice.Description" xml:space="preserve">
<value>Disables the Find My Device feature, which helps locate your device if lost. Disabling this reduces your ability to recover a lost device but enhances privacy.</value>
</data>
<data name="Feature_DisableActivityFeed.Header" xml:space="preserve">
<value>Disable Activity Feed</value>
</data>
<data name="Feature_DisableActivityFeed.Description" xml:space="preserve">
<value>Turns off the activity feed that shows your recent activities, helping to protect your privacy by preventing others from seeing what you've been doing on your device.</value>
</data>
<data name="Feature_DisableCdp.Header" xml:space="preserve">
<value>Disable CDP (Customer Data Platform)</value>
</data>
<data name="Feature_DisableCdp.Description" xml:space="preserve">
<value>Disables CDP, preventing the collection and use of your data by the customer data platform for analysis and targeted recommendations. This increases privacy but may limit personalization.</value>
</data>
<data name="Feature_DisableTailoredExperiencesInPrivacy.Header" xml:space="preserve">
<value>Disable Tailored Experiences in Privacy</value>
</data>
<data name="Feature_DisableTailoredExperiencesInPrivacy.Description" xml:space="preserve">
<value>Disables the tailored experiences feature in privacy settings, stopping Windows from using your data to customize your experiences. This may reduce personalization features.</value>
</data>
<data name="Feature_DisableDiagnosticsToast.Header" xml:space="preserve">
<value>Disable Diagnostics Toast</value>
</data>
<data name="Feature_DisableDiagnosticsToast.Description" xml:space="preserve">
<value>Turns off diagnostic toast notifications, preventing Windows from showing you prompts related to system health or errors. This can help reduce distractions.</value>
</data>
<data name="Feature_DisableOnlineSpeechPrivacy.Header" xml:space="preserve">
<value>Disable Online Speech Privacy</value>
</data>
<data name="Feature_DisableOnlineSpeechPrivacy.Description" xml:space="preserve">
<value>Disables online speech privacy, preventing Windows from storing or processing voice commands. This increases privacy but limits voice features like voice search and commands.</value>
</data>
<data name="Feature_DisableLocationAccess.Header" xml:space="preserve">
<value>Disable Location Access</value>
</data>
<data name="Feature_DisableLocationAccess.Description" xml:space="preserve">
<value>Turns off location access for apps and services, preventing them from using your device's GPS or network location. This improves privacy but may limit location-based services.</value>
</data>
<data name="Feature_DisableLocationFeatures.Header" xml:space="preserve">
<value>Disable Location Features</value>
</data>
<data name="Feature_DisableLocationFeatures.Description" xml:space="preserve">
<value>Disables all location-based features on your device, including location services for apps and security features. This can enhance privacy but reduce the functionality of location-dependent services.</value>
</data>
<data name="Feature_MenuShowDelay.Header" xml:space="preserve">
<value>Disable Menu Show Delay</value>
</data>
<data name="Feature_MenuShowDelay.Description" xml:space="preserve">
<value>Controls the delay before menus appear after a mouse hover. Disabling this feature can make the menus open instantly, improving responsiveness but may reduce user control.</value>
</data>
<data name="Feature_MouseHoverTime.Header" xml:space="preserve">
<value>Disable Mouse Hover Time</value>
</data>
<data name="Feature_MouseHoverTime.Description" xml:space="preserve">
<value>Adjusts the time the system waits before triggering a hover event. Disabling this may speed up interactions but can lead to unintentional activations.</value>
</data>
<data name="Feature_AutoComplete.Header" xml:space="preserve">
<value>Disable Auto Complete</value>