forked from microsoft/WSL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResources.resw
More file actions
2512 lines (2409 loc) · 135 KB
/
Resources.resw
File metadata and controls
2512 lines (2409 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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="AppName" xml:space="preserve">
<value>Windows Subsystem for Linux</value>
</data>
<data name="AppShortName" xml:space="preserve">
<value>WSL</value>
</data>
<data name="AppDescription" xml:space="preserve">
<value>Windows Subsystem for Linux lets developers run a GNU/Linux environment -- including most command-line tools, utilities, and applications -- directly on Windows, unmodified, without the overhead of a traditional virtual machine or dualboot setup.</value>
</data>
<data name="MessageDetachFailed" xml:space="preserve">
<value>The disk failed to detach: {}. For more details, please run 'dmesg' inside WSL2.
To force WSL2 to stop and detach the disk, run 'wsl.exe {}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDiskAlreadyAttached" xml:space="preserve">
<value>The disk '{}' is already attached.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDiskAlreadyMounted" xml:space="preserve">
<value>That volume is already mounted inside WSL2.</value>
</data>
<data name="MessageDiskMountNameAlreadyExists" xml:space="preserve">
<value>A disk with that name is already mounted; please unmount the disk or choose a new name and try again.</value>
</data>
<data name="MessageDiskMountNameInvalid" xml:space="preserve">
<value>The specified mount name contains an invalid '/' character. Please retry without the invalid character.</value>
</data>
<data name="MessageDiskMounted" xml:space="preserve">
<value>The disk was successfully mounted as '/mnt/wsl/{}'.
Note: The location will be different if you have modified the automount.root setting in /etc/wsl.conf.
To unmount and detach the disk, run 'wsl.exe {} {}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDiskMountFailed" xml:space="preserve">
<value>The disk was attached but failed to mount: {}.
For more details, run 'dmesg' inside WSL2.
To detach the disk, run 'wsl.exe {} {}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDistributionListOnline" xml:space="preserve">
<value>The following is a list of valid distributions that can be installed.
Install using 'wsl.exe {} <Distro>'.
</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDistroAlreadySet" xml:space="preserve">
<value>The distribution name has already been set.</value>
</data>
<data name="MessageDistroInstallPathAlreadyExists" xml:space="preserve">
<value>The supplied install location is already in use.</value>
</data>
<data name="MessageDistroNameAlreadyExists" xml:space="preserve">
<value>A distribution with the supplied name already exists. Use --name to chose a different name.</value>
<comment>{Locked="--name "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDistroNotFound" xml:space="preserve">
<value>There is no distribution with the supplied name.</value>
</data>
<data name="MessageElevationNeededToMountDisk" xml:space="preserve">
<value>Administrator access is needed to mount a disk.</value>
</data>
<data name="MessageExportFailed" xml:space="preserve">
<value>Exporting the distribution failed.</value>
</data>
<data name="MessageFsUpgradeNeeded" xml:space="preserve">
<value>Performing one-time upgrade of the Windows Subsystem for Linux file system for this distribution...</value>
</data>
<data name="MessageHigherIntegrity" xml:space="preserve">
<value>Cannot launch because another instance is running un-elevated. Elevated and un-elevated instances are not permitted to run simultaneously.</value>
</data>
<data name="MessageImportFailed" xml:space="preserve">
<value>Importing the distribution failed.</value>
</data>
<data name="MessageInstallingWindowsComponent" xml:space="preserve">
<value>Installing Windows optional component: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDownloading" xml:space="preserve">
<value>Downloading: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInstalling" xml:space="preserve">
<value>Installing: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageImportingDistribution" xml:space="preserve">
<value>Importing distribution</value>
</data>
<data name="MessageDownloadComplete" xml:space="preserve">
<value>{} has been downloaded.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInstallContinue" xml:space="preserve">
<value>Windows Subsystem for Linux is resuming a previous installation...</value>
</data>
<data name="MessageInvalidDistributionName" xml:space="preserve">
<value>Invalid distribution name: '{}'.
To get a list of valid distributions, use 'wsl.exe --list --online'.</value>
<comment>{FixedPlaceholder="{}"}{Locked="--list "}{Locked="--online'"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInstanceTerminated" xml:space="preserve">
<value>The Windows Subsystem for Linux instance has terminated.</value>
</data>
<data name="MessageInvalidCommandLine" xml:space="preserve">
<value>Invalid command line argument: {}
Please use '{} --help' to get a list of supported arguments.</value>
<comment>{FixedPlaceholder="{}"}{Locked="--help'"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageMissingArgument" xml:space="preserve">
<value>Command line argument {} requires a value.
Please use '{} --help' to get a list of supported arguments.</value>
<comment>{FixedPlaceholder="{}"}{Locked="--help'"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidConsole" xml:space="preserve">
<value>Unsupported console settings. In order to use this feature, the legacy console must be disabled.</value>
</data>
<data name="MessageInvalidInteger" xml:space="preserve">
<value>{} is not a valid integer.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidState" xml:space="preserve">
<value>An install, uninstall, or conversion is in progress for this distribution.</value>
</data>
<data name="MessageLaunchingDistro" xml:space="preserve">
<value>Launching {}...</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageLowerIntegrity" xml:space="preserve">
<value>Cannot launch because another instance is running elevated. Elevated and un-elevated instances are not permitted to run simultaneously.</value>
</data>
<data name="MessageNoDefaultDistro" xml:space="preserve">
<value>Windows Subsystem for Linux has no installed distributions.
You can resolve this by installing a distribution with the instructions below:
Use 'wsl.exe --list --online' to list available distributions
and 'wsl.exe --install <Distro>' to install.</value>
<comment>{Locked="--list "}{Locked="--online'"}{Locked="--install "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageNoRunningDistro" xml:space="preserve">
<value>There are no running distributions.</value>
</data>
<data name="MessagePrintDistroDefault" xml:space="preserve">
<value>{} (Default)</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageRegisteredDistrosHeader" xml:space="preserve">
<value>Windows Subsystem for Linux Distributions:</value>
</data>
<data name="MessageStatusDefaultDistro" xml:space="preserve">
<value>Default Distribution: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageStatusDefaultVersion" xml:space="preserve">
<value>Default Version: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageStatusUnregistering" xml:space="preserve">
<value>Unregistering.</value>
</data>
<data name="MessageUserNotFound" xml:space="preserve">
<value>User not found.</value>
</data>
<data name="MessageVmModeConversionInfo" xml:space="preserve">
<value>For information on key differences with WSL 2 please visit https://aka.ms/wsl2</value>
</data>
<data name="MessageConversionStart" xml:space="preserve">
<value>Conversion in progress, this may take a few minutes.</value>
</data>
<data name="MessageAlreadyRequestedVersion" xml:space="preserve">
<value>The distribution is already the requested version.</value>
</data>
<data name="MessageVmModeNotSupported" xml:space="preserve">
<value>The Legacy distribution does not support WSL 2.</value>
</data>
<data name="MessageEnableVirtualization" xml:space="preserve">
<value>WSL2 is unable to start since virtualization is not enabled on this machine.
Please ensure the "Virtual Machine Platform" optional component is enabled and virtualization is turned on in your computer's firmware settings.
Enable "Virtual Machine Platform" by running: wsl.exe --install --no-distribution
For information please visit https://aka.ms/enablevirtualization</value>
<comment>{Locked="--install "}{Locked="--no-distribution
"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageTooManyDisks" xml:space="preserve">
<value>Too many virtual hard disks or physical disks are attached.</value>
</data>
<data name="MessageUserVhdAlreadyAttached" xml:space="preserve">
<value>VHD already mounted via wsl.exe --mount, please unmount the disk before launching.</value>
<comment>{Locked="--mount,"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWsl1NotSupported" xml:space="preserve">
<value>WSL1 is not supported with your current machine configuration.
Please enable the "Windows Subsystem for Linux" optional component to use WSL1.</value>
</data>
<data name="MessageWsl2Needed" xml:space="preserve">
<value>This operation is only supported by WSL2.</value>
</data>
<data name="MessageWslInfoUsage" xml:space="preserve">
<value>Usage:
--networking-mode
Display current networking mode.
--msal-proxy-path
Display the path to the MSAL proxy application.
--vm-id
Display the WSL VM ID.
--version
Display the version of the WSL package.
-n
Do not print a newline.</value>
<comment>{Locked="--networking-mode
"}{Locked="--msal-proxy-path
"}{Locked="--vm-id
"}{Locked="--version
"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWslPathUsage" xml:space="preserve">
<value>Usage:
-a
Force result to absolute path format.
-u
Translate from a Windows path to a WSL path (default).
-w
Translate from a WSL path to a Windows path.
-m
Translate from a WSL path to a Windows path, with '/' instead of '\\'
Example: wslpath 'c:\\users'</value>
<comment>{Locked="-a
"}{Locked="-u
"}{Locked="-w
"}{Locked="-m
"}Command line arguments and file names should not be translated</comment>
</data>
<data name="MessageWslconfigUsage" xml:space="preserve">
<value>Performs administrative operations on Windows Subsystem for Linux
Usage:
/l, /list [Option]
Lists registered distributions.
/all - Optionally list all distributions, including distributions that
are currently being installed or uninstalled.
/running - List only distributions that are currently running.
/s, /setdefault <DistributionName>
Sets the distribution as the default.
/t, /terminate <DistributionName>
Terminates the distribution.
/u, /unregister <DistributionName>
Unregisters the distribution and deletes the root filesystem.</value>
<comment>{Locked="/l,"}{Locked="/list "}{Locked="/all "}{Locked="/running "}{Locked="/s,"}{Locked="/setdefault "}{Locked="/t,"}{Locked="/terminate "}{Locked="/u,"}{Locked="/unregister "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWslUsage" xml:space="preserve">
<value>Copyright (c) Microsoft Corporation. All rights reserved.
For privacy information about this product please visit https://aka.ms/privacy.
Usage: wsl.exe [Argument] [Options...] [CommandLine]
Arguments for running Linux binaries:
If no command line is provided, wsl.exe launches the default shell.
--exec, -e <CommandLine>
Execute the specified command without using the default Linux shell.
--shell-type <standard|login|none>
Execute the specified command with the provided shell type.
--
Pass the remaining command line as-is.
Options:
--cd <Directory>
Sets the specified directory as the current working directory.
If ~ is used the Linux user's home path will be used. If the path begins
with a / character, it will be interpreted as an absolute Linux path.
Otherwise, the value must be an absolute Windows path.
--distribution, -d <DistroName>
Run the specified distribution.
--distribution-id <DistroGuid>
Run the specified distribution ID.
--user, -u <UserName>
Run as the specified user.
--system
Launches a shell for the system distribution.
Arguments for managing Windows Subsystem for Linux:
--help
Display usage information.
--debug-shell
Open a WSL2 debug shell for diagnostics purposes.
--install [Distro] [Options...]
Install a Windows Subsystem for Linux distribution.
For a list of valid distributions, use 'wsl.exe --list --online'.
Options:
--enable-wsl1
Enable WSL1 support.
--fixed-vhd
Create a fixed-size disk to store the distribution.
--from-file <Path>
Install a distribution from a local file.
--legacy
Use the legacy distribution manifest.
--location <Location>
Set the install path for the distribution.
--name <Name>
Set the name of the distribution.
--no-distribution
Only install the required optional components, does not install a distribution.
--no-launch, -n
Do not launch the distribution after install.
--version <Version>
Specifies the version to use for the new distribution.
--vhd-size <MemoryString>
Specifies the size of the disk to store the distribution.
--web-download
Download the distribution from the internet instead of the Microsoft Store.
--manage <Distro> <Options...>
Changes distro specific options.
Options:
--move <Location>
Move the distribution to a new location.
--set-sparse, -s <true|false>
Set the VHD of distro to be sparse, allowing disk space to be automatically reclaimed.
--set-default-user <Username>
Set the default user of the distribution.
--resize <MemoryString>
Resize the disk of the distribution to the specified size.
--mount <Disk>
Attaches and mounts a physical or virtual disk in all WSL 2 distributions.
Options:
--vhd
Specifies that <Disk> refers to a virtual hard disk.
--bare
Attach the disk to WSL2, but don't mount it.
--name <Name>
Mount the disk using a custom name for the mountpoint.
--type <Type>
Filesystem to use when mounting a disk, if not specified defaults to ext4.
--options <Options>
Additional mount options.
--partition <Index>
Index of the partition to mount, if not specified defaults to the whole disk.
--set-default-version <Version>
Changes the default install version for new distributions.
--shutdown
Immediately terminates all running distributions and the WSL 2
lightweight utility virtual machine.
Options:
--force
Terminate the WSL 2 virtual machine even if an operation is in progress. Can cause data loss.
--status
Show the status of Windows Subsystem for Linux.
--unmount [Disk]
Unmounts and detaches a disk from all WSL2 distributions.
Unmounts and detaches all disks if called without argument.
--uninstall
Uninstalls the Windows Subsystem for Linux package from this machine.
--update
Update the Windows Subsystem for Linux package.
Options:
--pre-release
Download a pre-release version if available.
--version, -v
Display version information.
Arguments for managing distributions in Windows Subsystem for Linux:
--export <Distro> <FileName> [Options]
Exports the distribution to a tar file.
The filename can be - for stdout.
Options:
--format <Format>
Specifies the export format. Supported values: tar, tar.gz, tar.xz, vhd.
--import <Distro> <InstallLocation> <FileName> [Options]
Imports the specified tar file as a new distribution.
The filename can be - for stdin.
Options:
--version <Version>
Specifies the version to use for the new distribution.
--vhd
Specifies that the provided file is a .vhd or .vhdx file, not a tar file.
This operation makes a copy of the VHD file at the specified install location.
--import-in-place <Distro> <FileName>
Imports the specified VHD file as a new distribution.
This virtual hard disk must be formatted with the ext4 filesystem type.
--list, -l [Options]
Lists distributions.
Options:
--all
List all distributions, including distributions that are
currently being installed or uninstalled.
--running
List only distributions that are currently running.
--quiet, -q
Only show distribution names.
--verbose, -v
Show detailed information about all distributions.
--online, -o
Displays a list of available distributions for install with 'wsl.exe --install'.
--set-default, -s <Distro>
Sets the distribution as the default.
--set-version <Distro> <Version>
Changes the version of the specified distribution.
--terminate, -t <Distro>
Terminates the specified distribution.
--unregister <Distro>
Unregisters the distribution and deletes the root filesystem.</value>
<comment>{Locked="--exec,"}{Locked="--shell-type "}{Locked="--cd "}{Locked="--distribution,"}{Locked="--distribution-id "}{Locked="--user,"}{Locked="--system
"}{Locked="--help
"}{Locked="--debug-shell
"}{Locked="--install "}{Locked="--list "}{Locked="--online'"}{Locked="--enable-wsl1
"}{Locked="--fixed-vhd
"}{Locked="--from-file "}{Locked="--legacy
"}{Locked="--location "}{Locked="--name "}{Locked="--no-distribution
"}{Locked="--no-launch,"}{Locked="--version "}{Locked="--vhd-size "}{Locked="--web-download
"}{Locked="--manage "}{Locked="--move "}{Locked="--set-sparse,"}{Locked="--set-default-user "}{Locked="--resize "}{Locked="--mount "}{Locked="--vhd
"}{Locked="--bare
"}{Locked="--name "}{Locked="--type "}{Locked="--options "}{Locked="--partition "}{Locked="--set-default-version "}{Locked="--shutdown
"}{Locked="--force
"}{Locked="--status
"}{Locked="--unmount "}{Locked="--uninstall
"}{Locked="--update
"}{Locked="--pre-release
"}{Locked="--version,"}{Locked="--export "}{Locked="--format "}{Locked="--import "}{Locked="--version "}{Locked="--vhd
"}{Locked="--import-in-place "}{Locked="--list,"}{Locked="--all
"}{Locked="--running
"}{Locked="--quiet,"}{Locked="--verbose,"}{Locked="--online,"}{Locked="--install'"}{Locked="--set-default,"}{Locked="--set-version "}{Locked="--terminate,"}{Locked="--unregister "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePackageVersions" xml:space="preserve">
<value>WSL version: {}
Kernel version: {}
WSLg version: {}
MSRDC version: {}
Direct3D version: {}
DXCore version: {}
Windows version: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageBuildInfo" xml:space="preserve">
<value>MSBuild version: {}
Commit: {}
Build time: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageCustomKernelNotFound" xml:space="preserve">
<value>The custom kernel specified in {} was not found: '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageCustomKernelModulesNotFound" xml:space="preserve">
<value>The custom kernel modules VHD in {} was not found: '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageCustomSystemDistroError" xml:space="preserve">
<value>The custom system distribution specified in {} was not found or is not the correct format.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWslgUsage" xml:space="preserve">
<value>Copyright (c) Microsoft Corporation. All rights reserved.
For privacy information about this product please visit https://aka.ms/privacy.
Usage: wslg.exe [Argument] [Options...] [CommandLine]
Arguments:
--cd <Directory>
Sets the specified directory as the current working directory.
If ~ is used the Linux user's home path will be used. If the path begins
with a / character, it will be interpreted as an absolute Linux path.
Otherwise, the value must be an absolute Windows path.
--distribution, -d <Distro>
Run the specified distribution.
--user, -u <UserName>
Run as the specified user.
--shell-type <standard|login|none>
Execute the specified command with the provided shell type.
--help
Display usage information.
--
Pass the remaining command line as-is.</value>
<comment>{Locked="--cd "}{Locked="--distribution,"}{Locked="--user,"}{Locked="--shell-type "}{Locked="--help
"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePressAnyKeyToContinue" xml:space="preserve">
<value>Press any key to continue...</value>
</data>
<data name="MessageRequiredParameterMissing" xml:space="preserve">
<value>Argument {} is missing a required parameter.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageExportProgress" xml:space="preserve">
<value>Export in progress, this may take a few minutes.</value>
</data>
<data name="MessageImportProgress" xml:space="preserve">
<value>Import in progress, this may take a few minutes.</value>
</data>
<data name="GuiApplicationsDisabled" xml:space="preserve">
<value>GUI application support is disabled via {} or /etc/wsl.conf.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageCheckingForUpdates" xml:space="preserve">
<value>Checking for updates.</value>
</data>
<data name="MessageDistroOnlyAvailableFromStore" xml:space="preserve">
<value>This distribution is only available from the Microsoft Store.</value>
</data>
<data name="MessageWslMountNotSupportedOnArm" xml:space="preserve">
<value>wsl.exe --mount on ARM64 requires Windows version 27653 or newer.</value>
<comment>{Locked="--mount "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageUpdateNotNeeded" xml:space="preserve">
<value>The most recent version of Windows Subsystem for Linux is already installed.</value>
</data>
<data name="MessageUpdatingToVersion" xml:space="preserve">
<value>Updating Windows Subsystem for Linux to version: {}.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWslOptionalComponentRequired" xml:space="preserve">
<value>This application requires the Windows Subsystem for Linux Optional Component.
Install it by running: wsl.exe --install --no-distribution
The system may need to be restarted so the changes can take effect.</value>
<comment>{Locked="--install "}{Locked="--no-distribution
"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageRequiresFileExtension" xml:space="preserve">
<value>The specified file must have the {} file extension.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageRequiresFileExtensions" xml:space="preserve">
<value>The specified file must have the {} or {} file extension.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageVmSwitchNotFound" xml:space="preserve">
<value>The VmSwitch '{}' was not found. Available switches: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageVmSwitchNotSet" xml:space="preserve">
<value>Bridged networking requires wsl2.vmSwitch to be set.</value>
</data>
<data name="MessageCouldFetchDistributionList" xml:space="preserve">
<value>Failed to fetch the distribution list from '{}'. {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFailedToAttachDisk" xml:space="preserve">
<value>Failed to attach disk '{}' to WSL2: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFailedToResizeDisk" xml:space="preserve">
<value>Failed to resize disk.</value>
</data>
<data name="MessageNoValueFound" xml:space="preserve">
<value>No value found.</value>
</data>
<data name="MessageOsNotSupported" xml:space="preserve">
<value>Windows version {} does not support the packaged version of Windows Subsystem for Linux.
Install the required update via Windows update or via: {}
For information please visit https://aka.ms/wslinstall</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageAdministratorAccessRequiredForDebugShell" xml:space="preserve">
<value>Running the debug shell requires running wsl.exe as Administrator.</value>
</data>
<data name="MessageInstallProcessFailed" xml:space="preserve">
<value>The installation process for distribution '{}' failed with exit code: {}.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidGuid" xml:space="preserve">
<value>Invalid GUID format: '{}'</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidSection" xml:space="preserve">
<value>Invalid section name in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidKey" xml:space="preserve">
<value>Invalid key name in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigExpected" xml:space="preserve">
<value>Expected {} in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidEscape" xml:space="preserve">
<value>Invalid escaped character: '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigUnknownKey" xml:space="preserve">
<value>Unknown key '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidInteger" xml:space="preserve">
<value>Invalid integer value '{}' for key '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidIp" xml:space="preserve">
<value>Invalid IP value '{}' for key '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigInvalidBoolean" xml:space="preserve">
<value>Invalid boolean value '{}' for key '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageConfigMacAddress" xml:space="preserve">
<value>Invalid mac address '{}' for key '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFailedToOpenConfigFile" xml:space="preserve">
<value>Failed to open config file {}, {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWarningDuringStartup" xml:space="preserve">
<value>Errors occurred during WSL startup</value>
</data>
<data name="MessageSystemdUserSessionFailed" xml:space="preserve">
<value>Failed to start the systemd user session for '{}'. See journalctl for more details.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageOpenEventViewer" xml:space="preserve">
<value>Open EventViewer</value>
</data>
<data name="MessageDistributionNameNeeded" xml:space="preserve">
<value>This distribution doesn't contain a default name. Use --name to chose the distribution name.</value>
<comment>{Locked="--name "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageArgumentsNotValidTogether" xml:space="preserve">
<value>Arguments {} and {} can't be specified at same time.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageArgumentNotValidWithout" xml:space="preserve">
<value>Argument {} requires the {} argument.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidInstallDistributionName" xml:space="preserve">
<value>Invalid distribution name: "{}".</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageUsingLegacyDistribution" xml:space="preserve">
<value>Using legacy distribution registration. Consider using a tar based distribution instead.</value>
</data>
<data name="MessageLegacyDistributionVersionArgNotSupported" xml:space="preserve">
<value>Legacy distribution registrations do not support the --version argument.</value>
<comment>{Locked="--version "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDistributionOverridden" xml:space="preserve">
<value>The distribution "{}" is provided by an override manifest.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageHashMismatch" xml:space="preserve">
<value>The distribution hash doesn't match. Expected: {}, actual hash: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidHexString" xml:space="preserve">
<value>Invalid hex string: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageNotSupportedOnLegacyDistros" xml:space="preserve">
<value>'{}' is not supported when installing legacy distributions.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDistributionInstalled" xml:space="preserve">
<value>Distribution successfully installed. It can be launched via 'wsl.exe -d {}'</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageInvalidNumberString" xml:space="preserve">
<value>Invalid memory string '{}' for .wslconfig entry '{}' in {}:{}</value>
<comment>{FixedPlaceholder="{}"}{Locked=".wslconfig"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagedFailedToCreateSwapVhd" xml:space="preserve">
<value>Failed to create the swap disk in '{}': {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageNestedVirtualizationNotSupported" xml:space="preserve">
<value>Nested virtualization is not supported on this machine.</value>
</data>
<data name="MessageFailedToCreateNetworkEndpoint" xml:space="preserve">
<value>Failed to create network endpoint with address: '{}', assigned new address: '{}'</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFailedToCreateNetwork" xml:space="preserve">
<value>Failed to create virtual network with address range: '{}', created new network with range: '{}', {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageSafeModeEnabled" xml:space="preserve">
<value>SAFE MODE ENABLED - many features will be disabled</value>
</data>
<data name="MessageMirroredNetworkingNotSupportedReason" xml:space="preserve">
<value>Mirrored networking mode is not supported: {}.
Falling back to NAT networking.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageMirroredNetworkingNotSupportedKernel" xml:space="preserve">
<value>Linux Kernel version 5.10 or newer is required</value>
</data>
<data name="MessageMirroredNetworkingNotSupportedWindowsVersion" xml:space="preserve">
<value>Windows version {}.{} does not have the required features</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageHyperVFirewallNotSupported" xml:space="preserve">
<value>Hyper-V firewall is not supported</value>
</data>
<data name="MessageDnsTunnelingNotSupported" xml:space="preserve">
<value>DNS Tunneling is not supported</value>
</data>
<data name="MessageLocalhostForwardingNotSupportedMirroredMode" xml:space="preserve">
<value>The wsl2.localhostForwarding setting has no effect when using mirrored networking mode</value>
</data>
<data name="MessageHttpProxyChangeDetected" xml:space="preserve">
<value>An Http Proxy change has been detected on the host. Please restart WSL to apply the change.</value>
</data>
<data name="MessageProxyLocalhostSettingsDropped" xml:space="preserve">
<value>A localhost proxy configuration was detected but not mirrored into WSL. WSL in NAT mode does not support localhost proxies.</value>
</data>
<data name="MessageProxyV6SettingsDropped" xml:space="preserve">
<value>An IPv6 proxy configuration was detected but not mirrored into WSL. WSL in NAT mode does not support IPv6.</value>
</data>
<data name="MessageProxyLoopbackV6SettingsDropped" xml:space="preserve">
<value>A localhost IPv6 proxy configuration was detected but not mirrored into WSL. WSL does not support localhost IPv6 proxies.</value>
</data>
<data name="MessageProxyUnexpectedSettingsDropped" xml:space="preserve">
<value>An unexpected error occurred while attempting to resolve proxy settings, proxy settings were not mirrored into WSL.</value>
</data>
<data name="MessageRegistryError" xml:space="preserve">
<value>An error occurred accessing the registry. Path: '{}'. Error: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageLocalhostRelayFailed" xml:space="preserve">
<value>Failed to launch the localhost relay process. Error: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageVirtualMachinePlatformNotInstalled" xml:space="preserve">
<value>Failed to start virtual networking - please install the optional component Virtual Machine Platform by running: wsl.exe --install --no-distribution</value>
<comment>{Locked="--install "}{Locked="--no-distribution"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageNetworkInitializationFailedFallback2" xml:space="preserve">
<value>Failed to configure network (networkingMode {}), falling back to networkingMode {}.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageOptionalComponentInstallFailed" xml:space="preserve">
<value>Failed to enable Windows component '{}' (exit code {})</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFatalPluginError" xml:space="preserve">
<value>A fatal error was returned by plugin '{}'</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFatalPluginErrorWithMessage" xml:space="preserve">
<value>A fatal error was returned by plugin '{}'. Error message: '{}'</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePluginRequiresUpdate" xml:space="preserve">
<value>The plugin '{}' requires a newer version of WSL. Please run: wsl.exe --update</value>
<comment>{FixedPlaceholder="{}"}{Locked="--update"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageSettingOverriddenByPolicy" xml:space="preserve">
<value>The .wslconfig setting '{}' is disabled by the computer policy.</value>
<comment>{FixedPlaceholder="{}"}{Locked=".wslconfig"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageDebugShellDisabled" xml:space="preserve">
<value>The debug shell is disabled by the computer policy.</value>
</data>
<data name="MessageWSLMountDisabled" xml:space="preserve">
<value>wsl.exe --mount is disabled by the computer policy.</value>
<comment>{Locked="--mount "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageWSL1Disabled" xml:space="preserve">
<value>WSL1 is disabled by the computer policy.</value>
</data>
<data name="MessageUpgradeToWSL2" xml:space="preserve">
<value>Please run 'wsl.exe --set-version {} 2' to upgrade to WSL2.</value>
<comment>{FixedPlaceholder="{}"}{Locked="--set-version "}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageFinishMsiInstallation" xml:space="preserve">
<value>WSL is finishing an upgrade...</value>
</data>
<data name="MessageUpdateFailed" xml:space="preserve">
<value>Update failed (exit code: {}).</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageUninstallNoArguments" xml:space="preserve">
<value>{} does not take any arguments. To unregister a distribution, use {} instead.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageUninstallFailed" xml:space="preserve">
<value>Uninstall failed (exit code: {}).</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageSeeLogFile" xml:space="preserve">
<value>Log file: {}</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagedFailedToRemoveMsix" xml:space="preserve">
<value>Failed to remove the MSIX package (error: {}).</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagedFailedToInstallMsix" xml:space="preserve">
<value>Failed to install the MSIX package (error: {}).</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageMissingOptionalComponents" xml:space="preserve">
<value>Optional components needed to run WSL are not installed.</value>
</data>
<data name="MessageInstallMissingOptionalComponents" xml:space="preserve">
<value>Install missing components.</value>
</data>
<data name="MessageInvalidDistributionTar" xml:space="preserve">
<value>The imported file is not a valid Linux distribution.</value>
</data>
<data name="MessagePressAnyKeyToExit" xml:space="preserve">
<value>Press any key to exit...</value>
</data>
<data name="MessageNewWslVersionAvailable" xml:space="preserve">
<value>A new version of Windows Subsystem for Linux is available.</value>
</data>
<data name="MessageUpdateToVersion" xml:space="preserve">
<value>Update to version {} or view its release notes below.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>