Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions localization/strings/en-US/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,34 @@ Install using 'wsl.exe {} <Distro>'.
<data name="MessageImportingDistribution" xml:space="preserve">
<value>Importing distribution</value>
</data>
<data name="MessagePortableDistroMounted" xml:space="preserve">
<value>Portable distribution '{}' successfully mounted from '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePortableDistroMountFailed" xml:space="preserve">
<value>Failed to mount portable distribution from '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePortableDistroUnmounted" xml:space="preserve">
<value>Portable distribution '{}' successfully unmounted.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessageNotPortableDistro" xml:space="preserve">
<value>Distribution '{}' is not a portable distribution.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePortableDistroCreated" xml:space="preserve">
<value>Portable distribution '{}' created successfully at '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePortableDistroCreationFailed" xml:space="preserve">
<value>Failed to create portable distribution at '{}'.</value>
<comment>{FixedPlaceholder="{}"}Command line arguments, file names and string inserts should not be translated</comment>
</data>
<data name="MessagePortablePathNotRemovable" xml:space="preserve">
<value>Portable path must be on removable media: {}&#xA;Use the --allow-fixed flag to allow portable distributions on fixed drives for development/testing.</value>
<comment>{FixedPlaceholder="{}"}{Locked="--allow-fixed "}Command line arguments, file names and string inserts should not be translated</comment>
</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>
Expand Down
2 changes: 2 additions & 0 deletions src/windows/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ set(SOURCES
helpers.cpp
interop.cpp
ExecutionContext.cpp
PortableDistribution.cpp
socket.cpp
hvsocket.cpp
Localization.cpp
Expand Down Expand Up @@ -69,6 +70,7 @@ set(HEADERS
HandleConsoleProgressBar.h
interop.hpp
ExecutionContext.h
PortableDistribution.h
socket.hpp
hvsocket.hpp
LxssMessagePort.h
Expand Down
Loading