Merge branch 'rel/1.0.0' into dev/mlorbe/UpdateCSharpWebTemplatesForSdkAttribute

This commit is contained in:
Piotr Puszkiewicz 2016-12-04 15:17:33 -08:00 committed by GitHub
commit 53ba8070e4
133 changed files with 17796 additions and 52 deletions

View file

@ -3,7 +3,10 @@
<ItemGroup>
<!-- CLI cannot use the latest SDK until we move away from SDK PackageRef -->
<BundledSdk Include="Microsoft.Net.Sdk" Version="1.0.0-alpha-20161202-1" />
<BundledSdk Include="NuGet.Build.Tasks.Pack" Version="4.0.0-rc2" />
<BundledSdk Include="Microsoft.Net.Sdk" Version="1.0.0-alpha-20161203-1" />
<BundledSdk Include="Microsoft.NET.Sdk.Web" Version="$(CLI_WEBSDK_Version)" />
<BundledSdk Include="Microsoft.NET.Sdk.Publish" Version="$(CLI_WEBSDK_Version)" />
<BundledSdk Include="Microsoft.NET.Sdk.Web.ProjectSystem" Version="$(CLI_WEBSDK_Version)" />
</ItemGroup>
</Project>

View file

@ -6,8 +6,8 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
current_user=$(whoami)
if [ $current_user != "root" ]; then
current_userid=$(id -u)
if [ $current_userid -ne 0 ]; then
echo "$(basename "$0") uninstallation script requires superuser privileges to run"
exit 1
fi
@ -24,16 +24,16 @@ is_dotnet_host_installed(){
}
is_dotnet_host_installed
[ "$?" -eq 0 ] && echo "Unable to find dotnet installation to remove." \
[ "$?" -eq 0 ] && echo "Unable to find dotnet installation to remove." >&2 \
&& exit 0
remove_all
[ "$?" -ne 0 ] && echo "Failed to remove dotnet packages." && exit 1
[ "$?" -ne 0 ] && echo "Failed to remove dotnet packages." >&2 && exit 1
is_dotnet_host_installed
[ "$?" -ne 0 ] && \
echo "dotnet package removal succeeded but appear to still be installed. Please file an issue at https://github.com/dotnet/cli" && \
echo "dotnet package removal succeeded but appear to still be installed. Please file an issue at https://github.com/dotnet/cli" >&2 && \
exit 1
echo "dotnet package removal succeeded."
echo "dotnet package removal succeeded." >&2
exit 0

View file

@ -6,9 +6,9 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
current_user=$(whoami)
if [ $current_user != "root" ]; then
echo "$(basename "$0") uninstallation script requires superuser privileges to run"
current_userid=$(id -u)
if [ $current_userid -ne 0 ]; then
echo "$(basename "$0") uninstallation script requires superuser privileges to run" >&2
exit 1
fi
@ -22,17 +22,17 @@ remove_dotnet_pkgs(){
for i in "${installed_pkgs[@]}"
do
echo "Removing dotnet component - \"$i\""
echo "Removing dotnet component - \"$i\"" >&2
pkgutil --force --forget "$i"
done
}
remove_dotnet_pkgs
[ "$?" -ne 0 ] && echo "Failed to remove dotnet packages." && exit 1
[ "$?" -ne 0 ] && echo "Failed to remove dotnet packages." >&2 && exit 1
echo "Deleting install root - $dotnet_install_root"
rm -r "$dotnet_install_root"
rm "$dotnet_path_file"
echo "Deleting install root - $dotnet_install_root" >&2
rm -rf "$dotnet_install_root"
rm -f "$dotnet_path_file"
echo "dotnet packages removal succeeded."
echo "dotnet packages removal succeeded." >&2
exit 0

View file

@ -248,14 +248,12 @@ namespace Microsoft.DotNet.Cli.Utils
try
{
File.Copy(tempDepsFile, depsPath);
File.Move(tempDepsFile, depsPath);
}
catch (Exception e)
{
Reporter.Verbose.WriteLine($"unable to generate deps.json, it may have been already generated: {e.Message}");
}
finally
{
try
{
File.Delete(tempDepsFile);

View file

@ -40,6 +40,11 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
var target = CreateTarget(csproj, scriptSetName);
foreach (var scriptCommand in scriptCommands)
{
if (CommandIsNotNeededInMSBuild(scriptCommand))
{
continue;
}
AddExec(target, FormatScriptCommand(scriptCommand));
}
@ -79,6 +84,11 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
return string.Join(" ", scriptArguments);
}
private bool CommandIsNotNeededInMSBuild(string command)
{
return command.Contains("dotnet publish-iis");
}
private bool IsPathRootedForAnyOS(string path)
{
return path.StartsWith("/") || path.Substring(1).StartsWith(":\\");

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-build/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-build/LocalizableStrings.resx" />
<trans-unit id="AppDescription">
<source>Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</source>
<target state="new">Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file.</target>
<note></note>
</trans-unit>
<trans-unit id="AppFullName">
<source>.NET Builder</source>
<target state="new">.NET Builder</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionName">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionName">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="NoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only build the root project</source>
<target state="new">Set this flag to ignore project to project references and only build the root project</target>
<note></note>
</trans-unit>
<trans-unit id="NoIncrementialOptionDescription">
<source>Set this flag to turn off incremental build</source>
<target state="new">Set this flag to turn off incremental build</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionName">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgumentValueName">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to build for. The default is to build a portable application.</source>
<target state="new">Target runtime to build for. The default is to build a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionName">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionName">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-clean/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Clean Command</source>
<target state="new">.NET Clean Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command to clean previously generated build outputs.</source>
<target state="new">Command to clean previously generated build outputs.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgProjDescription">
<source>The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which the build outputs have been placed</source>
<target state="new">Directory in which the build outputs have been placed</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CmdFrameworkDescription">
<source>Clean a specific framework</source>
<target state="new">Clean a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfiguration">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigurationDescription">
<source>Clean a specific configuration</source>
<target state="new">Clean a specific configuration</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-pack/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>pack</source>
<target state="new">pack</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>pack for msbuild</source>
<target state="new">pack for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDir">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="CmdOutputDirDescription">
<source>Directory in which to place outputs</source>
<target state="new">Directory in which to place outputs</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoBuildOptionDescription">
<source>Do not build project before packing</source>
<target state="new">Do not build project before packing</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSymbolsDescription">
<source>Include PDBs along with the DLLs in the output folder</source>
<target state="new">Include PDBs along with the DLLs in the output folder</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIncludeSourceDescription">
<source>Include PDBs and source files. Source files go into the src folder in the resulting nuget package</source>
<target state="new">Include PDBs and source files. Source files go into the src folder in the resulting nuget package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfig">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffix">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="CmdVersionSuffixDescription">
<source>Defines what `*` should be replaced with in version field in project.json</source>
<target state="new">Defines what `*` should be replaced with in version field in project.json</target>
<note></note>
</trans-unit>
<trans-unit id="CmdServiceableDescription">
<source>Set the serviceable flag in the package</source>
<target state="new">Set the serviceable flag in the package</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentProject">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>The project to pack, defaults to the project file in the current directory. Can be a path to any project file</source>
<target state="new">The project to pack, defaults to the project file in the current directory. Can be a path to any project file</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-publish/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Publisher</source>
<target state="new">.NET Publisher</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Publisher for the .NET Platform</source>
<target state="new">Publisher for the .NET Platform</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgument">
<source>PROJECT</source>
<target state="new">PROJECT</target>
<note></note>
</trans-unit>
<trans-unit id="ProjectArgDescription">
<source>The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</source>
<target state="new">The MSBuild project file to publish. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOption">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="FrameworkOptionDescription">
<source>Target framework to publish for</source>
<target state="new">Target framework to publish for</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOption">
<source>RUNTIME_IDENTIFIER</source>
<target state="new">RUNTIME_IDENTIFIER</target>
<note></note>
</trans-unit>
<trans-unit id="RuntimeOptionDescription">
<source>Target runtime to publish for. The default is to publish a portable application.</source>
<target state="new">Target runtime to publish for. The default is to publish a portable application.</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOption">
<source>OUTPUT_DIR</source>
<target state="new">OUTPUT_DIR</target>
<note></note>
</trans-unit>
<trans-unit id="OutputOptionDescription">
<source>Path in which to publish the app</source>
<target state="new">Path in which to publish the app</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOption">
<source>CONFIGURATION</source>
<target state="new">CONFIGURATION</target>
<note></note>
</trans-unit>
<trans-unit id="ConfigurationOptionDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOption">
<source>VERSION_SUFFIX</source>
<target state="new">VERSION_SUFFIX</target>
<note></note>
</trans-unit>
<trans-unit id="VersionSuffixOptionDescription">
<source>Defines the value for the $(VersionSuffix) property in the project</source>
<target state="new">Defines the value for the $(VersionSuffix) property in the project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore-projectjson/LocalizableStrings.resx" />
<trans-unit id="AddMinimal">
<source>minimal</source>
<target state="new">minimal</target>
<note></note>
</trans-unit>
<trans-unit id="AddRestore">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hans" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="zh-Hant" original="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-restore/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>restore</source>
<target state="new">restore</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>restore for msbuild</source>
<target state="new">restore for msbuild</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgument">
<source>root</source>
<target state="new">root</target>
<note></note>
</trans-unit>
<trans-unit id="CmdArgumentDescription">
<source>Optional path to a project file or MSBuild arguments.</source>
<target state="new">Optional path to a project file or MSBuild arguments.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOption">
<source>source</source>
<target state="new">source</target>
<note></note>
</trans-unit>
<trans-unit id="CmdSourceOptionDescription">
<source>Specifies a NuGet package source to use during the restore.</source>
<target state="new">Specifies a NuGet package source to use during the restore.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOption">
<source>packagesDirectory</source>
<target state="new">packagesDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="CmdPackagesOptionDescription">
<source>Directory to install packages in.</source>
<target state="new">Directory to install packages in.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdDisableParallelOptionDescription">
<source>Disables restoring multiple projects in parallel.</source>
<target state="new">Disables restoring multiple projects in parallel.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOption">
<source>file</source>
<target state="new">file</target>
<note></note>
</trans-unit>
<trans-unit id="CmdConfigFileOptionDescription">
<source>The NuGet configuration file to use.</source>
<target state="new">The NuGet configuration file to use.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoCacheOptionDescription">
<source>Do not cache packages and http requests.</source>
<target state="new">Do not cache packages and http requests.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdIgnoreFailedSourcesOptionDescription">
<source>Treat package source failures as warnings.</source>
<target state="new">Treat package source failures as warnings.</target>
<note></note>
</trans-unit>
<trans-unit id="CmdNoDependenciesOptionDescription">
<source>Set this flag to ignore project to project references and only restore the root project</source>
<target state="new">Set this flag to ignore project to project references and only restore the root project</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="cs" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="de" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="es" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="fr" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="it" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ja" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pl" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ru" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

View file

@ -0,0 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="tr" original="src/dotnet/commands/dotnet-run/LocalizableStrings.resx">
<body>
<group id="src/dotnet/commands/dotnet-run/LocalizableStrings.resx" />
<trans-unit id="AppFullName">
<source>.NET Run Command</source>
<target state="new">.NET Run Command</target>
<note></note>
</trans-unit>
<trans-unit id="AppDescription">
<source>Command used to run .NET apps</source>
<target state="new">Command used to run .NET apps</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionConfigurationDescription">
<source>Configuration under which to build</source>
<target state="new">Configuration under which to build</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFramework">
<source>FRAMEWORK</source>
<target state="new">FRAMEWORK</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionFrameworkDescription">
<source>Compile a specific framework</source>
<target state="new">Compile a specific framework</target>
<note></note>
</trans-unit>
<trans-unit id="CommandOptionProjectDescription">
<source>The path to the project file to run (defaults to the current directory if there is only one project).</source>
<target state="new">The path to the project file to run (defaults to the current directory if there is only one project).</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandException">
<source>The build failed. Please fix the build errors and run again.</source>
<target state="new">The build failed. Please fix the build errors and run again.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandMSBuildExtensionsPath">
<source>MSBuildExtensionsPath</source>
<target state="new">MSBuildExtensionsPath</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandConfiguration">
<source>Configuration</source>
<target state="new">Configuration</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandTargetFramework">
<source>TargetFramework</source>
<target state="new">TargetFramework</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandProjectInstance">
<source>RunCommand</source>
<target state="new">RunCommand</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandOutputType">
<source>OutputType</source>
<target state="new">OutputType</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun1">
<source>Unable to run your project.</source>
<target state="new">Unable to run your project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun2">
<source>Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</source>
<target state="new">Please ensure you have a runnable project type and ensure 'dotnet run' supports this project.</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandExceptionUnableToRun3">
<source>The current OutputType is </source>
<target state="new">The current OutputType is </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunArguments">
<source>RunArguments</source>
<target state="new">RunArguments</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandRunWorkingDirectory">
<source>RunWorkingDirectory</source>
<target state="new">RunWorkingDirectory</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException1">
<source>Couldn't find a project to run. Ensure a project exists in </source>
<target state="new">Couldn't find a project to run. Ensure a project exists in </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException2">
<source>Or pass the path to the project using --project</source>
<target state="new">Or pass the path to the project using --project</target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException3">
<source>Specify which project file to use because this </source>
<target state="new">Specify which project file to use because this </target>
<note></note>
</trans-unit>
<trans-unit id="RunCommandInvalidOperationException4">
<source>contains more than one project file.</source>
<target state="new">contains more than one project file.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>

Some files were not shown because too many files have changed in this diff Show more