diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs new file mode 100755 index 000000000..0e2502ce3 --- /dev/null +++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Program.cs @@ -0,0 +1,24 @@ +using System; +using System.Linq; +using System.Reflection; + +namespace ConsoleApplication +{ + public class Program + { + public static void Main(string[] args) + { + var thisAssembly = typeof(Program).GetTypeInfo().Assembly; + var resources = from resourceName in thisAssembly.GetManifestResourceNames() + select resourceName; + + if (resources.Count() > 1) + { + throw new Exception($"{resources.Count()} found in the assembly. Was expecting only 1."); + } + + var resourceNames = string.Join(",", resources); + Console.WriteLine($"{resources.Count()} Resources Found: {resourceNames}"); + } + } +} diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx new file mode 100644 index 000000000..1f24a372f --- /dev/null +++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/Resources/Strings.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Hello World! + + \ No newline at end of file diff --git a/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json b/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json new file mode 100755 index 000000000..3c89bd6fb --- /dev/null +++ b/TestAssets/TestProjects/TestAppWithEmbeddedResources/project.json @@ -0,0 +1,20 @@ +{ + "version": "1.0.0-*", + "buildOptions": { + "debugType": "portable", + "emitEntryPoint": true, + "embed": [ "Resources/*.resx" ] + }, + "dependencies": {}, + "frameworks": { + "netcoreapp1.0": { + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + } + }, + "imports": "dnxcore50" + } + } +} diff --git a/build_projects/dotnet-cli-build/DotNetTest.cs b/build_projects/dotnet-cli-build/DotNetTest.cs index c11ca4494..fd10ed7ea 100644 --- a/build_projects/dotnet-cli-build/DotNetTest.cs +++ b/build_projects/dotnet-cli-build/DotNetTest.cs @@ -57,7 +57,7 @@ namespace Microsoft.DotNet.Cli.Build { if (NoBuild) { - return "--noBuild"; + return "--no-build"; } return null; diff --git a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs index 78a9592b1..1f85b8863 100644 --- a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs +++ b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs @@ -150,7 +150,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules }; private readonly string[] DefaultEmptyExcludeOption = new string[0]; - + private readonly ProjectPropertyGroupElement _configurationPropertyGroup; private readonly ProjectItemGroupElement _configurationItemGroup; private readonly CommonCompilerOptions _configurationBuildOptions; @@ -419,13 +419,17 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules private IncludeContext GetEmbedIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory) { // Defaults from src/Microsoft.DotNet.ProjectModel/ProjectReader.cs #L602 - return compilerOptions.EmbedInclude ?? + var embedIncludeContext = compilerOptions.EmbedInclude ?? new IncludeContext( projectDirectory, "embed", new JObject(), ProjectFilesCollection.DefaultResourcesBuiltInPatterns, DefaultEmptyExcludeOption); + + embedIncludeContext.BuiltInsExclude.Add("@(EmbeddedResource)"); + + return embedIncludeContext; } private IncludeContext GetCopyToOutputIncludeContext(CommonCompilerOptions compilerOptions, string projectDirectory) diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf index 2627f6984..b9a41fd82 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.cs.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Příkaz rozhraní .NET pro přidání odkazu mezi projekty (p2p) + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Příkaz pro přidání odkazu mezi projekty (p2p) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Přidávané odkazy mezi projekty + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Přidat odkaz jen při zaměření na určitou platformu + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf index 4cd860519..a3b736e71 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.de.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + .NET-Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise) + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Befehl zum Hinzufügen von Projekt-zu-Projekt-Verweisen (P2P-Verweise) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Hinzuzufügender Projekt-zu-Projekt-Verweis + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Verweis nur bei Verwendung eines bestimmten Zielframeworks hinzufügen + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf index e2d402a8e..392765396 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.es.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Comando de .NET para agregar una referencia de proyecto a proyecto (p2p) + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Comando para agregar una referencia de proyecto a proyecto (p2p) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Referencias de proyecto a proyecto para agregar + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Se agrega una referencia solo cuando hay una plataforma de destino específica + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf index 4e7f5db29..1a5918a4c 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.fr.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Commande d'ajout d'une référence projet à projet (p2p) .NET + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Commande permettant d'ajouter une référence projet à projet (p2p) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Références projet à projet à ajouter + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Ajouter une référence uniquement en cas de ciblage d'un framework spécifique + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf index 5337494f2..c9cc49db6 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.it.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Comando Aggiungi riferimento P2P (da progetto a progetto) .NET + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Comando per aggiungere il riferimento P2P (da progetto a progetto) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Riferimenti P2P (da progetto a progetto) da aggiungere + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Aggiunge il riferimento solo se destinato a un framework specifico + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf index 28174fe64..d3bd69683 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ja.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + .NET Add Project to Project (p2p) 参照コマンド + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + project to project (p2p) 参照を追加するコマンド + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 追加する Project to project 参照 + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + 特定のフレームワークを対象とする場合にのみ参照を追加する + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf index 706fddd29..57dd042e9 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ko.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + .NET p2p(프로젝트 간) 참조 추가 명령 + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + p2p(프로젝트 간) 참조를 추가하는 명령입니다. + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 추가할 프로젝트 간 참조입니다. + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + 특정 프레임워크를 대상으로 지정할 때에만 참조를 추가합니다. + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf index 6bfb6efc2..9ad2c9560 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pl.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Polecenie dodawania odwołania między projektami (p2p) dla platformy .NET + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Polecenie służące do dodania odwołania między projektami (p2p) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Odwołania między projektami, które mają zostać dodane + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Dodaj odwołanie tylko w przypadku określenia konkretnej platformy docelowej + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf index bac22edb0..01efe784e 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.pt-BR.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Comando Add Project to Project (p2p) reference do .NET + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Comando para adicionar a referência p2p (projeto para projeto) + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Referências de projeto para projeto a serem adicionadas + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Adicionar referência apenas ao visar uma estrutura específica + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf index b229a7fb2..0d8242a08 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.ru.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + Команда .NET "Добавить ссылку проекта на проект (p2p)" + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Команда для добавления ссылки проекта на проект (p2p). + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Добавляемые ссылки проекта на проект. + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Добавлять ссылку только при выборе конкретной целевой платформы + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf index 1ab0fae60..11c57b56b 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.tr.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + .NET Add Project to Project (p2p) reference Komutu + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + Projeden projeye (p2p) başvuru ekleme komutu + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Eklenecek olan, projeden projeye başvurular + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + Yalnızca belirli bir çerçeveyi hedeflerken başvuru ekler + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf index 587a0426e..6bba2972e 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.xlf @@ -3,45 +3,21 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - + Command to add project to project (p2p) reference - + Project to project references to add - - - - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - + Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - - - - Project - + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf index dfd26c78b..d48ce16ec 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hans.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + 用于项目到项目(p2p)引用的 .NET 添加命令 + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + 用于添加项目到项目(p2p)引用的命令 + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 要添加的项目到项目引用 + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + 仅针对特定框架添加引用 + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf index 621b24f49..744433ce7 100644 --- a/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-add/dotnet-add-p2p/xlf/LocalizableStrings.zh-Hant.xlf @@ -3,55 +3,25 @@ - - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - - .NET Add Project to Project (p2p) reference Command - .NET Add Project to Project (p2p) reference Command - + .NET 新增專案對專案 (p2p) 參考命令 + Command to add project to project (p2p) reference - Command to add project to project (p2p) reference - + 用以新增專案對專案 (p2p) 參考的命令 + Project to project references to add - Project to project references to add - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 要新增的專案對專案參考 + Add reference only when targetting a specific framework - Add reference only when targetting a specific framework - - - - Add reference even if it does not exist, do not convert paths to relative - Add reference even if it does not exist, do not convert paths to relative - - - - Project - Project - + 只有在以特定架構為目標時才新增參考 + diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf new file mode 100644 index 000000000..feebe2f49 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.cs.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf new file mode 100644 index 000000000..27b0240de --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.de.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf new file mode 100644 index 000000000..b9b58dfab --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.es.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf new file mode 100644 index 000000000..0abdb2da2 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.fr.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf new file mode 100644 index 000000000..b59b600ff --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.it.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf new file mode 100644 index 000000000..5820d4f80 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ja.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf new file mode 100644 index 000000000..673951d0a --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ko.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf new file mode 100644 index 000000000..c1daed128 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pl.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf new file mode 100644 index 000000000..4f8cab7d3 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.pt-BR.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf new file mode 100644 index 000000000..cc856b0cc --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.ru.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf new file mode 100644 index 000000000..0310d765e --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.tr.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf new file mode 100644 index 000000000..081e991a9 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.xlf @@ -0,0 +1,20 @@ + + + + + + + .NET Add Project to Solution Command + + + + Command to add project to solution + + + + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf new file mode 100644 index 000000000..e9774305c --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hans.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf new file mode 100644 index 000000000..2f6c29a49 --- /dev/null +++ b/src/dotnet/commands/dotnet-add/dotnet-add-proj/xlf/LocalizableStrings.zh-Hant.xlf @@ -0,0 +1,23 @@ + + + + + + + .NET Add Project to Solution Command + .NET Add Project to Solution Command + + + + Command to add project to solution + Command to add project to solution + + + + Projects to add to solution + Projects to add to solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf index 2f34d6760..342ca5cea 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.cs.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Příkaz rozhraní .NET pro přidání + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.de.xlf index fcce1f214..faf710610 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.de.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET-Befehl "Add" + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.es.xlf index 84a1fee8c..dd1ad07ef 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.es.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Comando Add de .NET + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.fr.xlf index 2a18d7a13..038ee104f 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.fr.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Commande d'ajout .NET + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.it.xlf index fa8e43791..ec7ed91fb 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.it.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Comando Aggiungi .NET + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ja.xlf index 43b612957..7d687b454 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ja.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET Add コマンド + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ko.xlf index 6b3c84287..6e8e8c394 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ko.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET 추가 명령 + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pl.xlf index 0d3e59c99..007914a3b 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pl.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Polecenie add platformy .NET + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pt-BR.xlf index cf0cc60b0..831276165 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.pt-BR.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Comando Add do .NET + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ru.xlf index a58edc93d..9640a23c4 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.ru.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + Команда .NET "Добавить" + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.tr.xlf index 3e9739b16..077deea97 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.tr.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET Add Komutu + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.xlf index df10f7dd6..598de6d0e 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.xlf @@ -5,43 +5,7 @@ .NET Add Command - - - - Usage - - - - Options - - - - Show help information - - - - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - - - - Add project to project (p2p) reference to a project - + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hans.xlf index cb08d9955..090f90688 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET 添加命令 + diff --git a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hant.xlf index 696b36164..53c07eaec 100644 --- a/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-add/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,53 +5,8 @@ .NET Add Command - .NET Add Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Add project to project (p2p) reference to a project - Add project to project (p2p) reference to a project - + .NET 新增命令 + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.cs.xlf index 733834265..cc619c881 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.cs.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Tvůrce pro platformu .NET Deleguje do MSBuildu cíl buildu v souboru projektu. + .NET Builder - .NET Builder - + .NET Builder + Configuration under which to build - Configuration under which to build - + Konfigurace použitá k sestavení + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + Umožňuje kompilovat určitou platformu. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Když nastavíte tento příznak, ignorují se odkazy mezi projekty a sestaví se jenom kořenový projekt. + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Když nastavíte tento příznak, vypnete přírůstkové sestavení. + Directory in which to place outputs - Directory in which to place outputs - + Adresář pro ukládání výstupů + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + Soubor projektu MSBuildu určený k sestavení. Pokud není zadaný soubor projektu, nástroj MSBuild vyhledá v aktuálním pracovním adresáři soubor s příponou, která končí na „proj“, a použije ho. + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Cílový modul runtime pro sestavení. Výchozí možnost je sestavit přenosnou aplikaci. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Definuje hodnotu vlastnosti $(VersionSuffix) v projektu. + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.de.xlf index 402787956..6cc45aa89 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.de.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Generator für die .NET-Plattform. Delegiert an das MSBuild-Ziel "Build" in der Projektdatei. + .NET Builder - .NET Builder - + .NET-Generator + Configuration under which to build - Configuration under which to build - + Konfiguration für den Buildvorgang + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + Bestimmtes Framework kompilieren + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Legen Sie dieses Flag fest, um Projekt-zu-Projekt-Verweise zu ignorieren und nur das Stammprojekt zu erstellen. + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Legen Sie dieses Flag fest, um die inkrementelle Erstellung zu deaktivieren. + Directory in which to place outputs - Directory in which to place outputs - + Verzeichnis für Ausgaben + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + Die zu erstellende MSBuild-Projektdatei. Wenn keine Projektdatei angegeben ist, durchsucht MSBuild das aktuelle Arbeitsverzeichnis nach einer Datei mit einer Dateierweiterung, die auf "proj" endet, und verwendet diese Datei. + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Ziellaufzeit für die Erstellung. Standardmäßig wird eine portable Anwendung erstellt. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Definiert den Wert für die Eigenschaft "$(VersionSuffix)" im Projekt. + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.es.xlf index 9c5f5f237..9b95eceb5 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.es.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Generador para la plataforma .NET. Delega en el destino “Build” de MSBuild del archivo del proyecto. + .NET Builder - .NET Builder - + Generador para .NET + Configuration under which to build - Configuration under which to build - + Configuración para la compilación + CONFIGURATION - CONFIGURATION - + CONFIGURACIÓN + Compile a specific framework - Compile a specific framework - + Compilar una plataforma específica + FRAMEWORK - FRAMEWORK - + PLATAFORMA + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Establezca esta marca para omitir las referencias de proyecto a proyecto y compilar solo el proyecto raíz + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Establezca esta marca para desactivar una compilación incremental + Directory in which to place outputs - Directory in which to place outputs - + Directorio donde se ponen los archivos de salida + OUTPUT_DIR - OUTPUT_DIR - + DIRECTORIO_DE_SALIDA + 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. - 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. - + Archivo del proyecto de MSBuild para compilar. Si no se especifica un archivo del proyecto, MSBuild busca en el directorio de trabajo actual un archivo que tenga una extensión de archivo que acabe en “proj” y utiliza ese archivo. + PROJECT - PROJECT - + PROYECTO + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Entorno de tiempo de ejecución para el que se compila. La opción predeterminada es compilar una aplicación móvil. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + ID_DEL_ENTORNO_DE_TIEMPO_DE_EJECUCIÓN + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Define el valor para la propiedad $(VersionSuffix) del proyecto + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIJO_DE_VERSIÓN + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.fr.xlf index 3f9ae79c0..3bf31875f 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.fr.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Générateur pour la plateforme .NET. Délègue à la cible 'Build' MSBuild dans le fichier projet. + .NET Builder - .NET Builder - + Générateur .NET + Configuration under which to build - Configuration under which to build - + Configuration sous laquelle générer la build + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + Compiler un framework spécifique + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Définir cet indicateur pour ignorer les références projet à projet et générer uniquement le projet racine + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Définir cet indicateur pour désactiver la génération incrémentielle + Directory in which to place outputs - Directory in which to place outputs - + Répertoire dans lequel placer les sorties + OUTPUT_DIR - OUTPUT_DIR - + RÉP_SORTIE + 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. - 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. - + Fichier projet MSBuild à générer. Si aucun fichier projet n'est spécifié, MSBuild recherche dans le répertoire de travail actif un fichier dont l'extension se termine par 'proj' et utilise ce dernier. + PROJECT - PROJECT - + PROJET + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Runtime cible de la génération. Par défaut, une application portable est générée. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTIFICATEUR_RUNTIME + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Définit la valeur de la propriété $(VersionSuffix) dans le projet + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFIXE_VERSION + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.it.xlf index ef51454f0..4d6e7acd8 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.it.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Generatore per la piattaforma .NET. Delegati per la destinazione 'Build' di MSBuild nel file di progetto. + .NET Builder - .NET Builder - + Generatore .NET + Configuration under which to build - Configuration under which to build - + Configurazione con cui eseguire la compilazione + CONFIGURATION - CONFIGURATION - + CONFIGURAZIONE + Compile a specific framework - Compile a specific framework - + Esegue la compilazione di un framework specifico + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Impostare questo flag per ignorare i riferimenti P2P (da progetto a progetto) e compilare solo il progetto radice + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Impostare questo flag per disattivare la compilazione incrementale + Directory in which to place outputs - Directory in which to place outputs - + Directory in cui inserire gli output + OUTPUT_DIR - OUTPUT_DIR - + DIR_OUTPUT + 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. - 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. - + File di progetto MSBuild da compilare. Se non si specifica un file di progetto, MSBuild cerca nella directory di lavoro corrente un file la cui estensione termina con `proj` e usa tale file. + PROJECT - PROJECT - + PROGETTO + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Runtime di destinazione per cui eseguire la compilazione. Per impostazione predefinita, viene compilata un'applicazione portatile. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTIFICATORE_RUNTIME + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Consente di definire il valore per la proprietà $(VersionSuffix) nel progetto + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFISSO_VERSIONE + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ja.xlf index 16230d156..996f5aa45 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ja.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + .NET Platform 用ビルダープロジェクト ファイル内の MSBuild 'Build' ターゲットへのデリゲート。 + .NET Builder - .NET Builder - + .NET Builder + Configuration under which to build - Configuration under which to build - + 構築する構成 + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + 特定のフレームワークをコンパイルする + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + project to project 参照を無視して、ルート プロジェクトのみを構築するには、このフラグを設定します + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + インクリメンタル ビルドを無効にするには、このフラグを設定します + Directory in which to place outputs - Directory in which to place outputs - + 出力を配置するディレクトリ + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + 構築する MSBuild プロジェクト ファイル。プロジェクト ファイルを指定しなかった場合、MSBuild は現在の作業ディレクトリの中から "proj" で終わるファイル拡張子を検索し、そのファイルを使用します。 + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + 構築用のターゲット ランタイム既定では、ポータブル アプリケーションを構築します。 + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + プロジェクトの $(VersionSuffix) プロパティの値を定義します。 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ko.xlf index 1f543b9cd..c402cf38a 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ko.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + .NET 플랫폼용 작성기입니다. 프로젝트 파일의 MSBuild '빌드' 대상에 위임합니다. + .NET Builder - .NET Builder - + .NET 작성기 + Configuration under which to build - Configuration under which to build - + 빌드할 구성입니다. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + 특정 프레임워크를 컴파일합니다. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + 프로젝트 간 참조를 무시하고 루트 프로젝트만 빌드하려면 이 플래그를 설정합니다. + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + 증분 빌드를 해제하려면 이 플래그를 설정합니다. + Directory in which to place outputs - Directory in which to place outputs - + 출력을 배치할 디렉터리입니다. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + 빌드할 MSBuild 프로젝트 파일입니다. 프로젝트 파일을 지정하지 않으면 MSBuild는 현재 작업 디렉터리에서 파일 확장명이 ‘proj’로 끝나는 파일을 찾아서 사용합니다. + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + 빌드할 대상 런타임입니다. 기본값은 이식 가능한 응용 프로그램을 빌드하는 것입니다. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 프로젝트에서 $(VersionSuffix) 속성의 값을 정의합니다. + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pl.xlf index 83083d7af..6706de2b6 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pl.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Konstruktor dla platformy .NET. Deleguje do docelowego elementu kompilacji programu MSBuild w pliku projektu. + .NET Builder - .NET Builder - + Konstruktor platformy .NET + Configuration under which to build - Configuration under which to build - + Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja + CONFIGURATION - CONFIGURATION - + KONFIGURACJA + Compile a specific framework - Compile a specific framework - + Skompiluj określoną platformę + FRAMEWORK - FRAMEWORK - + PLATFORMA + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Ustaw tę flagę, aby ignorować odwołania między projektami i skompilować tylko projekt główny + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Ustaw tę flagę, aby wyłączyć kompilację przyrostową + Directory in which to place outputs - Directory in which to place outputs - + Katalog, w którym mają zostać umieszczone dane wyjściowe + OUTPUT_DIR - OUTPUT_DIR - + KATALOG_WYJŚCIOWY + 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. - 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. - + Plik projektu programu MSBuild do skompilowania. Jeśli nie określono pliku projektu, program MSBuild wyszukuje w bieżącym katalogu roboczym plik, którego rozszerzenie kończy się na „proj”, i używa tego pliku. + PROJECT - PROJECT - + PROJEKT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Docelowe środowisko uruchomieniowe kompilacji. Opcją domyślną jest kompilacja aplikacji przenośnej. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTYFIKATOR_ŚRODOWISKA_URUCHOMIENIOWEGO + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Określa wartość właściwości $(VersionSuffix) w projekcie + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIKS_WERSJI + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pt-BR.xlf index 41b913d2d..508d9e12f 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.pt-BR.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Construtor para a Plataforma .NET. Delega para o destino “Build” do MSBuild no arquivo de projeto. + .NET Builder - .NET Builder - + Construtor do .NET + Configuration under which to build - Configuration under which to build - + Configuração sob a qual compilar + CONFIGURATION - CONFIGURATION - + CONFIGURAÇÃO + Compile a specific framework - Compile a specific framework - + Compilar uma estrutura específica + FRAMEWORK - FRAMEWORK - + ESTRUTURA + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Definir esse sinalizador para ignorar referências de projeto para projeto e compilar apenas o projeto raiz + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Definir esse sinalizador para desligar o build incremental + Directory in which to place outputs - Directory in which to place outputs - + Diretório no qual colocar as saídas + OUTPUT_DIR - OUTPUT_DIR - + DIRETÓRIO_DE_SAÍDA + 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. - 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. - + O arquivo de projeto do MSBuild para compilar. Se não houver arquivo de projeto especificado, o MSBuild pesquisará no diretório de trabalho atual um arquivo que contenha uma extensão de arquivo que termine em "proj" e usará esse arquivo. + PROJECT - PROJECT - + PROJETO + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Tempo de execução de destino para o qual compilar. O padrão é compilar um aplicativo portátil. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Define o valor da propriedade $(VersionSuffix) no projeto + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIXO_DA_VERSÃO + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ru.xlf index 717a4adfb..f3070881d 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.ru.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + Построитель для платформы .NET Делегирование в цель "Сборка" MSBuild в файле проекта. + .NET Builder - .NET Builder - + Построитель .NET + Configuration under which to build - Configuration under which to build - + Конфигурация, в которой выполняется сборка + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + Компиляция определенной платформы + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Задайте этот флаг, чтобы пропускать ссылки проектов на проекты и выполнять сборку только корневого проекта. + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Задайте этот флаг, чтобы отключить добавочные сборки. + Directory in which to place outputs - Directory in which to place outputs - + Каталог для размещения выходных данных + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + Файл проекта MSBuild для сборки. Если файл проекта не указан, MSBuild выполняет в текущем рабочем каталоге поиск файла с расширением, оканчивающимся на PROJ, и использует этот файл. + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Целевая среда выполнения для сборки. По умолчанию выполняется сборка переносимого приложения. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Определяет значение для свойства $(VersionSuffix) в проекте + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.tr.xlf index 87cdf1c3e..a6a46e4e8 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.tr.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + .NET Platformu için oluşturucu. Proje dosyasındaki MSBuild 'Build' hedefine temsilci atar. + .NET Builder - .NET Builder - + .NET Oluşturucusu + Configuration under which to build - Configuration under which to build - + Derlemenin gerçekleştirileceği yapılandırma + CONFIGURATION - CONFIGURATION - + YAPILANDIRMA + Compile a specific framework - Compile a specific framework - + Belirli bir çerçeveyi derler + FRAMEWORK - FRAMEWORK - + ÇERÇEVE + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + Projeden projeye başvuruları yoksaymak ve yalnızca kök projeyi derlemek için bu bayrağı ayarlayın + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + Artımlı derlemeyi kapatmak için bu bayrağı ayarlayın + Directory in which to place outputs - Directory in which to place outputs - + Çıkışların yerleştirileceği dizin + OUTPUT_DIR - OUTPUT_DIR - + ÇIKIŞ_DİZİNİ + 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. - 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. - + Derlenecek MSBuild proje dosyası. Bir proje dosyası belirtilmezse MSBuild, geçerli çalışma dizininde dosya uzantısının sonu ‘proj’ olan bir dosyası arar ve bu dosyayı kullanır. + PROJECT - PROJECT - + PROJE + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + Derlemenin yapılacağı hedef çalışma zamanı. Varsayılan değer, taşınabilir bir uygulama derlenmesidir. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + ÇALIŞMA_ZAMANI_TANIMLAYICISI + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Projedeki $(VersionSuffix) özelliğinin değerini tanımlar + VERSION_SUFFIX - VERSION_SUFFIX - + SÜRÜM_SONEKİ + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.xlf index f794ee454..a8efcf8e0 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.xlf @@ -5,67 +5,67 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + .NET Builder - + Configuration under which to build - + CONFIGURATION - + Compile a specific framework - + FRAMEWORK - + Set this flag to ignore project to project references and only build the root project - + Set this flag to turn off incremental build - + Directory in which to place outputs - + OUTPUT_DIR - + 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. - + PROJECT - + Target runtime to build for. The default is to build a portable application. - + RUNTIME_IDENTIFIER - + Defines the value for the $(VersionSuffix) property in the project - + VERSION_SUFFIX - + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hans.xlf index cc56029c1..ad3fb346f 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + 适用于.NET 平台的生成器。委托项目文件中 MSBuild“生成”目标。 + .NET Builder - .NET Builder - + .NET 生成器 + Configuration under which to build - Configuration under which to build - + 在何处生成配置 + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Compile a specific framework - Compile a specific framework - + 编译特定的框架 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + 设置此标志以忽略项目到项目引用,并仅生成根项目。 + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + 设置此标志以关闭增量生成 + Directory in which to place outputs - Directory in which to place outputs - + 用于放置输出的目录 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + 要生成的 MSBuild 项目文件。如果未指定项目文件,MSBuild 将搜索当前工作目录来查找文件扩展名以“proj”结尾的文件并使用该文件。 + PROJECT - PROJECT - + PROJECT + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + 要生成的目标运行时。默认生成可移植的应用程序。 + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 定义项目中 $(VersionSuffix)属性的值 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hant.xlf index 337f9c983..539a7fe85 100644 --- a/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-build/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,83 +5,83 @@ Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - Builder for the .NET Platform. Delegates to the MSBuild 'Build' target in the project file. - + 適用於 .NET 平台的產生器。委派給專案檔中的 MSBuild 'Build' 目標。 + .NET Builder - .NET Builder - + .NET 產生器 + Configuration under which to build - Configuration under which to build - + 作為建置依據的組態 + CONFIGURATION - CONFIGURATION - + 組態 + Compile a specific framework - Compile a specific framework - + 編譯特定架構 + FRAMEWORK - FRAMEWORK - + 架構 + Set this flag to ignore project to project references and only build the root project - Set this flag to ignore project to project references and only build the root project - + 將此旗標設定為略過專案對專案參考並僅建置根專案 + Set this flag to turn off incremental build - Set this flag to turn off incremental build - + 將此旗標設定為關閉累加建置 + Directory in which to place outputs - Directory in which to place outputs - + 要放置輸出的目錄 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + 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. - 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. - + 要建置的 MSBuild 專案檔。若未指定專案檔,MSBuild 會在目前的工作目錄搜尋副檔名以 `proj` 結尾的檔案,並使用該檔案。 + PROJECT - PROJECT - + 專案 + Target runtime to build for. The default is to build a portable application. - Target runtime to build for. The default is to build a portable application. - + 要為其建置的目標執行階段。預設為建置可攜式應用程式。 + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 定義專案中 $(VersionSuffix) 屬性的值 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.cs.xlf index bb990eca7..e89da2896 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.cs.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Příkaz rozhraní .NET pro vyčištění + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Příkaz slouží k vyčištění vygenerovaných výstupů buildů. + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Soubor projektu MSBuildu určený k sestavení. Pokud není zadaný soubor projektu, nástroj MSBuild vyhledá v aktuálním pracovním adresáři soubor s příponou, která končí na „proj“, a použije ho. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Adresář, do kterého byly umístěny výstupy buildu. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + Umožňuje vyčistit určitou platformu. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + Umožňuje vyčistit určitou konfiguraci. + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.de.xlf index 250d0bcde..d3e6aa7c2 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.de.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET-Befehl "Clean" + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Befehl zum Bereinigen zuvor generierter Buildausgaben. + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Die zu erstellende MSBuild-Projektdatei. Wenn keine Projektdatei angegeben ist, durchsucht MSBuild das aktuelle Arbeitsverzeichnis nach einer Datei mit einer Dateierweiterung, die auf "proj" endet, und verwendet diese Datei. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Verzeichnis, in dem sich die Buildausgaben befinden + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + Bestimmtes Framework bereinigen + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + Bestimmte Konfiguration bereinigen + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.es.xlf index 1c52fc495..c99b5e8c0 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.es.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Comando Clean de .NET + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Comando para limpiar los archivos de salida de compilaciones anteriores. + PROJECT - PROJECT - + PROYECTO + 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. - 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. - + Archivo del proyecto de MSBuild para compilar. Si no se especifica un archivo del proyecto, MSBuild busca en el directorio de trabajo actual un archivo que tenga una extensión de archivo que acabe en “proj” y utiliza ese archivo. + OUTPUT_DIR - OUTPUT_DIR - + DIRECTORIO_DE_SALIDA + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Directorio donde se han puesto los archivos de salida de la compilación + FRAMEWORK - FRAMEWORK - + PLATAFORMA + Clean a specific framework - Clean a specific framework - + Limpia una plataforma específica + CONFIGURATION - CONFIGURATION - + CONFIGURACIÓN + Clean a specific configuration - Clean a specific configuration - + Limpia una configuración específica + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.fr.xlf index f6a04b7c7..9dd2a80f9 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.fr.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Commande de nettoyage .NET + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Commande de nettoyage des sorties de build générées précédemment. + PROJECT - PROJECT - + PROJET + 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. - 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. - + Fichier projet MSBuild à générer. Si aucun fichier projet n'est spécifié, MSBuild recherche dans le répertoire de travail actif un fichier dont l'extension se termine par 'proj' et utilise ce dernier. + OUTPUT_DIR - OUTPUT_DIR - + RÉP_SORTIE + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Répertoire dans lequel les sorties de build ont été placées + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + Nettoyer un framework spécifique + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + Nettoyer une configuration spécifique + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.it.xlf index dfa1e9cf1..2e425262d 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.it.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Comando Pulisci .NET + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Comando per pulire gli output di compilazione generati in precedenza. + PROJECT - PROJECT - + PROGETTO + 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. - 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. - + File di progetto MSBuild da compilare. Se non si specifica un file di progetto, MSBuild cerca nella directory di lavoro corrente un file la cui estensione termina con `proj` e usa tale file. + OUTPUT_DIR - OUTPUT_DIR - + DIR_OUTPUT + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Directory in cui sono stati inseriti gli output di compilazione + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + Pulisce un framework specifico + CONFIGURATION - CONFIGURATION - + CONFIGURAZIONE + Clean a specific configuration - Clean a specific configuration - + Pulisce una configurazione specifica + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ja.xlf index 2fc5f05bb..b7078a1fc 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ja.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET Clean コマンド + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + 以前に生成されたビルド出力を消去するコマンド。 + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 構築する MSBuild プロジェクト ファイル。プロジェクト ファイルを指定しなかった場合、MSBuild は現在の作業ディレクトリの中から "proj" で終わるファイル拡張子を検索し、そのファイルを使用します。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + ビルド出力が配置されているディレクトリ + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + 特定のフレームワークを消去する + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + 特定の構成を消去する + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ko.xlf index 6f52a6cba..39b832a20 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ko.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET 정리 명령 + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + 이전에 생성된 빌드 출력을 정리하는 명령입니다. + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 빌드할 MSBuild 프로젝트 파일입니다. 프로젝트 파일을 지정하지 않으면 MSBuild는 현재 작업 디렉터리에서 파일 확장명이 ‘proj’로 끝나는 파일을 찾아서 사용합니다. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + 빌드 출력이 배치된 디렉터리입니다. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + 특정 프레임워크를 정리합니다. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + 특정 구성을 정리합니다. + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pl.xlf index 60f840c3d..849922f75 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pl.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Polecenie clean platformy .NET + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Polecenie służące do czyszczenia wcześniej wygenerowanych danych wyjściowych kompilacji. + PROJECT - PROJECT - + PROJEKT + 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. - 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. - + Plik projektu programu MSBuild do skompilowania. Jeśli nie określono pliku projektu, program MSBuild wyszukuje w bieżącym katalogu roboczym plik, którego rozszerzenie kończy się na „proj”, i używa tego pliku. + OUTPUT_DIR - OUTPUT_DIR - + KATALOG_WYJŚCIOWY + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Katalog, w którym zostały umieszczone dane wyjściowe kompilacji + FRAMEWORK - FRAMEWORK - + PLATFORMA + Clean a specific framework - Clean a specific framework - + Wyczyść określoną platformę + CONFIGURATION - CONFIGURATION - + KONFIGURACJA + Clean a specific configuration - Clean a specific configuration - + Wyczyść określoną konfigurację + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pt-BR.xlf index 90b102fcd..002aa4e2c 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.pt-BR.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Comando Clean do .NET + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Comando para limpar saídas de build geradas anteriormente. + PROJECT - PROJECT - + PROJETO + 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. - 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. - + O arquivo de projeto do MSBuild para compilar. Se não houver arquivo de projeto especificado, o MSBuild pesquisará no diretório de trabalho atual um arquivo que contenha uma extensão de arquivo que termine em "proj" e usará esse arquivo. + OUTPUT_DIR - OUTPUT_DIR - + DIRETÓRIO_DE_SAÍDA + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + O diretório no qual as saídas de build foram colocadas + FRAMEWORK - FRAMEWORK - + ESTRUTURA + Clean a specific framework - Clean a specific framework - + Limpar uma estrutura específica + CONFIGURATION - CONFIGURATION - + CONFIGURAÇÃO + Clean a specific configuration - Clean a specific configuration - + Limpar uma configuração específica + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ru.xlf index b1544ea57..e280f05fc 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.ru.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + Команда .NET "Очистить" + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Команда для очистки ранее созданных выходных данных сборки. + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Файл проекта MSBuild для сборки. Если файл проекта не указан, MSBuild выполняет в текущем рабочем каталоге поиск файла с расширением, оканчивающимся на PROJ, и использует этот файл. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Каталог, в котором размещаются выходные данные сборки. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + Очистка определенной платформы + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + Очистка определенной конфигурации + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.tr.xlf index c053f6cda..4eb208a60 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.tr.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET Clean Komutu + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + Daha önce oluşturulan derleme çıkışlarını temizleme komutu. + PROJECT - PROJECT - + PROJE + 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. - 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. - + Derlenecek MSBuild proje dosyası. Bir proje dosyası belirtilmezse MSBuild, geçerli çalışma dizininde dosya uzantısının sonu ‘proj’ olan bir dosyası arar ve bu dosyayı kullanır. + OUTPUT_DIR - OUTPUT_DIR - + ÇIKIŞ_DİZİNİ + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + Derleme çıktılarının yerleştirildiği dizin + FRAMEWORK - FRAMEWORK - + ÇERÇEVE + Clean a specific framework - Clean a specific framework - + Belirli bir çerçeveyi temizler + CONFIGURATION - CONFIGURATION - + YAPILANDIRMA + Clean a specific configuration - Clean a specific configuration - + Belirli bir yapılandırmayı temizler + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.xlf index 2d2c7183f..21603fd85 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.xlf @@ -5,43 +5,43 @@ .NET Clean Command - + Command to clean previously generated build outputs. - + PROJECT - + 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. - + OUTPUT_DIR - + Directory in which the build outputs have been placed - + FRAMEWORK - + Clean a specific framework - + CONFIGURATION - + Clean a specific configuration - + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hans.xlf index e3d17834f..62b5ae959 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET 清除命令 + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + 用于清除先前产生的生成输出的命令。 + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 要生成的 MSBuild 项目文件。如果未指定项目文件,MSBuild 将搜索当前工作目录来查找文件扩展名以“proj”结尾的文件并使用该文件。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + 放置生成输出的目录 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Clean a specific framework - Clean a specific framework - + 清理特定的框架 + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Clean a specific configuration - Clean a specific configuration - + 清理特定的配置 + diff --git a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hant.xlf index f04a4020d..4db7d864b 100644 --- a/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-clean/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,53 +5,53 @@ .NET Clean Command - .NET Clean Command - + .NET 清除命令 + Command to clean previously generated build outputs. - Command to clean previously generated build outputs. - + 用以清除先前產生之建置輸出的命令。 + PROJECT - PROJECT - + 專案 + 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. - 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. - + 要建置的 MSBuild 專案檔。若未指定專案檔,MSBuild 會在目前的工作目錄搜尋副檔名以 `proj` 結尾的檔案,並使用該檔案。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which the build outputs have been placed - Directory in which the build outputs have been placed - + 已放置建置輸出的目錄 + FRAMEWORK - FRAMEWORK - + 架構 + Clean a specific framework - Clean a specific framework - + 清除特定架構 + CONFIGURATION - CONFIGURATION - + 組態 + Clean a specific configuration - Clean a specific configuration - + 清除特定組態 + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.cs.xlf index e9d86736e..e80049529 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.cs.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Použití + Arguments - Arguments - + Argumenty + The command to execute - The command to execute - + Prováděný příkaz + Arguments to pass to the command - Arguments to pass to the command - + Argumenty předané příkazu + Options specific to dotnet (host) - Options specific to dotnet (host) - + Specifické možnosti dotnetu (hostitel) + Options common to all commands - Options common to all commands - + Společné možnosti všech příkazů + Common options - Common options - + Společné možnosti + Enable verbose output - Enable verbose output - + Povolit podrobný výstup + Show help - Show help - + Zobrazit nápovědu + Host options (passed before the command) - Host options (passed before the command) - + Možnosti hostitele (předané před příkazem) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Zobrazit číslo verze .NET CLI + Display .NET CLI Info - Display .NET CLI Info - + Zobrazit informace o .NET CLI + Commands - Commands - + Příkazy + Initialize a basic .NET project - Initialize a basic .NET project - + Inicializovat základní projekt .NET + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Obnovit závislosti zadané v projektu .NET Builds a .NET project - Builds a .NET project - + Sestaví projekt .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Publikuje projekt .NET pro nasazení (včetně modulu runtime) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Kompiluje a hned spustí projekt .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Spustí testy jednotek v nástroji Test Runner zadaném v projektu + Creates a NuGet package - Creates a NuGet package - + Vytvoří balíček NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Na základě projektu migruje soubor project.json na projekt založený na nástroji MSBuild + Project modification commands - Project modification commands - + Příkazy pro úpravy projektu + Add items to the project - Add items to the project - + Přidá položky do projektu + Remove items from the project - Remove items from the project - + Odebere položky z projektu + Advanced Commands - Advanced Commands - + Pokročilé příkazy + Provides additional NuGet commands - Provides additional NuGet commands - + Nabízí další příkazy NuGet + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Vytvoří projekt nástrojem MSBuild i všechny jeho závislosti + Runs tests from the specified files - Runs tests from the specified files - + Spustí testy ze zadaných souborů + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.de.xlf index e26447448..1ccc24291 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.de.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Syntax + Arguments - Arguments - + Argumente + The command to execute - The command to execute - + Der auszuführende Befehl + Arguments to pass to the command - Arguments to pass to the command - + An den Befehl zu übergebende Argumente + Options specific to dotnet (host) - Options specific to dotnet (host) - + Spezifische dotnet-Optionen (Host) + Options common to all commands - Options common to all commands - + Allgemeine Optionen für alle Befehle + Common options - Common options - + Allgemeine Optionen + Enable verbose output - Enable verbose output - + Ausführliche Ausgabe aktivieren + Show help - Show help - + Hilfe anzeigen + Host options (passed before the command) - Host options (passed before the command) - + Hostoptionen (werden vor dem Befehl übergeben) + Display .NET CLI Version Number - Display .NET CLI Version Number - + .NET-CLI-Versionsnummer anzeigen + Display .NET CLI Info - Display .NET CLI Info - + .NET-CLI-Informationen anzeigen + Commands - Commands - + Befehle + Initialize a basic .NET project - Initialize a basic .NET project - + Einfaches .NET-Projekt initialisieren + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Im .NET-Projekt angegebene Abhängigkeiten wiederherstellen Builds a .NET project - Builds a .NET project - + Erstellt ein .NET-Projekt. + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Veröffentlicht ein .NET-Projekt für die Bereitstellung (einschließlich Laufzeit). + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Kompiliert ein .NET-Projekt und führt es umgehend aus. Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Führt mithilfe des im Projekt angegebenen Test Runners Komponententests aus. + Creates a NuGet package - Creates a NuGet package - + Erstellt ein NuGet-Paket. + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Migriert ein auf "project.json" basierendes Projekt zu einem MSBuild-basierten Projekt. + Project modification commands - Project modification commands - + Projektänderungsbefehle + Add items to the project - Add items to the project - + Elemente zum Projekt hinzufügen + Remove items from the project - Remove items from the project - + Elemente aus dem Projekt entfernen + Advanced Commands - Advanced Commands - + Erweiterte Befehle + Provides additional NuGet commands - Provides additional NuGet commands - + Stellt zusätzliche NuGet-Befehle bereit. + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Erstellt ein Projekt und alle dazugehörigen Abhängigkeiten mithilfe von MSBuild. + Runs tests from the specified files - Runs tests from the specified files - + Führt Tests auf der Grundlage der angegebenen Dateien aus. + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.es.xlf index cd11d9013..eb0efad3c 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.es.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Uso + Arguments - Arguments - + Argumentos + The command to execute - The command to execute - + Comando para ejecutar + Arguments to pass to the command - Arguments to pass to the command - + Argumentos que se pasan al comando + Options specific to dotnet (host) - Options specific to dotnet (host) - + Opciones específicas de dotnet (host) + Options common to all commands - Options common to all commands - + Opciones comunes a todos los comandos + Common options - Common options - + Opciones comunes + Enable verbose output - Enable verbose output - + Habilita la salida detallada + Show help - Show help - + Muestra la ayuda + Host options (passed before the command) - Host options (passed before the command) - + Opciones de host (pasadas antes que el comando) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Muestra el número de versión de la CLI de .NET + Display .NET CLI Info - Display .NET CLI Info - + Muestra información de la CLI de .NET + Commands - Commands - + Comandos + Initialize a basic .NET project - Initialize a basic .NET project - + Inicializa un proyecto de .NET básico + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Restaura dependencias especificadas en el proyecto de .NET Builds a .NET project - Builds a .NET project - + Compila un proyecto de .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Publica un proyecto de .NET para implementarlo (incluido el entorno de tiempo de ejecución) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Compila y ejecuta de inmediato un proyecto de .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Ejecuta pruebas unitarias usando el ejecutor de pruebas especificado en el proyecto + Creates a NuGet package - Creates a NuGet package - + Crea un paquete NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Migra un proyecto basado en project.json a un proyecto basado en MSBuild + Project modification commands - Project modification commands - + Comandos de modificación del proyecto + Add items to the project - Add items to the project - + Agrega elementos al proyecto + Remove items from the project - Remove items from the project - + Quita elementos del proyecto + Advanced Commands - Advanced Commands - + Comandos avanzados + Provides additional NuGet commands - Provides additional NuGet commands - + Proporciona comandos NuGet adicionales + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Compila un proyecto y todas sus dependencias con MSBuild + Runs tests from the specified files - Runs tests from the specified files - + Ejecuta pruebas de los archivos especificados + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.fr.xlf index 152d5d894..0192dbcbe 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.fr.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Utilisation + Arguments - Arguments - + Arguments + The command to execute - The command to execute - + Commande à exécuter + Arguments to pass to the command - Arguments to pass to the command - + Arguments à passer à la commande + Options specific to dotnet (host) - Options specific to dotnet (host) - + Options spécifiques à dotnet (hôte) + Options common to all commands - Options common to all commands - + Options communes à toutes les commandes + Common options - Common options - + Options communes + Enable verbose output - Enable verbose output - + Activer la sortie détaillée + Show help - Show help - + Afficher l'aide + Host options (passed before the command) - Host options (passed before the command) - + Options de l'hôte (passées avant la commande) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Afficher le numéro de version de l'interface CLI .NET + Display .NET CLI Info - Display .NET CLI Info - + Affichage des informations sur l'interface CLI .NET + Commands - Commands - + Commandes + Initialize a basic .NET project - Initialize a basic .NET project - + Initialiser un projet .NET de base + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Restaurer les dépendances spécifiées dans le projet .NET Builds a .NET project - Builds a .NET project - + Génère un projet .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Publie un projet .NET à des fins de déploiement (runtime inclus) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Compile et exécute immédiatement un projet a.NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Exécute des tests unitaires à l'aide du Test Runner spécifié dans le projet + Creates a NuGet package - Creates a NuGet package - + Crée un package NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Migre un projet basé sur project.json vers un projet basé sur msbuild + Project modification commands - Project modification commands - + Commandes de modification de projet + Add items to the project - Add items to the project - + Ajouter des éléments au projet + Remove items from the project - Remove items from the project - + Supprimer des éléments du projet + Advanced Commands - Advanced Commands - + Commandes avancées + Provides additional NuGet commands - Provides additional NuGet commands - + Fournit des commandes NuGet supplémentaires + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + msbuilds un projet et toutes ses dépendances + Runs tests from the specified files - Runs tests from the specified files - + Exécute les tests à partir des fichiers spécifiés + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.it.xlf index 35a48f19b..7da7cf3fe 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.it.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Utilizzo + Arguments - Arguments - + Argomenti + The command to execute - The command to execute - + Comando da eseguire + Arguments to pass to the command - Arguments to pass to the command - + Argomenti da passare al comando + Options specific to dotnet (host) - Options specific to dotnet (host) - + Opzioni specifiche di dotnet (host) + Options common to all commands - Options common to all commands - + Opzioni comuni a tutti i comandi + Common options - Common options - + Opzioni comuni + Enable verbose output - Enable verbose output - + Abilita l'output dettagliato + Show help - Show help - + Mostra la Guida + Host options (passed before the command) - Host options (passed before the command) - + Opzioni host (passate prima del comando) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Visualizza il numero di versione dell'interfaccia della riga di comando .NET + Display .NET CLI Info - Display .NET CLI Info - + Visualizza le informazioni sull'interfaccia della riga di comando .NET + Commands - Commands - + Comandi + Initialize a basic .NET project - Initialize a basic .NET project - + Inizializza un progetto .NET di base + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Ripristina le dipendenze specificate nel progetto .NET Builds a .NET project - Builds a .NET project - + Compila un progetto .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Pubblica un progetto .NET per la distribuzione (includendo il runtime) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Compila ed esegue immediatamente un progetto .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Esegue gli unit test con l'istanza di Test Runner specificata nel progetto + Creates a NuGet package - Creates a NuGet package - + Crea un pacchetto NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Esegue la migrazione di un progetto basato su project.json in uno basato su MSBuild + Project modification commands - Project modification commands - + Comandi di modifica del progetto + Add items to the project - Add items to the project - + Consente di aggiungere elementi al progetto + Remove items from the project - Remove items from the project - + Consente di rimuovere elementi dal progetto + Advanced Commands - Advanced Commands - + Comandi avanzati + Provides additional NuGet commands - Provides additional NuGet commands - + Fornisce comandi NuGet aggiuntivi + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Esegue MSBuild su un progetto e su tutte le relative dipendenze + Runs tests from the specified files - Runs tests from the specified files - + Esegue i test dai file specificati + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ja.xlf index c0da80203..3332b07a8 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ja.xlf @@ -5,143 +5,143 @@ Usage - Usage - + 使用法 + Arguments - Arguments - + Arguments + The command to execute - The command to execute - + 実行するコマンド + Arguments to pass to the command - Arguments to pass to the command - + コマンドに渡す引数 + Options specific to dotnet (host) - Options specific to dotnet (host) - + dotnet (ホスト) 固有のオプション + Options common to all commands - Options common to all commands - + すべてのコマンドに共通のオプション + Common options - Common options - + 共通のオプション + Enable verbose output - Enable verbose output - + 詳細な出力を有効にする + Show help - Show help - + ヘルプを表示する + Host options (passed before the command) - Host options (passed before the command) - + ホストのオプション (コマンドの前に渡されます) + Display .NET CLI Version Number - Display .NET CLI Version Number - + .NET CLI のバージョン番号を表示する + Display .NET CLI Info - Display .NET CLI Info - + .NET CLI の情報を表示する + Commands - Commands - + コマンド + Initialize a basic .NET project - Initialize a basic .NET project - + 基本的な .NET プロジェクトを初期化する + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + .NET プロジェクトに指定されている依存関係を復元する Builds a .NET project - Builds a .NET project - + .NET プロジェクトを構築する + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + 展開用の .NET プロジェクトを発行する (ランタイムを含む) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + .NET プロジェクトをコンパイルして、直ちに実行する Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + プロジェクトに指定されているテスト ランナーを使用して、単体テストを実行する + Creates a NuGet package - Creates a NuGet package - + NuGet パッケージを作成する + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + project.json ベースのプロジェクトを msbuild ベースのプロジェクトに移行する + Project modification commands - Project modification commands - + プロジェクト変更コマンド + Add items to the project - Add items to the project - + 項目をプロジェクトに追加する + Remove items from the project - Remove items from the project - + 項目をプロジェクトから削除する + Advanced Commands - Advanced Commands - + 高度なコマンド + Provides additional NuGet commands - Provides additional NuGet commands - + 追加の NuGet コマンドを提供する + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + プロジェクトとそのすべての依存関係を msbuild で構築する + Runs tests from the specified files - Runs tests from the specified files - + 指定されたファイルからテストを実行する + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ko.xlf index 813c661a6..7bc029028 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ko.xlf @@ -5,143 +5,143 @@ Usage - Usage - + 사용법 + Arguments - Arguments - + 인수 + The command to execute - The command to execute - + 실행할 명령입니다. + Arguments to pass to the command - Arguments to pass to the command - + 명령에 전달할 인수입니다. + Options specific to dotnet (host) - Options specific to dotnet (host) - + dotnet(호스트)과 관련된 옵션입니다. + Options common to all commands - Options common to all commands - + 모든 명령에 공통된 옵션입니다. + Common options - Common options - + 공통 옵션 + Enable verbose output - Enable verbose output - + 자세한 정보 출력 사용 + Show help - Show help - + 도움말 표시 + Host options (passed before the command) - Host options (passed before the command) - + 호스트 옵션(명령 전에 전달됨) + Display .NET CLI Version Number - Display .NET CLI Version Number - + .NET CLI 버전 번호 표시 + Display .NET CLI Info - Display .NET CLI Info - + .NET CLI 정보 표시 + Commands - Commands - + 명령 + Initialize a basic .NET project - Initialize a basic .NET project - + 기본 .NET 프로젝트를 초기화합니다. + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + .NET 프로젝트에 지정된 종속성을 복원합니다. Builds a .NET project - Builds a .NET project - + .NET 프로젝트를 빌드합니다. + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + 배포하기 위해 .NET 프로젝트를 게시합니다(런타임 포함). + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + .NET 프로젝트를 컴파일하고 즉시 실행합니다. Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + 프로젝트에 지정된 Test Runner를 사용하여 유닛 테스트를 실행합니다. + Creates a NuGet package - Creates a NuGet package - + NuGet 패키지를 만듭니다. + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + project.json 기반 프로젝트를 msbuild 빌드 기반 프로젝트로 마이그레이션합니다. + Project modification commands - Project modification commands - + 프로젝트 수정 명령 + Add items to the project - Add items to the project - + 프로젝트에 항목을 추가합니다. + Remove items from the project - Remove items from the project - + 프로젝트에서 항목을 제거합니다. + Advanced Commands - Advanced Commands - + 고급 명령 + Provides additional NuGet commands - Provides additional NuGet commands - + 추가 NuGet 명령을 제공합니다. + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + 프로젝트 및 프로젝트의 모든 종속성을 msbuild합니다. + Runs tests from the specified files - Runs tests from the specified files - + 지정한 파일에서 테스트를 실행합니다. + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pl.xlf index 6a969214f..732153b6a 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pl.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Użycie + Arguments - Arguments - + Argumenty + The command to execute - The command to execute - + Polecenie do wykonania + Arguments to pass to the command - Arguments to pass to the command - + Argumenty, które zostaną przekazane do polecenia + Options specific to dotnet (host) - Options specific to dotnet (host) - + Opcje specyficzne dla poleceń dotnet (hosta) + Options common to all commands - Options common to all commands - + Opcje wspólne dla wszystkich poleceń + Common options - Common options - + Opcje wspólne + Enable verbose output - Enable verbose output - + Wyświetl pełne dane wyjściowe + Show help - Show help - + Wyświetl pomoc + Host options (passed before the command) - Host options (passed before the command) - + Opcje hosta (przekazywane przed poleceniem) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Wyświetl numer wersji interfejsu wiersza polecenia platformy .NET + Display .NET CLI Info - Display .NET CLI Info - + Wyświetl informacje o interfejsie wiersza polecenia platformy .NET + Commands - Commands - + Polecenia + Initialize a basic .NET project - Initialize a basic .NET project - + Zainicjuj podstawowy projekt platformy .NET + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Przywróć zależności określone w projekcie platformy .NET Builds a .NET project - Builds a .NET project - + Kompiluje projekt platformy .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Publikuje projekt platformy .NET do wdrożenia (w tym środowisko uruchomieniowe) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Kompiluje i natychmiast wykonuje projekt platformy .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Uruchamia testy jednostkowe przy użyciu określonego w projekcie modułu uruchamiającego testy + Creates a NuGet package - Creates a NuGet package - + Tworzy pakiet NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Migruje projekt oparty na pliku project.json do projektu opartego na programie MSBuild + Project modification commands - Project modification commands - + Polecenia modyfikacji projektu + Add items to the project - Add items to the project - + Dodaj elementy do projektu + Remove items from the project - Remove items from the project - + Usuń elementy z projektu + Advanced Commands - Advanced Commands - + Polecenia zaawansowane + Provides additional NuGet commands - Provides additional NuGet commands - + Udostępnia dodatkowe polecenia NuGet + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Kompiluje projekt i wszystkie jego zależności przy użyciu programu MSBuild + Runs tests from the specified files - Runs tests from the specified files - + Uruchamia testy z określonych plików + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pt-BR.xlf index b7be611a2..e498f0b82 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.pt-BR.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Uso + Arguments - Arguments - + Argumentos + The command to execute - The command to execute - + O comando a ser executado + Arguments to pass to the command - Arguments to pass to the command - + Argumentos a serem passados para o comando + Options specific to dotnet (host) - Options specific to dotnet (host) - + Opções específicas para o dotnet (host) + Options common to all commands - Options common to all commands - + Opções comuns para todos os comandos + Common options - Common options - + Opções comuns + Enable verbose output - Enable verbose output - + Habilitar saída detalhada + Show help - Show help - + Mostrar ajuda + Host options (passed before the command) - Host options (passed before the command) - + Opções de host (passadas antes do comando) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Exibir o Número de Versão da CLI do .NET + Display .NET CLI Info - Display .NET CLI Info - + Exibir Informações da CLI do .NET + Commands - Commands - + Comandos + Initialize a basic .NET project - Initialize a basic .NET project - + Inicializar um projeto .NET básico + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Restaurar dependências especificadas no projeto .NET Builds a .NET project - Builds a .NET project - + Compila um projeto .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Publica um projeto .NET para implantação (incluindo o tempo de execução) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Compila e executa imediatamente um projeto .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Executa testes de unidade usando o executor de teste especificado no projeto + Creates a NuGet package - Creates a NuGet package - + Cria um pacote NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Migra um projeto baseado em project.json para um projeto baseado em msbuild + Project modification commands - Project modification commands - + Comandos de modificação de projeto + Add items to the project - Add items to the project - + Adicionar itens ao projeto + Remove items from the project - Remove items from the project - + Remover itens do projeto + Advanced Commands - Advanced Commands - + Comandos Avançados + Provides additional NuGet commands - Provides additional NuGet commands - + Fornece comandos adicionais do NuGet + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Executa o msbuild em um projeto e todas as suas dependências + Runs tests from the specified files - Runs tests from the specified files - + Executa testes dos arquivos especificados + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ru.xlf index 6d16e69d9..71872c573 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.ru.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Использование + Arguments - Arguments - + Аргументы + The command to execute - The command to execute - + Выполняемая команда + Arguments to pass to the command - Arguments to pass to the command - + Аргументы, передаваемые в команду + Options specific to dotnet (host) - Options specific to dotnet (host) - + Параметры, определяемые dotnet (узлом) + Options common to all commands - Options common to all commands - + Параметры, общие для всех команд + Common options - Common options - + Общие параметры + Enable verbose output - Enable verbose output - + Включить подробные выходные данные + Show help - Show help - + Показать справку + Host options (passed before the command) - Host options (passed before the command) - + Параметры узла (передаваемые перед командой) + Display .NET CLI Version Number - Display .NET CLI Version Number - + Показывать номер версии .NET CLI + Display .NET CLI Info - Display .NET CLI Info - + Показывать сведения о .NET CLI + Commands - Commands - + Команды + Initialize a basic .NET project - Initialize a basic .NET project - + Инициализация основного проекта .NET + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + Восстановить зависимости, указанные в проекте .NET Builds a .NET project - Builds a .NET project - + Сборка проекта .NET + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Публикация проекта .NET для развертывания (включая среду выполнения) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Компиляция и немедленное выполнение проекта .NET Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Выполнение тестов с помощью средства выполнения тестов, указанного в проекте + Creates a NuGet package - Creates a NuGet package - + Создание пакета NuGet + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + Миграция проекта на основе project.json в проект на основе msbuild + Project modification commands - Project modification commands - + Команды изменения проекта + Add items to the project - Add items to the project - + Добавить элементы в проект + Remove items from the project - Remove items from the project - + Удалить элементы из проекта + Advanced Commands - Advanced Commands - + Дополнительные команды + Provides additional NuGet commands - Provides additional NuGet commands - + Предоставление дополнительных команд NuGet + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Выполнение сборки msbuild проекта и всех его зависимостей + Runs tests from the specified files - Runs tests from the specified files - + Выполнение тестов из указанных файлов + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.tr.xlf index 847036fcd..2ebf9d7f5 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.tr.xlf @@ -5,143 +5,143 @@ Usage - Usage - + Kullanım + Arguments - Arguments - + Bağımsız değişkenler + The command to execute - The command to execute - + Yürütülecek komut + Arguments to pass to the command - Arguments to pass to the command - + Komuta geçirilecek bağımsız değişkenler + Options specific to dotnet (host) - Options specific to dotnet (host) - + Dotnet’e özel seçenekler (konak) + Options common to all commands - Options common to all commands - + Tüm komutlar için ortak seçenekler + Common options - Common options - + Ortak seçenekler + Enable verbose output - Enable verbose output - + Ayrıntılı çıktıyı etkinleştir + Show help - Show help - + Yardımı göster + Host options (passed before the command) - Host options (passed before the command) - + Konak seçenekleri (komuttan önce geçirilir) + Display .NET CLI Version Number - Display .NET CLI Version Number - + .NET CLI Sürüm Numarasını Görüntüle + Display .NET CLI Info - Display .NET CLI Info - + .NET CLI Bilgisini Görüntüle + Commands - Commands - + Komutlar + Initialize a basic .NET project - Initialize a basic .NET project - + Temel bir .NET projesi başlatır + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + .NET projesinde belirtilen bağımlılıkları geri yükler Builds a .NET project - Builds a .NET project - + .NET projesi derler + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + Dağıtım için bir .NET projesi yayımlar (çalışma zamanı dahil) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + Bir .NET projesini derler ve hemen yürütür Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + Projede belirtilen test çalıştırıcısını kullanarak birim testleri çalıştırır + Creates a NuGet package - Creates a NuGet package - + NuGet paketi oluşturur + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + project.json tabanlı bir projeyi msbuild tabanlı bir projeye geçirir + Project modification commands - Project modification commands - + Projede değişiklik komutları + Add items to the project - Add items to the project - + Projeye öğe ekler + Remove items from the project - Remove items from the project - + Projeden öğeleri kaldırır + Advanced Commands - Advanced Commands - + Gelişmiş Komutlar + Provides additional NuGet commands - Provides additional NuGet commands - + Ek NuGet komutları sağlar + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + Bir projeyi ve tüm bağımlılıklarını msbuild ile derler + Runs tests from the specified files - Runs tests from the specified files - + Belirtilen dosyalardan testleri çalıştırır + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.xlf index 6bd386237..b7b54aa1e 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.xlf @@ -5,115 +5,115 @@ Usage - + Arguments - + The command to execute - + Arguments to pass to the command - + Options specific to dotnet (host) - + Options common to all commands - + Common options - + Enable verbose output - + Show help - + Host options (passed before the command) - + Display .NET CLI Version Number - + Display .NET CLI Info - + Commands - + Initialize a basic .NET project - + - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project Builds a .NET project - + Publishes a .NET project for deployment (including the runtime) - + - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project Runs unit tests using the test runner specified in the project - + Creates a NuGet package - + Migrates a project.json based project to a msbuild based project - + Project modification commands - + Add items to the project - + Remove items from the project - + Advanced Commands - + Provides additional NuGet commands - + msbuilds a project and all of its dependencies - + Runs tests from the specified files - + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hans.xlf index 4e2dffc93..348e83772 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,143 +5,143 @@ Usage - Usage - + 使用情况 + Arguments - Arguments - + Arguments + The command to execute - The command to execute - + 要执行的命令 + Arguments to pass to the command - Arguments to pass to the command - + 要传递给命令的参数 + Options specific to dotnet (host) - Options specific to dotnet (host) - + 特定于 dotnet (主机)的选项 + Options common to all commands - Options common to all commands - + 所有命令的常用选项 + Common options - Common options - + 常用选项 + Enable verbose output - Enable verbose output - + 启用详细输出 + Show help - Show help - + 显示帮助 + Host options (passed before the command) - Host options (passed before the command) - + 主机选项(在命令之前传递) + Display .NET CLI Version Number - Display .NET CLI Version Number - + 显示 .NET CLI 版本号 + Display .NET CLI Info - Display .NET CLI Info - + 显示.NET CLI 信息 + Commands - Commands - + 命令 + Initialize a basic .NET project - Initialize a basic .NET project - + 初始化基础 .NET 项目 + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + 还原 .NET 项目中指定的依赖项 Builds a .NET project - Builds a .NET project - + 生成 .NET 项目 + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + 发布 .NET 项目以进行部署(包括运行时) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + 编译并立即执行 .NET 项目 Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + 使用项目中指定的测试运行程序运行单元测试 + Creates a NuGet package - Creates a NuGet package - + 创建 NuGet 包 + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + 将基于 project.json 的项目迁移到基于 MSBuild 的项目 + Project modification commands - Project modification commands - + 项目修改命令 + Add items to the project - Add items to the project - + 将项添加到项目中 + Remove items from the project - Remove items from the project - + 从项目中删除项 + Advanced Commands - Advanced Commands - + 高级命令 + Provides additional NuGet commands - Provides additional NuGet commands - + 提供其他 NuGet命令 + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + 通过 MSBuild 生成一个项目以及该项目的所有依赖项 + Runs tests from the specified files - Runs tests from the specified files - + 从指定的文件运行测试 + diff --git a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hant.xlf index cfd460950..e32901e68 100644 --- a/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-help/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,143 +5,143 @@ Usage - Usage - + 使用方式 + Arguments - Arguments - + Arguments + The command to execute - The command to execute - + 要執行的命令 + Arguments to pass to the command - Arguments to pass to the command - + 要傳遞到命令的引數 + Options specific to dotnet (host) - Options specific to dotnet (host) - + dotnet (host) 專用選項 + Options common to all commands - Options common to all commands - + 所有命令通用的選項 + Common options - Common options - + 通用選項 + Enable verbose output - Enable verbose output - + 啟用詳細資訊輸出 + Show help - Show help - + 顯示說明 + Host options (passed before the command) - Host options (passed before the command) - + 裝載選項 (在命令之前傳遞) + Display .NET CLI Version Number - Display .NET CLI Version Number - + 顯示 .NET CLI 版本號碼 + Display .NET CLI Info - Display .NET CLI Info - + 顯示 .NET CLI 資訊 + Commands - Commands - + 命令 + Initialize a basic .NET project - Initialize a basic .NET project - + 將基本 .NET 專案初始化 + - Restore dependencies specified in the.NET project - Restore dependencies specified in the.NET project + Restore dependencies specified in the .NET project + 還原 .NET 專案中指定的相依性 Builds a .NET project - Builds a .NET project - + 建置 .NET 專案 + Publishes a .NET project for deployment (including the runtime) - Publishes a .NET project for deployment (including the runtime) - + 發行用於部署的 .NET 專案 (包括執行階段) + - Compiles and immediately executes a.NET project - Compiles and immediately executes a.NET project + Compiles and immediately executes a .NET project + 編譯並立即執行 .NET 專案 Runs unit tests using the test runner specified in the project - Runs unit tests using the test runner specified in the project - + 使用專案中指定的測試執行器來執行單元測試 + Creates a NuGet package - Creates a NuGet package - + 建立 NuGet 套件 + Migrates a project.json based project to a msbuild based project - Migrates a project.json based project to a msbuild based project - + 將 project.json 專案移轉到 MSBuild 專案 + Project modification commands - Project modification commands - + 專案修改命令 + Add items to the project - Add items to the project - + 將項目新增至專案 + Remove items from the project - Remove items from the project - + 從專案中移除項目 + Advanced Commands - Advanced Commands - + 進階命令 + Provides additional NuGet commands - Provides additional NuGet commands - + 提供其他 NuGet 命令 + msbuilds a project and all of its dependencies - msbuilds a project and all of its dependencies - + 對專案及其所有相依性執行 MSBuild + Runs tests from the specified files - Runs tests from the specified files - + 從指定的檔案執行測試 + diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.cs.xlf new file mode 100644 index 000000000..a5417236d --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.cs.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.de.xlf new file mode 100644 index 000000000..7d4df2024 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.de.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.es.xlf new file mode 100644 index 000000000..2de85e72b --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.es.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.fr.xlf new file mode 100644 index 000000000..736ebbc20 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.fr.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.it.xlf new file mode 100644 index 000000000..a09bcaab3 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.it.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ja.xlf new file mode 100644 index 000000000..1461fc71d --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ja.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ko.xlf new file mode 100644 index 000000000..d2ef34ae7 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ko.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pl.xlf new file mode 100644 index 000000000..cbe10a6bd --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pl.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pt-BR.xlf new file mode 100644 index 000000000..552b186ea --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.pt-BR.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ru.xlf new file mode 100644 index 000000000..9d0817901 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.ru.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.tr.xlf new file mode 100644 index 000000000..eeeaf3d13 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.tr.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.xlf new file mode 100644 index 000000000..ac4a602ca --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.xlf @@ -0,0 +1,21 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hans.xlf new file mode 100644 index 000000000..8350b219d --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hans.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hant.xlf new file mode 100644 index 000000000..b8f69465b --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-p2ps/xlf/LocalizableStrings.zh-Hant.xlf @@ -0,0 +1,25 @@ + + + + + + + .NET Core Project-to-Project dependency viewer + .NET Core Project-to-Project dependency viewer + + + + Command to list project to project (p2p) references + Command to list project to project (p2p) references + + + + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + There are no {0} references in project {1}. +{0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.cs.xlf new file mode 100644 index 000000000..6e27de72f --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.cs.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.de.xlf new file mode 100644 index 000000000..126141153 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.de.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.es.xlf new file mode 100644 index 000000000..642a839f7 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.es.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.fr.xlf new file mode 100644 index 000000000..f00710374 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.fr.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.it.xlf new file mode 100644 index 000000000..514f33f06 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.it.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ja.xlf new file mode 100644 index 000000000..6ad057608 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ja.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ko.xlf new file mode 100644 index 000000000..519c80562 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ko.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pl.xlf new file mode 100644 index 000000000..cdf77475e --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pl.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pt-BR.xlf new file mode 100644 index 000000000..a814d2435 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.pt-BR.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ru.xlf new file mode 100644 index 000000000..f38b04fa5 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.ru.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.tr.xlf new file mode 100644 index 000000000..67301928e --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.tr.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.xlf new file mode 100644 index 000000000..b117cae06 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.xlf @@ -0,0 +1,16 @@ + + + + + + + .NET Projects in Solution viewer + + + + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hans.xlf new file mode 100644 index 000000000..458472efa --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hans.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hant.xlf new file mode 100644 index 000000000..64a1fce44 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/dotnet-list-proj/xlf/LocalizableStrings.zh-Hant.xlf @@ -0,0 +1,18 @@ + + + + + + + .NET Projects in Solution viewer + .NET Projects in Solution viewer + + + + Command to list projects in a solution + Command to list projects in a solution + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf new file mode 100644 index 000000000..efc087270 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.cs.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf new file mode 100644 index 000000000..4a0ac8706 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.de.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf new file mode 100644 index 000000000..d85b4f934 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.es.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf new file mode 100644 index 000000000..1321a6da9 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.fr.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf new file mode 100644 index 000000000..8765640dd --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.it.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf new file mode 100644 index 000000000..760eaa2f7 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ja.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf new file mode 100644 index 000000000..d79f8b4d7 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ko.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf new file mode 100644 index 000000000..b7eafba1d --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pl.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf new file mode 100644 index 000000000..d79c45873 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.pt-BR.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf new file mode 100644 index 000000000..6c51920e9 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.ru.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf new file mode 100644 index 000000000..fbd9c5aa0 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.tr.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.xlf new file mode 100644 index 000000000..7766ac01c --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.xlf @@ -0,0 +1,12 @@ + + + + + + + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf new file mode 100644 index 000000000..3ad85aac2 --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hans.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf new file mode 100644 index 000000000..00007d5ae --- /dev/null +++ b/src/dotnet/commands/dotnet-list/xlf/LocalizableStrings.zh-Hant.xlf @@ -0,0 +1,13 @@ + + + + + + + .NET List Command + .NET List Command + + + + + \ No newline at end of file diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf index bbf258840..dd1e46de4 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.cs.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Příkaz .NET pro migraci + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Příkaz se používá k migraci projektů project.json na MSBuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Cesta k + - migrovanému souboru project.json. +nebo + - souboru global.json – migrovat se budou složky zadané v souboru global.json. +nebo + - migrovaný adresář – rekurzivně vyhledá migrované soubory project.json. +Výchozí hodnota je aktuální adresář (pokud není zadaný jiný adresář). Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Základní šablona souboru MSBuild, která se použije pro migrovanou aplikaci. Výchozí hodnotou je projekt v příkazu dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Verze balíčku SDK, na který bude odkazovat migrovaná aplikace. Výchozí hodnotou je verze SDK v příkazu dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Cesta k používanému souboru xproj. Pokud je v adresáři projektu více souborů xproj., je tento údaj povinný. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Přeskočit migraci odkazů na projekt. Odkazy na projekt se automaticky migrují rekurzivně. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Generovat výstupní sestavu o migraci do určeného souboru (kromě konzoly). + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Generovat místo uživatelských zpráv soubor se sestavou o migraci ve formátu JSON. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Přeskočit po úspěšné migraci přesun souborů project.json, global.json a *.xproj do adresáře backup. + Migration failed. - Migration failed. - + Migrace se nezdařila. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf index 0ceaed9ee..c214c302e 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.de.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET-Befehl "Migrate" + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Befehl zum Migrieren von project.json-Projekten zu MSBuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Der Pfad zu + - einer zu migrierenden Datei vom Typ "project.json". +oder + - einer Datei vom Typ "global.json". (Hierbei werden die in "global.json" angegebenen Ordner migriert.) +oder + - einem zu migrierenden Verzeichnis. (Hierbei wird rekursiv nach zu migrierenden Dateien vom Typ "project.json" gesucht.) +Ohne Angabe wird standardmäßig das aktuelle Verzeichnis verwendet. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Grundlegende MSBuild-Vorlage, die für die migrierte App verwendet werden soll. Standardmäßig wird das in "dotnet new" enthaltene Projekt verwendet. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Die Version des SDK-Pakets, auf das in der migrierten App verwiesen wird. Standardmäßig wird die Version des SDKs in "dotnet new" verwendet. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Der Pfad zu der zu verwendenden XPROJ-Datei. Erforderlich, wenn ein Projektverzeichnis mehrere XPROJ-Dateien enthält. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Migration von Projektverweisen überspringen. Projektverweise werden standardmäßig rekursiv migriert. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Migrationsbericht sowohl in der Konsole als auch in die angegebene Datei ausgeben. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Migrationsberichtsdatei nicht als Benutzermeldungen, sondern als JSON ausgeben. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + "project.json", "global.json" und "*.xproj" nach erfolgreicher Migration nicht in ein Sicherungsverzeichnis verschieben. + Migration failed. - Migration failed. - + Fehler beim Migrieren. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf index c68103b1d..524bdadca 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.es.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Comando Migrate de .NET + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Comando usado para migrar proyectos project.json a MSBuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROYECTO_JSON/JSON_GLOBAL/DIRECTORIO_DEL_PROYECTO @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Ruta de acceso a + - un archivo project.json para migrarlo; +o bien: + - un archivo global.json; migra las carpetas especificadas en global.json; +o bien: + - un directorio para migrar; busca archivos project.json de forma recursiva para migrarlos. +Si no se especifica ninguno, usa el directorio actual de forma predeterminada. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Plantilla base de MSBuild para la aplicación migrada. El valor predeterminado es el proyecto incluido en dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Versión del paquete de SDK al que se hará referencia en la aplicación migrada. El valor predeterminado es la versión del SDK en dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Ruta de acceso al archivo xproj que debe usarse. Es necesario cuando hay más de un archivo xproj en un directorio de proyecto. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Omite la migración de las referencias del proyecto. De forma predeterminada, las referencias del proyecto se migran recursivamente. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Emite el informe de migración en el archivo dado además de la consola. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Emite el archivo de informe de la migración como json en lugar de mensajes al usuario. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Omite el traslado de los archivos project.json, global.json y *.xproj a directorio “backup” después de una migración correcta. + Migration failed. - Migration failed. - + No se pudo llevar a cabo la migración. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf index 4abdd16dd..577e66cc9 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.fr.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Commande de migration .NET + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Commande utilisée pour migrer les projets project.json vers msbuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + JSON_PROJET/JSON_GLOBAL/RÉP_PROJET @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Chemin à + - un fichier project.json à migrer. +ou + - un fichier global.json (migre les dossiers spécifiés dans global.json). +ou + - un répertoire à migrer (recherche de manière récursive les fichiers project.json à migrer). +Sélectionne par défaut le répertoire actif si rien n'est spécifié. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Modèle MSBuild de base à utiliser pour l'application migrée. La valeur par défaut est le projet inclus dans dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Version du package sdk référencée dans l'application migrée. La valeur par défaut est la version du sdk dans dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Chemin du fichier xproj à utiliser. Obligatoire s'il existe plusieurs fichiers xproj dans un répertoire de projet. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Ignorer les références du projet en cours de migration. Par défaut, les références du projet sont migrées de manière récursive. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Envoyer le rapport de migration au fichier donné en plus de la console. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Envoyer le fichier du rapport de migration au format json (et non sous la forme de messages utilisateur). + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Ignorer le déplacement de project.json, global.json et *.xproj dans un répertoire 'backup' après une migration réussie. + Migration failed. - Migration failed. - + Échec de la migration. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf index a6d2a4bc9..c48df5c81 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.it.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Comando Esegui migrazione .NET + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Comando usato per eseguire la migrazione di progetti project.json a MSBuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/DIR_PROGETTO @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Percorso di + - un file project.json di cui eseguire la migrazione. +oppure + - un file global.json. Verrà eseguita la migrazione delle cartelle specificate in global.json. +oppure + - una directory di cui eseguire la migrazione. Verrà eseguita la ricerca ricorsiva dei file project.json di cui eseguire la migrazione. +Se non si specifica un valore, per impostazione predefinita, verrà usata la directory corrente. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Modello MSBuild di base da usare per l'app di cui è stata eseguita la migrazione. L'impostazione predefinita è il progetto incluso in dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Versione del pacchetto SDK a cui verrà fatto riferimento nell'app di cui è stata eseguita la migrazione. L'impostazione predefinita è la versione dell'SDK in dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Percorso del file xproj da usare. Obbligatorio quando in una directory di progetto esistono più file xproj. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Ignora la migrazione dei riferimenti al progetto. Per impostazione predefinita, la migrazione dei riferimenti al progetto è ricorsiva. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Invia il report di migrazione al file specificato oltre che alla console. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Invia il file del report di migrazione come JSON anziché come messaggi utente. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Ignora lo spostamento di project.json, global.json e *.xproj in una directory `backup` dopo una migrazione riuscita. + Migration failed. - Migration failed. - + La migrazione non è riuscita. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf index c1ecb7c65..7e4f79655 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ja.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET Migrate コマンド + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + project.json プロジェクトを msbuild に移行するために使用するコマンド + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + 次へのパス + - 移行する project.json ファイル。 +または + - global.json ファイル。global.json に指定されているフォルダーを移行します。 +または + - 移行するディレクトリ。移行する project.json ファイルを再帰的に検索します。 +何も指定しない場合、既定は現在のディレクトリです。 Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + 移行されたアプリに使用する基本の MSBuild テンプレート。既定は dotnet new に含まれるプロジェクトです。 + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + 移行されたアプリで参照される SDK パッケージのバージョン。既定は dotnet new の SDK のバージョンです。 + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + 使用する xproj ファイルへのパス。プロジェクト ディレクトリに複数の xproj がある場合に必要です。 + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + プロジェクト参照の移行をスキップします。既定では、プロジェクト参照は再帰的に移行されます。 + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + コンソールに加えて、指定されたファイルに移行レポートを出力します。 + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + ユーザー メッセージではなく json として移行レポート ファイルを出力します。 + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + 移行が成功すると、project.json、global.json、および *.xproj の `backup` ディレクトリへの移動をスキップします。 + Migration failed. - Migration failed. - + 移行に失敗しました。 + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf index a6151719f..3f5a8bd17 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ko.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET 마이그레이션 명령 + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + project.json 프로젝트를 msbuild로 마이그레이션하는 데 사용하는 명령입니다. + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + 다음 파일의 경로입니다. + - 마이그레이션할 project.json 파일 +또는 + - global.json 파일. global.json에 지정된 폴더를 마이그레이션합니다. +또는 + - 마이그레이션할 디렉터리. 마이그레이션할 project.json 파일을 재귀적으로 검색합니다. +지정하지 않는 경우 현재 디렉터리로 기본 설정됩니다. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + 마이그레이션된 앱에 사용할 기본 MSBuild 템플릿입니다. 기본값은 새 dotnet에 포함된 프로젝트입니다. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + 마이그레이션된 앱에서 참조되는 sdk 패키지의 버전입니다. 기본값은 새 dotnet의 sdk 버전입니다. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + 사용할 xproj 파일의 경로입니다. 프로젝트 디렉터리에 두 개 이상의 xproj가 있는 경우 필요합니다. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + 프로젝트 참조 마이그레이션을 건너뜁니다. 기본적으로 프로젝트 참조가 재귀적으로 마이그레이션됩니다. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + 마이그레이션 보고서를 콘솔 외에 지정된 파일로도 출력합니다. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + 마이그레이션 보고서 파일을 사용자 메시지가 아니라 json으로 출력합니다. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + 마이그레이션을 완료한 후 project.json, global.json 및 *.xproj를 `백업` 디렉터리로 이동하는 작업을 건너뜁니다. + Migration failed. - Migration failed. - + 마이그레이션하지 못했습니다. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf index 326c7111a..a894e2e5f 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pl.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Polecenie migrate platformy .NET + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Polecenie służące do migrowania projektów project.json do programu MSBuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/KATALOG_PROJEKTU @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Ścieżka do + — pliku project.json, który ma zostać zmigrowany; +lub + — pliku global.json — zostaną zmigrowane foldery podane w tym pliku; +lub + — katalogu, który ma zostać zmigrowany — zostaną rekursywnie wyszukane pliki project.json do zmigrowania. +W przypadku braku podanej wartości domyślnie jest to bieżący katalog. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Podstawowy szablon programu MSBuild do użycia dla zmigrowanej aplikacji. Domyślną wartością jest projekt uwzględniony w poleceniu dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Wersja pakietu SDK, do którego odwołanie będzie się znajdować w zmigrowanej aplikacji. Domyślnie jest to wersja pakietu SDK podana w poleceniu dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Ścieżka do pliku xproj, który ma zostać użyty. Wymagana, gdy w katalogu projektu znajduje się więcej niż jeden plik xproj. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Pomiń migrowanie odwołań do projektów. Domyślnie odwołania do projektów są migrowane rekursywnie. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Wyjściowy raport migracji przekazywany zarówno do danego pliku, jak i do konsoli. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Wyjściowy raport migracji w postaci pliku json zamiast komunikatów dla użytkownika. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Pomiń przenoszenie plików project.json, global.json i *.xproj do katalogu kopii zapasowych po pomyślnej migracji. + Migration failed. - Migration failed. - + Migracja nie powiodła się. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf index dffcdf056..1405eb37f 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.pt-BR.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Comando Migrate do .NET + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Comando usado para migrar projetos project.json para o msbuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + O caminho para + – um arquivo project.json a ser migrado. +ou + – um arquivo global.json, ele migrará as pastas especificadas em global.json. +ou + – um diretório para migrar, ele pesquisará recursivamente os arquivos project.json para migrar. +Usará como padrão o diretório atual se nada for especificado. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Modelo base do MSBuild a ser usado para o aplicativo migrado. O padrão é o projeto incluído em dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + A versão do pacote SDK que será referenciada no aplicativo migrado. O padrão é a versão do SDK em dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + O caminho para o arquivo xproj a usar. Necessário quando houver mais de um xproj em um diretório de projeto. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Ignorar a migração de referências do projeto. Por padrão, as referências do projeto são migradas recursivamente. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Gerar o relatório de migração para o arquivo especificado além de para o console. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Gerar o arquivo de relatório de migração como json em vez de como mensagens de usuário. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Ignorar a migração de project.json, global.json e *.xproj para um diretório de ‘backup’ após uma migração bem-sucedida. + Migration failed. - Migration failed. - + Falha na migração. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf index de1f246e4..6097b304e 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.ru.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + Команда .NET "Миграция" + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + Команда, используемая для миграции проектов project.json в msbuild + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Путь к + — переносимому файлу project.json. +или + — файлу global.json; выполняется миграция папок, указанных в файле global.json. +или + — переносимому каталогу; выполняется рекурсивный поиск файлов project.json для миграции. +По умолчанию применяется текущий каталог, если не указана другая папка. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Основной шаблон MSBuild, используемый для переносимого приложения. По умолчанию применяется проект, указанный в команде dotnet new. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Версия пакета SDK, на который будет ссылаться переносимое приложение. По умолчанию применяется версия пакета SDK в команде dotnet new. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Путь к используемому XPROJ-файлу. Требуется при наличии нескольких XPROJ-файлов в каталоге проекта. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Пропустить миграцию ссылок на проект. По умолчанию ссылки на проект переносятся рекурсивно. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Вывод отчета о миграции в консоли и в заданный файл. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Вывод файла отчета о миграции в формате JSON, а не в виде сообщений для пользователя. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Пропустить перенос файлов project.json, global.json и *.xproj в "резервный" каталог после успешной миграции. + Migration failed. - Migration failed. - + Сбой миграции. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf index 6c163fd3d..b7ff39297 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.tr.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET Migrate Komutu + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + project.json projelerini msbuild’e geçirmek için kullanılan komut + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + Şunların yolu: + - geçirilecek project.json dosyası. +veya + - bir global.json dosyası; global.json içinde belirtilen klasörleri geçirir. +veya + - geçirilecek dizin; geçirilecek project.json dosyalarını yinelemeli olarak arar. +Bir seçenek belirtilmezse, geçerli dizin varsayılan olarak kullanılır. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + Geçirilen uygulama için kullanılacak temel MSBuild şablonu. Yeni dotnet’e eklenen proje, varsayılan değerdir. + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + Geçirilen uygulamada başvurulacak sdk paketinin sürümü. Yeni dotnet’teki sdk sürümü, varsayılan değerdir. + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Kullanılacak xproj dosyasının yolu. Proje dizininde birden fazla xproj olduğunda gereklidir. + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + Proje başvurularını geçirmeyi atlayın. Varsayılan olarak, proje başvuruları yinelemeli olarak geçirilir. + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + Geçiş raporunu, konsola ek olarak belirtilen dosyaya çıkarın. + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + Geçiş raporu dosyasını, kullanıcı iletileri yerine json olarak çıkarın. + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Geçiş başarılı olduktan sonra project.json, global.json ve *.xproj dosyalarını `yedek` bir dizine taşımayı atlayın. + Migration failed. - Migration failed. - + Geçiş başarısız oldu. + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.xlf index 0a60a3c5c..6996bacb3 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.xlf @@ -5,14 +5,14 @@ .NET Migrate Command - + Command used to migrate project.json projects to msbuild - + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR @@ -20,6 +20,8 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. @@ -27,35 +29,35 @@ Defaults to current directory if nothing is specified. Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + Skip migrating project references. By default project references are migrated recursively. - + Output migration report to the given file in addition to the console. - + Output migration report file as json rather than user messages. - + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + Migration failed. - + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf index 4524740ee..68d9792a7 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET 迁移命令 + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + 用于将 project.json 项目迁移到 MSBuild 的命令 + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + 指向 + - 要迁移的 project.json 文件的路径。 +或 + - global.json 文件的路径,它将迁移 global.json 中指定的文件夹。 +或 + - 要迁移目录的路径,将递归搜索要迁移的 project.json 文件。 +如果未指定,则默认使用当前目录。 Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + 针对迁移的应用使用的基本 MSBuild 模板。默认值为 dotnet 新建中包含的项目。 + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + 要在迁移的应用中引用的 SDK 包版本。默认值为 dotnet 新建中的 SDK 版本。 + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + 要使用的 xproj 文件的路径。项目目录中有多个 xproj 时需要此项。 + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + 跳过迁移项目引用。默认情况下,项目引用是按递归方式进行迁移的。 + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + 除控制台外,还将为给定文件输出迁移报告。 + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + 将迁移报告文件输出为 json 而非用户信息。 + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + 迁移成功后,跳过将 project.json、global.json 和 *.xproj 移至“备份”目录。 + Migration failed. - Migration failed. - + 迁移失败。 + diff --git a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf index 3698b2e2b..36f4c1f42 100644 --- a/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-migrate/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,17 +5,17 @@ .NET Migrate Command - .NET Migrate Command - + .NET 移轉命令 + Command used to migrate project.json projects to msbuild - Command used to migrate project.json projects to msbuild - + 用來將 project.json 專案移轉到 MSBuild 的命令 + - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR - PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/SOLUTION_FILE/PROJECT_DIR + PROJECT_JSON/GLOBAL_JSON/PROJECT_DIR @@ -23,57 +23,59 @@ - a project.json file to migrate. or - a global.json file, it will migrate the folders specified in global.json. +or + - a solution.sln file, it will migrate the projects referenced in the solution. or - a directory to migrate, it will recursively search for project.json files to migrate. Defaults to current directory if nothing is specified. - The path to - - a project.json file to migrate. -or - - a global.json file, it will migrate the folders specified in global.json. -or - - a directory to migrate, it will recursively search for project.json files to migrate. -Defaults to current directory if nothing is specified. + 路徑連到 + - 要移轉的 project.json 檔案。 +或 + - global.json 檔案,將會移轉 global.json 中指定的資料夾。 +或 + - 要移轉的目錄,將會遞迴搜尋要移轉的 project.json 檔案。 +如果未指定任何項目,預設為目前的目錄。 Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - Base MSBuild template to use for migrated app. The default is the project included in dotnet new. - + 要用於受移轉應用程式的基底 MSBuild 範本。預設為 dotnet new 中所包含的專案。 + The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - The version of the sdk package that will be referenced in the migrated app. The default is the version of the sdk in dotnet new. - + 移轉的應用程式中將要參考的 SDK 套件版本。預設為 dotnet new 中的 SDK 版本。 + The path to the xproj file to use. Required when there is more than one xproj in a project directory. - The path to the xproj file to use. Required when there is more than one xproj in a project directory. - + 要使用之 xproj 檔案的路徑。當專案目錄中有多個 xproj 時為必要項。 + Skip migrating project references. By default project references are migrated recursively. - Skip migrating project references. By default project references are migrated recursively. - + 跳過移轉專案參考。預設會遞迴移轉專案參考。 + Output migration report to the given file in addition to the console. - Output migration report to the given file in addition to the console. - + 將移轉報告輸出到指定的檔案及主控台。 + Output migration report file as json rather than user messages. - Output migration report file as json rather than user messages. - + 將移轉報告檔案輸出為 JSON 而不是使用者訊息。 + Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - Skip moving project.json, global.json, and *.xproj to a `backup` directory after successful migration. - + 在成功移轉後,跳過將 project.json、global.json 和 *.xproj 移至 `backup` 目錄的作業。 + Migration failed. - Migration failed. - + 移轉失敗。 + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.cs.xlf index 4317523b5..eabcff799 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.cs.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Vytvoření nového projektu {0} se nezdařilo, protože projekt už existuje. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Vytvoření nového projektu {0} se nezdařilo, protože adresář už obsahuje {1}. + Creating new {0} project failed. - Creating new {0} project failed. - + Vytvoření nového projektu {0} se nezdařilo. + Created new {0} project in {1}. - Created new {0} project in {1}. - + V adresáři {1} byl vytvořen nový projekt {0}. + .NET Initializer - .NET Initializer - + .NET Initializer + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Inicializuje prázdný projekt pro platformu .NET. + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Platné hodnoty pro {0}: {1} + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Jazyk projektu Platné hodnoty: {0} + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + Typ projektu {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Nerozpoznaný jazyk: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Nerozpoznaný typ: {0} + Available types for {0} : - Available types for {0} : - + Dostupné typy pro {0}: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.de.xlf index eaa1568a4..76d497a30 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.de.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Fehler beim Erstellen des neuen Projekts "{0}". Das Projekt ist bereits vorhanden. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Fehler beim Erstellen des neuen Projekts "{0}". "{1}" ist im Verzeichnis bereits vorhanden. + Creating new {0} project failed. - Creating new {0} project failed. - + Fehler beim Erstellen des neuen Projekts "{0}". + Created new {0} project in {1}. - Created new {0} project in {1}. - + Das neue Projekt "{0}" wurde in "{1}" erstellt. + .NET Initializer - .NET Initializer - + .NET-Initialisierer + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Initialisiert ein leeres Projekt für die .NET-Plattform. + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Gültige Werte für "{0}": {1}. + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Sprache des Projekts. Gültige Werte: {0}. + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + Art des Projekts {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Unbekannte Sprache: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Unbekannter Typ: {0} + Available types for {0} : - Available types for {0} : - + Verfügbare Typen für "{0}": + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.es.xlf index 99b817af3..c9b156f9b 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.es.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + No se pudo crear el nuevo proyecto {0}, porque ya existe. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + No se pudo crear el nuevo proyecto {0}, porque el directorio ya contiene {1} + Creating new {0} project failed. - Creating new {0} project failed. - + No se pudo crear el nuevo proyecto {0}. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Se ha creado el nuevo proyecto {0} en {1}. + .NET Initializer - .NET Initializer - + Inicializador de .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Inicializa un proyecto vacío para la plataforma .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Valores válidos para {0}: {1}. + LANGUAGE - LANGUAGE - + LENGUAJE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Lenguaje del proyecto. Valores válidos: {0}. + TYPE - TYPE - + TIPO + Type of project {0} - Type of project {0} - + Tipo de proyecto {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Lenguaje no reconocido: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Tipo no reconocido: {0} + Available types for {0} : - Available types for {0} : - + Tipos disponibles para {0} : + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.fr.xlf index f83ccb2c5..6ddb58297 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.fr.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Échec de la création du projet {0}, car le projet existe déjà. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Échec de la création du projet {0}, car le répertoire contient déjà {1} + Creating new {0} project failed. - Creating new {0} project failed. - + Échec de la création du projet {0}. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Projet {0} créé dans {1}. + .NET Initializer - .NET Initializer - + Initialiseur .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Initialise un projet vide pour la plateforme .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Valeurs valides pour {0} : {1}. + LANGUAGE - LANGUAGE - + LANGAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Langage du projet Valeurs valides : {0}. + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + Type de projet {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Langage non reconnu : {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Type non reconnu : {0} + Available types for {0} : - Available types for {0} : - + Types disponibles pour {0} : + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.it.xlf index 14f6be308..d5a499d87 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.it.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + La creazione del nuovo progetto {0} non è riuscita. Il progetto esiste già. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + La creazione del nuovo progetto {0} non è riuscita. La directory contiene già {1} + Creating new {0} project failed. - Creating new {0} project failed. - + La creazione del nuovo progetto {0} non è riuscita. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Il nuovo progetto {0} è stato creato in {1}. + .NET Initializer - .NET Initializer - + Inizializzatore .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Inizializza il progetto vuoto per la piattaforma .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Valori validi per {0}: {1}. + LANGUAGE - LANGUAGE - + LINGUAGGIO + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Linguaggio del progetto Valori validi: {0}. + TYPE - TYPE - + TIPO + Type of project {0} - Type of project {0} - + Tipo del progetto {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Linguaggio non riconosciuto: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Tipo non riconosciuto: {0} + Available types for {0} : - Available types for {0} : - + Tipi disponibili per {0}: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ja.xlf index 31d37e545..b5944bdff 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ja.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + 新しい {0} プロジェクトの作成に失敗しました。プロジェクトは既に存在します。 + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + 新しい {0} プロジェクトの作成に失敗しました。ディレクトリに既に {1} が含まれています + Creating new {0} project failed. - Creating new {0} project failed. - + 新しい {0} プロジェクトの作成に失敗しました。 + Created new {0} project in {1}. - Created new {0} project in {1}. - + {1} に新しい {0} プロジェクトを作成しました。 + .NET Initializer - .NET Initializer - + .NET Initializer + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + .NET Platform の空のプロジェクトを初期化する + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + {0} の有効な値: {1}。 + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + プロジェクトの言語 有効な値: {0}。 + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + プロジェクトの種類 {0} + Unrecognized language: {0} - Unrecognized language: {0} - + 認識できない言語: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + 認識できない種類: {0} + Available types for {0} : - Available types for {0} : - + {0} に対して使用可能な種類: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ko.xlf index a16a1eae6..6e8b8a60d 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ko.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + 새 {0} 프로젝트를 만들지 못했습니다. 프로젝트가 이미 있습니다. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + 새 {0} 프로젝트를 만들지 못했습니다. 디렉터리에 {1}이(가) 이미 있습니다. + Creating new {0} project failed. - Creating new {0} project failed. - + 새 {0} 프로젝트를 만들지 못했습니다. + Created new {0} project in {1}. - Created new {0} project in {1}. - + 새 {0} 프로젝트를 {1}에 만들었습니다. + .NET Initializer - .NET Initializer - + .NET 이니셜라이저 + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + .NET 플랫폼용 빈 프로젝트를 초기화합니다. + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + {0}의 유효한 값은 {1}입니다. + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + 프로젝트의 언어 유효한 값은 {0}입니다. + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + 프로젝트 형식 {0} + Unrecognized language: {0} - Unrecognized language: {0} - + 인식할 수 없는 언어: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + 인식할 수 없는 형식: {0} + Available types for {0} : - Available types for {0} : - + {0}에 사용 가능한 형식: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pl.xlf index 0ed95a0c0..ee27cf747 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pl.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Tworzenie nowego projektu {0} nie powiodło się — projekt już istnieje. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Tworzenie nowego projektu {0} nie powiodło się — katalog zawiera już element {1} + Creating new {0} project failed. - Creating new {0} project failed. - + Tworzenie nowego projektu {0} nie powiodło się. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Utworzono nowy projekt {0} w lokalizacji {1}. + .NET Initializer - .NET Initializer - + Inicjator platformy .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Inicjuje pusty projekt dla platformy .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Prawidłowe wartości dla elementu {0}: {1}. + LANGUAGE - LANGUAGE - + JĘZYK + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Język projektu Prawidłowe wartości: {0}. + TYPE - TYPE - + TYP + Type of project {0} - Type of project {0} - + Typ projektu {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Nierozpoznany język: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Nierozpoznany typ: {0} + Available types for {0} : - Available types for {0} : - + Dostępne typy dla elementu {0}: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pt-BR.xlf index ea9e4b2e6..eb8736093 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.pt-BR.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Falha ao criar o novo projeto {0}, o projeto já existe. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Falha ao criar o novo projeto {0}, o diretório já contém {1} + Creating new {0} project failed. - Creating new {0} project failed. - + Falha ao criar o novo projeto {0}. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Criado o novo projeto {0} em {1}. + .NET Initializer - .NET Initializer - + Inicializador do .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Inicializa um projeto em branco para a Plataforma .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Valores válidos para {0}: {1}. + LANGUAGE - LANGUAGE - + LINGUAGEM + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Idioma do projeto Valores válidos: {0}. + TYPE - TYPE - + TIPO + Type of project {0} - Type of project {0} - + Tipo do projeto {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Idioma não reconhecido: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Tipo não reconhecido: {0} + Available types for {0} : - Available types for {0} : - + Tipos disponíveis para {0}: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ru.xlf index 1509d41a1..f61ce538f 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.ru.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Ошибка создания проекта {0}: проект уже существует. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Ошибка создания проекта {0}: каталог уже содержит {1} + Creating new {0} project failed. - Creating new {0} project failed. - + Ошибка создания проекта {0}. + Created new {0} project in {1}. - Created new {0} project in {1}. - + Проект {0} создан в {1}. + .NET Initializer - .NET Initializer - + Инициализатор .NET + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + Инициализация пустого проекта для платформы .NET + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + Допустимые значения для {0}: {1}. + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Язык проекта Допустимые значения: {0}. + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + Тип проекта {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Нераспознанный язык: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Нераспознанный тип: {0} + Available types for {0} : - Available types for {0} : - + Доступные типы для {0}: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.tr.xlf index 03fe78b96..268a26b12 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.tr.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + Yeni {0} projesi oluşturulamadı, proje zaten var. + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + Yeni {0} projesi oluşturulamadı, dizinde zaten {1} var + Creating new {0} project failed. - Creating new {0} project failed. - + Yeni {0} projesi oluşturulamadı. + Created new {0} project in {1}. - Created new {0} project in {1}. - + {1} içinde yeni {0} projesi oluşturuldu. + .NET Initializer - .NET Initializer - + .NET Başlatıcısı + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + .NET Platformu için boş proje başlatır + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + {0} için geçerli değerler: {1}. + LANGUAGE - LANGUAGE - + DİL + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + Projenin dili Geçerli değerler: {0}. + TYPE - TYPE - + TÜR + Type of project {0} - Type of project {0} - + Projenin türü {0} + Unrecognized language: {0} - Unrecognized language: {0} - + Tanınmayan dil: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + Tanınmayan tür: {0} + Available types for {0} : - Available types for {0} : - + {0} için kullanılabilir türler: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.xlf index f9d2a4b11..ed005692a 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.xlf @@ -5,59 +5,59 @@ Creating new {0} project failed, project already exists. - + Creating new {0} project failed, directory already contains {1} - + Creating new {0} project failed. - + Created new {0} project in {1}. - + .NET Initializer - + Initializes empty project for .NET Platform - + Valid values for {0}: {1}. - + LANGUAGE - + Language of project Valid values: {0}. - + TYPE - + Type of project {0} - + Unrecognized language: {0} - + Unrecognized type: {0} - + Available types for {0} : - + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hans.xlf index eb211321a..f7e534439 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + 创建新的 {0} 项目失败,项目已存在。 + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + 创建新的 {0} 项目失败,目录已包含 {1} + Creating new {0} project failed. - Creating new {0} project failed. - + 创建新的 {0} 项目失败。 + Created new {0} project in {1}. - Created new {0} project in {1}. - + 已在 {1} 中创建新的 {0} 项目。 + .NET Initializer - .NET Initializer - + .NET 初始值设定项 + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + 初始化 .NET 平台的空项目 + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + {0}: {1} 的有效值。 + LANGUAGE - LANGUAGE - + LANGUAGE + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + 项目语言 有效值: {0}。 + TYPE - TYPE - + TYPE + Type of project {0} - Type of project {0} - + 项目类型 {0} + Unrecognized language: {0} - Unrecognized language: {0} - + 未识别的语言: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + 未识别的类型: {0} + Available types for {0} : - Available types for {0} : - + {0} 的可用类型: + diff --git a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hant.xlf index 99c415b1d..308f18fd8 100644 --- a/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-new/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,73 +5,73 @@ Creating new {0} project failed, project already exists. - Creating new {0} project failed, project already exists. - + 建立新的 {0} 專案失敗,專案已經存在。 + Creating new {0} project failed, directory already contains {1} - Creating new {0} project failed, directory already contains {1} - + 建立新的 {0} 專案失敗,目錄已經包含 {1} + Creating new {0} project failed. - Creating new {0} project failed. - + 建立新的 {0} 專案失敗。 + Created new {0} project in {1}. - Created new {0} project in {1}. - + 在 {1} 中建立新的 {0} 專案。 + .NET Initializer - .NET Initializer - + .NET 初始設定式 + Initializes empty project for .NET Platform - Initializes empty project for .NET Platform - + 為 .NET 平台將空專案初始化 + Valid values for {0}: {1}. - Valid values for {0}: {1}. - + {0} 的有效值: {1}。 + LANGUAGE - LANGUAGE - + 語言 + Language of project Valid values: {0}. - Language of project Valid values: {0}. - + 專案的語言 有效值: {0}。 + TYPE - TYPE - + 類型 + Type of project {0} - Type of project {0} - + 專案的類型 {0} + Unrecognized language: {0} - Unrecognized language: {0} - + 無法辨識的語言: {0} + Unrecognized type: {0} - Unrecognized type: {0} - + 無法辨識的類型: {0} + Available types for {0} : - Available types for {0} : - + {0} 的可用類型: + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf index dc7bf494a..0dbd35407 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.cs.xlf @@ -5,73 +5,73 @@ pack - pack - + zabalit + pack for msbuild - pack for msbuild - + zabalit pro msbuild + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + Adresář pro ukládání výstupů + Do not build project before packing - Do not build project before packing - + Nesestavujte projekt, dokud ho nezabalíte. + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Zahrnout do výstupní složky soubory PDB a knihovny DLL + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Zahrne soubory PDB a zdrojové soubory. Zdrojové soubory ve složce srcve výsledném balíčku NuGet + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Konfigurace použitá k sestavení + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Definuje, čím nahradit „*“ v poli verze v souboru project.json. + Set the serviceable flag in the package - Set the serviceable flag in the package - + Nastavit v balíčku příznak obsluhovatelnosti + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Balený projekt – výchozí hodnotou je soubor projektu v aktuálním adresáři. Může to být cesta k libovolnému souboru projektu. + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf index 9b84ee707..70c494b76 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.de.xlf @@ -5,73 +5,73 @@ pack - pack - + Packen + pack for msbuild - pack for msbuild - + Für MSBuild packen + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + Verzeichnis für Ausgaben + Do not build project before packing - Do not build project before packing - + Projekt nicht vor dem Packen erstellen + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + PDBs zusammen mit DLLs im Ausgabeordner einschließen + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + PDBs und Quelldateien einschließen. Quelldateien werden im Ordner "src" im resultierenden NuGet-Paket abgelegt. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Konfiguration für den Buildvorgang + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Definiert, wodurch "*" im Versionsfeld in "project.json" ersetzt werden soll. + Set the serviceable flag in the package - Set the serviceable flag in the package - + Verarbeitungsflag im Paket festlegen + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Das zu packende Projekt (standardmäßig die Projektdatei im aktuellen Verzeichnis). Kann ein Pfad zu einer beliebigen Projektdatei sein. + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf index a16d61ffc..68e7a1edd 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.es.xlf @@ -5,73 +5,73 @@ pack - pack - + pack + pack for msbuild - pack for msbuild - + pack para MSBuild + OUTPUT_DIR - OUTPUT_DIR - + DIRECTORIO_DE_SALIDA + Directory in which to place outputs - Directory in which to place outputs - + Directorio donde se ponen los archivos de salida + Do not build project before packing - Do not build project before packing - + No se compila el proyecto antes de crear el paquete + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Se incluyen los archivos PDB junto con las bibliotecas DLL en la carpeta de salida + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Se incluyen los archivos PDB y de código fuente. Los archivos de código fuente van a la carpeta src del paquete NuGet resultante + CONFIGURATION - CONFIGURATION - + CONFIGURACIÓN + Configuration under which to build - Configuration under which to build - + Configuración para la compilación + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIJO_DE_VERSIÓN + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Define con qué debe reemplazarse “*” en el campo de versión de project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Establece la marca serviceable en el paquete + PROJECT - PROJECT - + PROYECTO + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Proyecto que se va a empaquetar; de forma predeterminada, toma el archivo del proyecto del directorio actual. Puede ser una ruta de acceso a cualquier archivo de proyecto + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf index 5b2372e0f..159eecc76 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.fr.xlf @@ -5,73 +5,73 @@ pack - pack - + compresser + pack for msbuild - pack for msbuild - + compresser pour msbuild + OUTPUT_DIR - OUTPUT_DIR - + RÉP_SORTIE + Directory in which to place outputs - Directory in which to place outputs - + Répertoire dans lequel placer les sorties + Do not build project before packing - Do not build project before packing - + Ne pas générer le projet avant la compression + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Inclure les PDB avec les DLL dans le dossier de sortie + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Inclure les PDB et les fichiers sources. Les fichiers sources vont dans le dossier src dans le paquet NuGet résultant + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Configuration sous laquelle générer la build + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFIXE_VERSION + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Définit par quoi remplacer '*' dans le champ version dans project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Définir l'indicateur de maintenance dans le package + PROJECT - PROJECT - + PROJET + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Projet à compresser, par défaut le fichier projet dans le répertoire actif. Il peut s'agir d'un chemin vers n'importe quel fichier projet + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf index 3d0f4ac64..2c291d8f3 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.it.xlf @@ -5,73 +5,73 @@ pack - pack - + pack + pack for msbuild - pack for msbuild - + pack per MSBuild + OUTPUT_DIR - OUTPUT_DIR - + DIR_OUTPUT + Directory in which to place outputs - Directory in which to place outputs - + Directory in cui inserire gli output + Do not build project before packing - Do not build project before packing - + Non compila il progetto prima della creazione del pacchetto + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Include i PDB unitamente alle DLL nella cartella di output + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Include i PDB e i file di origine. I file di origine vengono inseriti nella cartella src nel pacchetto NuGet risultante + CONFIGURATION - CONFIGURATION - + CONFIGURAZIONE + Configuration under which to build - Configuration under which to build - + Configurazione con cui eseguire la compilazione + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFISSO_VERSIONE + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Consente di definire con che cosa sostituire `*` nel campo della versione in project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Imposta il flag serviceable nel pacchetto + PROJECT - PROJECT - + PROGETTO + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Progetto di cui creare il pacchetto. Per impostazione predefinita, verrà usato il file di progetto nella directory corrente. Può essere un percorso di qualsiasi file di progetto + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf index decd25109..cd827e530 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ja.xlf @@ -5,73 +5,73 @@ pack - pack - + パック + pack for msbuild - pack for msbuild - + msbuild のパック + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + 出力を配置するディレクトリ + Do not build project before packing - Do not build project before packing - + パックする前にプロジェクトを構築しないでください + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + 出力フォルダーに DLL と共に PDB を含める + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + PDB とソース ファイルを含めます。ソース ファイルは、結果の nuget パッケージの src フォルダーに移動します + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 構築する構成 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + project.json のバージョン フィールド内で `*` を置き換えるものを定義する + Set the serviceable flag in the package - Set the serviceable flag in the package - + パッケージに処理可能なフラグを設定する + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + パックするプロジェクト。既定は現在のディレクトリ内のプロジェクト ファイルです。任意のプロジェクト ファイルへのパスを指定できます + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf index ff68d6e4e..ee8b3b7c3 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ko.xlf @@ -5,73 +5,73 @@ pack - pack - + + pack for msbuild - pack for msbuild - + msbuild용 팩입니다. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + 출력을 배치할 디렉터리입니다. + Do not build project before packing - Do not build project before packing - + 압축하기 전에 프로젝트를 빌드하지 않습니다. + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + 출력 폴더에 DLL과 함께 PDB를 포함합니다. + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + PDB 및 소스 파일을 포함합니다. 소스 파일이 결과 nuget 패키지의 src 폴더로 이동합니다. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 빌드할 구성입니다. + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + project.json의 버전 필드에서 `*`를 대체할 항목을 정의합니다. + Set the serviceable flag in the package - Set the serviceable flag in the package - + 패키지에서 서비스 가능 플래그를 설정합니다. + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + 압축할 프로젝트입니다. 현재 디렉터리의 프로젝트 파일로 기본 설정됩니다. 프로젝트 파일의 경로일 수 있습니다. + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf index b44d33d4e..b6f0e8d35 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pl.xlf @@ -5,73 +5,73 @@ pack - pack - + pakowanie + pack for msbuild - pack for msbuild - + pakowanie dla programu MSBuild + OUTPUT_DIR - OUTPUT_DIR - + KATALOG_WYJŚCIOWY + Directory in which to place outputs - Directory in which to place outputs - + Katalog, w którym mają zostać umieszczone dane wyjściowe + Do not build project before packing - Do not build project before packing - + Nie kompiluj projektu przed pakowaniem + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Dołącz pliki PDB wraz z bibliotekami DLL w folderze wyjściowym + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Dołącz pliki PDB i pliki źródłowe. Pliki źródłowe zostaną umieszczone w folderze src w wynikowym pakiecie NuGet + CONFIGURATION - CONFIGURATION - + KONFIGURACJA + Configuration under which to build - Configuration under which to build - + Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIKS_WERSJI + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Określa, czym ma zostać zastąpiona gwiazdka (*) w polu wersji w pliku project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Ustaw w pakiecie flagę oznaczającą możliwość obsługi + PROJECT - PROJECT - + PROJEKT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Projekty do spakowania, wartością domyślną jest plik projektu w bieżącym katalogu. Może to być ścieżka do dowolnego pliku projektu + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf index e0beefb4c..544a23b2a 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.pt-BR.xlf @@ -5,73 +5,73 @@ pack - pack - + empacotar + pack for msbuild - pack for msbuild - + empacotar para o msbuild + OUTPUT_DIR - OUTPUT_DIR - + DIRETÓRIO_DE_SAÍDA + Directory in which to place outputs - Directory in which to place outputs - + Diretório no qual colocar as saídas + Do not build project before packing - Do not build project before packing - + Não compile o projeto antes de empacotar + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Incluir os PDBs juntamente com os DLLs na pasta de saída + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Incluir os arquivos de origem e os PDBs. Os arquivos de origem vão para a pasta de origem no pacote nuget resultante + CONFIGURATION - CONFIGURATION - + CONFIGURAÇÃO + Configuration under which to build - Configuration under which to build - + Configuração sob a qual compilar + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIXO_DA_VERSÃO + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Define pelo que ‘*’ deve ser substituído no campo de versão no project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Definir o sinalizador operacional no pacote + PROJECT - PROJECT - + PROJETO + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + O projeto a ser empacotado, usa como padrão o arquivo de projeto no diretório atual. Pode ser um caminho para qualquer arquivo de projeto + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf index dd028a18b..0f27b0caa 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.ru.xlf @@ -5,73 +5,73 @@ pack - pack - + упаковать + pack for msbuild - pack for msbuild - + упаковать для msbuild + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + Каталог для размещения выходных данных + Do not build project before packing - Do not build project before packing - + Не выполнять сборку проектов перед упаковкой + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Включать PDB-файлы вместе с библиотеками DLL в выходную папку + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + Включение PDB-файлов и исходных файлов. Исходные файлы передаются в папку src в получившемся проекте NuGet + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Конфигурация, в которой выполняется сборка + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Определяет элемент, заменяющий "*" в поле версии файла project.json + Set the serviceable flag in the package - Set the serviceable flag in the package - + Задать флаг "подлежит обслуживанию" в пакете + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Упаковываемый проект; по умолчанию используется файл проекта в текущем каталоге. Может быть путем к любому файлу проекта + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf index 1b2d3ad77..bc98ef5cf 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.tr.xlf @@ -5,73 +5,73 @@ pack - pack - + pack + pack for msbuild - pack for msbuild - + msbuild paketi + OUTPUT_DIR - OUTPUT_DIR - + ÇIKIŞ_DİZİNİ + Directory in which to place outputs - Directory in which to place outputs - + Çıkışların yerleştirileceği dizin + Do not build project before packing - Do not build project before packing - + Projeyi derlemeden önce paketleyin + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + Çıkış klasörüne DLL’ler ile birlikte PDB’leri ekleyin + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + PDB’leri ve kaynak dosyaları ekleyin. Elde edilen nuget paketinde kaynak dosyaları, src klasöründe yer alır + CONFIGURATION - CONFIGURATION - + YAPILANDIRMA + Configuration under which to build - Configuration under which to build - + Derlemenin gerçekleştirileceği yapılandırma + VERSION_SUFFIX - VERSION_SUFFIX - + SÜRÜM_SONEKİ + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + Project.json dosyasındaki sürüm alanında `*` simgesinin neyle değiştirileceğini tanımlar + Set the serviceable flag in the package - Set the serviceable flag in the package - + Pakette serviceable bayrağını ayarlayın + PROJECT - PROJECT - + PROJE + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + Paketlenecek proje; varsayılan olarak, geçerli dizindeki proje dosyasıdır. Herhangi bir proje dosyasının yolu olabilir + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.xlf index 3bb713335..5ccc715cc 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.xlf @@ -5,59 +5,59 @@ pack - + pack for msbuild - + OUTPUT_DIR - + Directory in which to place outputs - + Do not build project before packing - + Include PDBs along with the DLLs in the output folder - + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + CONFIGURATION - + Configuration under which to build - + VERSION_SUFFIX - + Defines what `*` should be replaced with in version field in project.json - + Set the serviceable flag in the package - + PROJECT - + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf index 9385831a8..fd968c372 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,73 +5,73 @@ pack - pack - + + pack for msbuild - pack for msbuild - + 用于 MSBuild 的包 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + 用于放置输出的目录 + Do not build project before packing - Do not build project before packing - + 打包之前不要生成项目 + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + 输出文件夹中包括 PDB 和 DLL。 + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + 包括 PDB 和源文件。源文件放入 nuget 结果包的 src 文件夹中 + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 在何处生成配置 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + 定义 project.json 的版本字段应该替换哪个 “*”。 + Set the serviceable flag in the package - Set the serviceable flag in the package - + 在包中设置可用标志 + PROJECT - PROJECT - + PROJECT + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + 要打包的项目,默认为当前目录中的项目文件。可以是任何项目文件的路径 + diff --git a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hant.xlf index 60e85a285..fabe6c0b6 100644 --- a/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-pack/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,73 +5,73 @@ pack - pack - + 套件 + pack for msbuild - pack for msbuild - + MSBuild 套件 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Directory in which to place outputs - Directory in which to place outputs - + 要放置輸出的目錄 + Do not build project before packing - Do not build project before packing - + 請勿在封裝前建置專案 + Include PDBs along with the DLLs in the output folder - Include PDBs along with the DLLs in the output folder - + 將 PDB 和 DLL 包含在輸出資料夾中 + Include PDBs and source files. Source files go into the src folder in the resulting nuget package - Include PDBs and source files. Source files go into the src folder in the resulting nuget package - + 包含 PDB 和來源檔案。來源檔案會傳入產生之 NuGet 套件中的 src 資料夾 + CONFIGURATION - CONFIGURATION - + 組態 + Configuration under which to build - Configuration under which to build - + 作為建置依據的組態 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines what `*` should be replaced with in version field in project.json - Defines what `*` should be replaced with in version field in project.json - + 在 project.json 的版本欄位中定義 `*` 的取代項目 + Set the serviceable flag in the package - Set the serviceable flag in the package - + 設定套件中提供服務的旗標 + PROJECT - PROJECT - + 專案 + The project to pack, defaults to the project file in the current directory. Can be a path to any project file - The project to pack, defaults to the project file in the current directory. Can be a path to any project file - + 要封裝的專案,預設為目前目錄中的專案檔。可以是任何專案檔的路徑 + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.cs.xlf index d9e1afd8a..9bdb38f25 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.cs.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET Publisher + Publisher for the .NET Platform - Publisher for the .NET Platform - + Vydavatel pro platformu .NET + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Soubor projektu publikovaný nástrojem MSBuild. Pokud není zadaný soubor projektu, nástroj MSBuild vyhledá v aktuálním pracovním adresáři soubor s příponou, která končí na „proj“, a použije ho. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + Cílová platforma pro publikování + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Cílový modul runtime pro publikování. Výchozí možnost je publikovat přenosnou aplikaci. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + Cesta pro publikování aplikace + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Konfigurace použitá k sestavení + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Definuje hodnotu vlastnosti $(VersionSuffix) v projektu. + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.de.xlf index c7f7404db..f6465d8d7 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.de.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET-Herausgeber + Publisher for the .NET Platform - Publisher for the .NET Platform - + Herausgeber für die .NET-Plattform + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Die zu veröffentlichende MSBuild-Projektdatei. Wenn keine Projektdatei angegeben ist, durchsucht MSBuild das aktuelle Arbeitsverzeichnis nach einer Datei mit einer Dateierweiterung, die auf "proj" endet, und verwendet diese Datei. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + Zielframework für die Veröffentlichung + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Ziellaufzeit für die Veröffentlichung. Standardmäßig wird eine portable Anwendung veröffentlicht. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + Pfad, an dem die App veröffentlicht werden soll + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Konfiguration für den Buildvorgang + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Definiert den Wert für die Eigenschaft "$(VersionSuffix)" im Projekt. + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.es.xlf index 713b75ec4..65b39d4b9 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.es.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Publicador de .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Publicador para la plataforma .NET + PROJECT - PROJECT - + PROYECTO + 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. - 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. - + Archivo del proyecto de MSBuild que se va a publicar. Si no se especifica un archivo del proyecto, MSBuild busca en el directorio de trabajo actual un archivo que tenga una extensión de archivo que acabe en “proj” y utiliza ese archivo. + FRAMEWORK - FRAMEWORK - + PLATAFORMA + Target framework to publish for - Target framework to publish for - + Plataforma de destino para la que se publica + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + ID_DEL_ENTORNO_DE_TIEMPO_DE_EJECUCIÓN + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Entorno en tiempo de ejecución para el que se publica. El valor predeterminado es publicar una aplicación móvil. + OUTPUT_DIR - OUTPUT_DIR - + DIRECTORIO_DE_SALIDA + Path in which to publish the app - Path in which to publish the app - + Ruta de acceso donde se publica la aplicación + CONFIGURATION - CONFIGURATION - + CONFIGURACIÓN + Configuration under which to build - Configuration under which to build - + Configuración para la compilación + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIJO_DE_VERSIÓN + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Define el valor para la propiedad $(VersionSuffix) del proyecto + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.fr.xlf index 0427e9a00..decb78307 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.fr.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Éditeur .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Éditeur pour la plateforme .NET + PROJECT - PROJECT - + PROJET + 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. - 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. - + Fichier projet MSBuild à publier. Si aucun fichier projet n'est spécifié, MSBuild recherche dans le répertoire de travail actif un fichier dont l'extension se termine par 'proj' et utilise ce dernier. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + Framework cible de la publication + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTIFICATEUR_RUNTIME + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Runtime cible de la publication. Par défaut, une application portable est publiée. + OUTPUT_DIR - OUTPUT_DIR - + RÉP_SORTIE + Path in which to publish the app - Path in which to publish the app - + Chemin vers lequel publier l'application + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Configuration sous laquelle générer la build + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFIXE_VERSION + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Définit la valeur de la propriété $(VersionSuffix) dans le projet + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.it.xlf index e2113e785..2e9c40b25 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.it.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Editore .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Editore per la piattaforma .NET + PROJECT - PROJECT - + PROGETTO + 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. - 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. - + File di progetto MSBuild da pubblicare. Se non si specifica un file di progetto, MSBuild cerca nella directory di lavoro corrente un file la cui estensione termina con `proj` e usa tale file. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + Framework di destinazione per cui eseguire la pubblicazione + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTIFICATORE_RUNTIME + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Runtime di destinazione per cui eseguire la pubblicazione. Per impostazione predefinita, viene pubblicata un'applicazione portatile. + OUTPUT_DIR - OUTPUT_DIR - + DIR_OUTPUT + Path in which to publish the app - Path in which to publish the app - + Percorso in cui pubblicare l'app + CONFIGURATION - CONFIGURATION - + CONFIGURAZIONE + Configuration under which to build - Configuration under which to build - + Configurazione con cui eseguire la compilazione + VERSION_SUFFIX - VERSION_SUFFIX - + SUFFISSO_VERSIONE + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Consente di definire il valore per la proprietà $(VersionSuffix) nel progetto + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ja.xlf index 3f45ff0ef..9bf7b8901 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ja.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET Publisher + Publisher for the .NET Platform - Publisher for the .NET Platform - + .NET Platform 用パブリッシャー + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 発行する MSBuild プロジェクト ファイルプロジェクト ファイルを指定しなかった場合、MSBuild は現在の作業ディレクトリの中から "proj" で終わるファイル拡張子を検索し、そのファイルを使用します。 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + 発行用のターゲット フレームワーク + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + 発行用のターゲット ランタイム既定では、ポータブル アプリケーションを発行します。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + アプリを発行するパス + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 構築する構成 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + プロジェクトの $(VersionSuffix) プロパティの値を定義します。 + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ko.xlf index 13eb57906..2afa06bea 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ko.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET 게시자 + Publisher for the .NET Platform - Publisher for the .NET Platform - + .NET 플랫폼용 게시자입니다. + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 게시할 MSBuild 프로젝트 파일입니다. 프로젝트 파일을 지정하지 않으면 MSBuild는 현재 작업 디렉터리에서 파일 확장명이 ‘proj’로 끝나는 파일을 찾아서 사용합니다. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + 게시할 대상 프레임워크입니다. + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + 게시할 대상 런타임입니다. 기본값은 이식 가능한 응용 프로그램을 게시하는 것입니다. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + 앱을 게시할 경로입니다. + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 빌드할 구성입니다. + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 프로젝트에서 $(VersionSuffix) 속성의 값을 정의합니다. + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pl.xlf index 452007fdf..23612bb24 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pl.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Wydawca platformy .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Wydawca dla platformy .NET. + PROJECT - PROJECT - + PROJEKT + 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. - 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. - + Plik projektu programu MSBuild do publikacji. Jeśli nie określono pliku projektu, program MSBuild wyszukuje w bieżącym katalogu roboczym plik, którego rozszerzenie kończy się na „proj”, i używa tego pliku. + FRAMEWORK - FRAMEWORK - + PLATFORMA + Target framework to publish for - Target framework to publish for - + Docelowa platforma publikacji + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + IDENTYFIKATOR_ŚRODOWISKA_URUCHOMIENIOWEGO + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Docelowe środowisko uruchomieniowe na potrzeby publikacji. Opcją domyślną jest publikacja aplikacji przenośnej. + OUTPUT_DIR - OUTPUT_DIR - + KATALOG_WYJŚCIOWY + Path in which to publish the app - Path in which to publish the app - + Ścieżka, w której ma zostać opublikowana aplikacja + CONFIGURATION - CONFIGURATION - + KONFIGURACJA + Configuration under which to build - Configuration under which to build - + Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIKS_WERSJI + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Określa wartość właściwości $(VersionSuffix) w projekcie + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pt-BR.xlf index 457f620e5..dfaa0b308 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.pt-BR.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Editor do .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Editor para a Plataforma .NET + PROJECT - PROJECT - + PROJETO + 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. - 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. - + O arquivo de projeto do MSBuild para publicar. Se não houver arquivo de projeto especificado, o MSBuild pesquisará no diretório de trabalho atual um arquivo que contenha uma extensão de arquivo que termine em "proj" e usará esse arquivo. + FRAMEWORK - FRAMEWORK - + ESTRUTURA + Target framework to publish for - Target framework to publish for - + Estrutura de destino para a qual publicar + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Tempo de execução de destino para o qual publicar. O padrão é publicar um aplicativo portátil. + OUTPUT_DIR - OUTPUT_DIR - + DIRETÓRIO_DE_SAÍDA + Path in which to publish the app - Path in which to publish the app - + Caminho no qual publicar o aplicativo + CONFIGURATION - CONFIGURATION - + CONFIGURAÇÃO + Configuration under which to build - Configuration under which to build - + Configuração sob a qual compilar + VERSION_SUFFIX - VERSION_SUFFIX - + SUFIXO_DA_VERSÃO + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Define o valor da propriedade $(VersionSuffix) no projeto + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ru.xlf index 11e85c6a5..b00cfe636 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ru.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + Издатель .NET + Publisher for the .NET Platform - Publisher for the .NET Platform - + Издатель для платформы .NET + PROJECT - PROJECT - + PROJECT + 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. - 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. - + Файл проекта MSBuild для публикации. Если файл проекта не указан, MSBuild выполняет в текущем рабочем каталоге поиск файла с расширением, оканчивающимся на PROJ, и использует этот файл. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + Целевая платформа публикации + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Целевая среда выполнения публикации По умолчанию выполняется публикация переносимого приложения. + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + Путь для публикации приложения + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + Конфигурация, в которой выполняется сборка + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Определяет значение для свойства $(VersionSuffix) в проекте + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.tr.xlf index b23bcd78e..7e3c8e97e 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.tr.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET Yayımcısı + Publisher for the .NET Platform - Publisher for the .NET Platform - + .NET Platformunun yayımcısı. + PROJECT - PROJECT - + PROJE + 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. - 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. - + Yayımlanacak MSBuild proje dosyası. Bir proje dosyası belirtilmezse MSBuild, geçerli çalışma dizininde dosya uzantısının sonu ‘proj’ olan bir dosyası arar ve bu dosyayı kullanır. + FRAMEWORK - FRAMEWORK - + ÇERÇEVE + Target framework to publish for - Target framework to publish for - + Yayımlamanın yapılacağı hedef çerçeve + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + ÇALIŞMA_ZAMANI_TANIMLAYICISI + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + Yayımlamanın yapılacağı hedef çalışma zamanı. Varsayılan değer, taşınabilir bir uygulama yayımlanmasıdır. + OUTPUT_DIR - OUTPUT_DIR - + ÇIKIŞ_DİZİNİ + Path in which to publish the app - Path in which to publish the app - + Uygulamanın yayımlanacağı yol + CONFIGURATION - CONFIGURATION - + YAPILANDIRMA + Configuration under which to build - Configuration under which to build - + Derlemenin gerçekleştirileceği yapılandırma + VERSION_SUFFIX - VERSION_SUFFIX - + SÜRÜM_SONEKİ + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + Projedeki $(VersionSuffix) özelliğinin değerini tanımlar + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.xlf index e29e5a752..b11716a38 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.xlf @@ -5,59 +5,59 @@ .NET Publisher - + Publisher for the .NET Platform - + PROJECT - + 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. - + FRAMEWORK - + Target framework to publish for - + RUNTIME_IDENTIFIER - + Target runtime to publish for. The default is to publish a portable application. - + OUTPUT_DIR - + Path in which to publish the app - + CONFIGURATION - + Configuration under which to build - + VERSION_SUFFIX - + Defines the value for the $(VersionSuffix) property in the project - + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hans.xlf index d20039f13..1b8d08782 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET 发布服务器 + Publisher for the .NET Platform - Publisher for the .NET Platform - + 适用于 .NET 平台的发布服务器 + PROJECT - PROJECT - + PROJECT + 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. - 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. - + 要发布的 MSBuild 项目文件。如果未指定项目文件,MSBuild 将搜索当前工作目录来查找文件扩展名以“proj”结尾的文件并使用该文件。 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Target framework to publish for - Target framework to publish for - + 要发布的目标框架 + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + 要发布的目标运行时默认为发布可移植的应用程序。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + 在其中发布应用的路径 + CONFIGURATION - CONFIGURATION - + CONFIGURATION + Configuration under which to build - Configuration under which to build - + 在何处生成配置 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 定义项目中 $(VersionSuffix)属性的值 + diff --git a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hant.xlf index 6ddabc9f4..a5bfcaed9 100644 --- a/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,73 +5,73 @@ .NET Publisher - .NET Publisher - + .NET 發行者 + Publisher for the .NET Platform - Publisher for the .NET Platform - + .NET 平台的發行者 + PROJECT - PROJECT - + 專案 + 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. - 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. - + 要發行的 MSBuild 專案檔。若未指定專案檔,MSBuild 會在目前的工作目錄搜尋副檔名以 `proj` 結尾的檔案,並使用該檔案。 + FRAMEWORK - FRAMEWORK - + 架構 + Target framework to publish for - Target framework to publish for - + 要對其發行的目標 Framework + RUNTIME_IDENTIFIER - RUNTIME_IDENTIFIER - + RUNTIME_IDENTIFIER + Target runtime to publish for. The default is to publish a portable application. - Target runtime to publish for. The default is to publish a portable application. - + 要對其發行的目標執行階段。預設為發行可攜式應用程式。 + OUTPUT_DIR - OUTPUT_DIR - + OUTPUT_DIR + Path in which to publish the app - Path in which to publish the app - + 要發行應用程式的路徑 + CONFIGURATION - CONFIGURATION - + 組態 + Configuration under which to build - Configuration under which to build - + 作為建置依據的組態 + VERSION_SUFFIX - VERSION_SUFFIX - + VERSION_SUFFIX + Defines the value for the $(VersionSuffix) property in the project - Defines the value for the $(VersionSuffix) property in the project - + 定義專案中 $(VersionSuffix) 屬性的值 + diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.cs.xlf index f8b56a99e..25d1d52c1 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.cs.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Příkaz rozhraní .NET pro odebrání odkazu mezi projekty (p2p) + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Příkaz pro odebrání odkazu mezi projekty (p2p) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odebrat odkaz jen při zaměření na určitou platformu + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.de.xlf index 3a87f4105..1e64b35a4 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.de.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + .NET-Befehl zum Entfernen von Projekt-zu-Projekt-Verweisen (P2P-Verweise) + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Befehl zum Entfernen von Projekt-zu-Projekt-Verweisen (P2P-Verweise) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Verweis nur bei Verwendung eines bestimmten Zielframeworks entfernen + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.es.xlf index 47d09fe6d..be20eea93 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.es.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Comando de .NET para quitar una referencia de proyecto a proyecto (p2p) + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Comando para quitar una referencia de proyecto a proyecto (p2p) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Se quita la referencia solo cuando hay una plataforma de destino específica + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.fr.xlf index ef075d45b..b5a82c428 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.fr.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Commande de suppression d'une référence projet à projet (p2p) .NET + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Commande permettant de supprimer une référence projet à projet (p2p) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Supprimer la référence uniquement en cas de ciblage d'un framework spécifique + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.it.xlf index 3107f11bf..2c8c607e1 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.it.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Comando Rimuovi riferimento P2P (da progetto a progetto) .NET + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Comando per rimuovere il riferimento P2P (da progetto a progetto) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Rimuove il riferimento solo se destinato a un framework specifico + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ja.xlf index 9e41c8a4a..5a10a1144 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ja.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + .NET Remove Project to Project (p2p) 参照コマンド + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + project to project (p2p) 参照を削除するコマンド + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 特定のフレームワークを対象とする場合にのみ参照を削除する + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ko.xlf index 9d857ea2e..f039b3cc0 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ko.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + .NET p2p(프로젝트 간) 참조 제거 명령 + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + p2p(프로젝트 간) 참조를 제거하는 명령입니다. + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 특정 프레임워크를 대상으로 지정할 때에만 참조를 제거합니다. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pl.xlf index c0bd44c9a..decc897c2 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pl.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Polecenie usuwania odwołania między projektami (p2p) dla platformy .NET + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Polecenie służące do usuwania odwołania między projektami (p2p) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Usuń odwołanie tylko w przypadku określenia konkretnej platformy docelowej + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pt-BR.xlf index 12a4489a3..c6f8c4b6b 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.pt-BR.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Comando .NET Remove Project to Project (p2p) reference + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Comando para remover a referência p2p (projeto para projeto) + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Remover referência apenas ao visar uma estrutura específica + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ru.xlf index 158ba1656..4d83c6f5e 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.ru.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + Команда .NET "Удалить ссылку проекта на проект (p2p)" + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Команда для удаления ссылки проекта на проект (p2p). + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Удалять ссылку только при выборе конкретной целевой платформы + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.tr.xlf index 1daee7dd5..fb07f8924 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.tr.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + .NET Projeden Projeye (p2p) başvuru Kaldırma Komutu + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + Projeden projeye (p2p) başvuru kaldırma komutu + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Yalnızca belirli bir çerçeveyi hedeflerken başvuruyu kaldırır + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.xlf index 96c2673c2..f5628b435 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.xlf @@ -5,94 +5,22 @@ .NET Remove Project to Project (p2p) reference Command - + Command to remove project to project (p2p) reference - - - - Project to project references to remove - - - - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - + Remove reference only when targetting a specific framework - - - - Project - - - - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + - - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - - - - Usage - - - - Options - - - - Show help information - - - - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - - - - Remove project to project (p2p) reference from a project + + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hans.xlf index bb488f3b9..640aab037 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + 用于项目到项目(p2p)引用的 .NET 删除命令 + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 用于删除项目到项目(p2p)引用的命令 + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 仅针对特定框架删除引用 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hant.xlf index e41d1c579..c8bea71a1 100644 --- a/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-remove/dotnet-remove-p2p/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,117 +5,27 @@ .NET Remove Project to Project (p2p) reference Command - .NET Remove Project to Project (p2p) reference Command - + .NET 移除專案對專案 (p2p) 參考命令 + Command to remove project to project (p2p) reference - Command to remove project to project (p2p) reference - - - - Project to project references to remove - Project to project references to remove - - - - PROJECT - PROJECT - - - - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - The project file to modify. If a project file is not specified, it searches the current working directory for an MSBuild file that has a file extension that ends in `proj` and uses that file. - - - - FRAMEWORK - FRAMEWORK - + 用以移除專案對專案 (p2p) 參考的命令 + Remove reference only when targetting a specific framework - Remove reference only when targetting a specific framework - - - - Project - Project - - - - Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - - - - Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 只有在以特定架構為目標時才移除參考 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 + - - Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - - - - .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project + + Project to project references to remove + Project to project references to remove diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.cs.xlf index aa02e1ba3..49096153b 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.cs.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Příkaz rozhraní .NET pro odebrání + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.de.xlf index e54d8f803..fdee5e04d 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.de.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET-Befehl "Remove" + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.es.xlf index 47c47f31e..82d0fe616 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.es.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Comando Remove de .NET + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.fr.xlf index cf817eaf5..85a8439ce 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.fr.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Commande de suppression .NET + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.it.xlf index 65b71eb10..9d56931ca 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.it.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Comando Rimuovi .NET + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ja.xlf index 52843e295..a4931a1ba 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ja.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET Remove コマンド + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ko.xlf index dd5987bbe..3ec008443 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ko.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET Remove 명령 + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pl.xlf index 51230be8d..0bb694e61 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pl.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Polecenie remove platformy .NET + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pt-BR.xlf index 7dbab87bb..9789a9ba0 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.pt-BR.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Comando .NET Remove + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ru.xlf index ab0c02ea5..702f28e73 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.ru.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + Команда .NET "Удалить" + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.tr.xlf index 95a6220bd..d048f1597 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.tr.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET Remove Komutu + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.xlf index 4cab0eebe..e5fc72596 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.xlf @@ -5,43 +5,7 @@ .NET Remove Command - - - - Usage - - - - Options - - - - Show help information - - - - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - - - - Remove project to project (p2p) reference from a project - + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hans.xlf index 8ca7afa2c..d7f56d764 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET 删除命令 + diff --git a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hant.xlf index 7be65463f..9c45d4cb0 100644 --- a/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-remove/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,53 +5,8 @@ .NET Remove Command - .NET Remove Command - - - - Usage - Usage - - - - Options - Options - - - - Show help information - Show help information - - - - Arguments - Arguments - - - - The object of the operation. If a project file is not specified, it defaults to the current directory. - The object of the operation. If a project file is not specified, it defaults to the current directory. - - - - Command to be executed on <object>. - Command to be executed on <object>. - - - - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments. - - - - Commands - Commands - - - - Remove project to project (p2p) reference from a project - Remove project to project (p2p) reference from a project - + .NET 移除命令 + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.cs.xlf index 14978c5ae..62aa691c1 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.cs.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimální + restore - restore - + obnovit + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.de.xlf index 15fb00ff7..7b5f03bd1 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.de.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.es.xlf index 8efe9240e..17a6ff691 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.es.xlf @@ -5,13 +5,13 @@ minimal - minimal - + mínimo + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.fr.xlf index 548af9ddb..443cc749e 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.fr.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restaurer + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.it.xlf index fedf4f401..7606617c8 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.it.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ja.xlf index b9ddfadfe..62d277f20 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ja.xlf @@ -5,13 +5,13 @@ minimal - minimal - + 最小 + restore - restore - + 復元 + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ko.xlf index 67f717d45..f85a95db9 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ko.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pl.xlf index 59db43391..fc5ecde00 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pl.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimalne + restore - restore - + przywracanie + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pt-BR.xlf index 9cc4fb77d..d7dbf6691 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.pt-BR.xlf @@ -5,13 +5,13 @@ minimal - minimal - + mínimo + restore - restore - + restauração + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ru.xlf index c11d60960..eebe8a7b3 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.ru.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.tr.xlf index 98e10cc3a..9b3996076 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.tr.xlf @@ -5,13 +5,13 @@ minimal - minimal - + minimal + restore - restore - + restore + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.xlf index b442f205d..43b41d3d7 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.xlf @@ -5,11 +5,11 @@ minimal - + restore - + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hans.xlf index ad83f0813..a94e21bf3 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,13 +5,13 @@ minimal - minimal - + 最少 + restore - restore - + 还原 + diff --git a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hant.xlf index 5674bbf2b..923def7c5 100644 --- a/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-restore-projectjson/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,13 +5,13 @@ minimal - minimal - + 最小 + restore - restore - + 還原 + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf index e355fa8b1..e247482ae 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.cs.xlf @@ -5,73 +5,73 @@ restore - restore - + obnovit + restore for msbuild - restore for msbuild - + obnovit pro msbuild + root - root - + kořen + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Volitelná cesta k souboru projektu nebo k argumentům MSBuildu + source - source - + zdroj + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Určuje zdroj balíčku NuGet, který se použije při obnovení. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Adresář, do kterého se instalují balíčky. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Zakáže souběžné obnovení několika projektů. + file - file - + soubor + The NuGet configuration file to use. - The NuGet configuration file to use. - + Konfigurační soubor NuGet, který se použije. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Neukládat balíčky a požadavky http do mezipaměti + Treat package source failures as warnings. - Treat package source failures as warnings. - + Zacházet s nenalezenými zdroji balíčku jako s upozorněními + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Když tento příznak nastavíte, ignorují se odkazy mezi projekty a obnoví se jenom kořenový projekt. + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf index 41a4d6ed2..8a4617fbc 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.de.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + Für MSBuild wiederherstellen + root - root - + root + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Optionaler Pfad zu einer Projektdatei oder MSBuild-Argumente. + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Gibt eine NuGet-Paketquelle für die Wiederherstellung an. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Zielverzeichnis für die Paketinstallation. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Deaktiviert die parallele Wiederherstellung mehrerer Projekte. + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + Die zu verwendende NuGet-Konfigurationsdatei. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Pakete und HTTP-Anforderungen nicht zwischenspeichern. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Paketquellfehler als Warnungen behandeln. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Legen Sie dieses Flag fest, um Projekt-zu-Projekt-Verweise zu ignorieren und nur das Stammprojekt wiederherzustellen. + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf index 7eb65b730..917556bdb 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.es.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + restore para MSBuild + root - root - + raíz + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Ruta de acceso opcional a un archivo de proyecto o argumentos de MSBuild. + source - source - + origen + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Especifica el origen de un paquete NuGet para usarlo durante la restauración. + packagesDirectory - packagesDirectory - + DirectorioDePaquetes + Directory to install packages in. - Directory to install packages in. - + Directorio donde se instalarán los paquetes. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Deshabilita la restauración de varios proyectos en paralelo. + file - file - + archivo + The NuGet configuration file to use. - The NuGet configuration file to use. - + Archivo de configuración de NuGet que debe usarse. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Indica que no se almacenen en caché los paquetes ni las solicitudes HTTP. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Indica que los errores de origen de paquete se traten como advertencias. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Establezca esta marca para que se omitan las referencias de proyecto a proyecto y se restaure solo el proyecto raíz + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf index a06cf75cf..11820cfbb 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.fr.xlf @@ -5,73 +5,73 @@ restore - restore - + restaurer + restore for msbuild - restore for msbuild - + restaurer pour msbuild + root - root - + racine + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Chemin facultatif vers un fichier projet ou des arguments MSBuild. + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Spécifie une source de package NuGet à utiliser pendant la restauration. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Répertoire dans lequel installer les packages. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Désactive la restauration de plusieurs projets en parallèle. + file - file - + fichier + The NuGet configuration file to use. - The NuGet configuration file to use. - + Fichier de configuration NuGet à utiliser. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Ne mettez pas en cache les packages et les requêtes HTTP. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Considérez les échecs de la source du package comme des avertissements. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Définir cet indicateur pour ignorer les références projet à projet et restaurer uniquement le projet racine + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf index 166ea562a..f0b1ce19d 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.it.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + restore per MSBuild + root - root - + radice + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Percorso facoltativo di un file di progetto o di argomenti di MSBuild. + source - source - + origine + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Consente di specificare un'origine pacchetto NuGet da usare durante il ripristino. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Directory in cui installare i pacchetti. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Disabilita il ripristino di più progetti in parallelo. + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + File di configurazione NuGet da usare. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Non memorizza nella cache pacchetti e richieste HTTP. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Considera gli errori di origine pacchetto come avvisi. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Impostare questo flag per ignorare i riferimenti P2P (da progetto a progetto) e ripristinare solo il progetto radice + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf index 36a7d6f3a..e7898e9db 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ja.xlf @@ -5,73 +5,73 @@ restore - restore - + 復元 + restore for msbuild - restore for msbuild - + msbuild の復元 + root - root - + ルート + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + プロジェクト ファイルまたは MSBuild 引数へのオプションのパス。 + source - source - + ソース + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + 復元中に使用する NuGet パッケージ ソースを指定します。 + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + パッケージをインストールするディレクトリ。 + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + 複数のプロジェクトを並行して復元できないようにします。 + file - file - + ファイル + The NuGet configuration file to use. - The NuGet configuration file to use. - + 使用する NuGet 構成ファイル。 + Do not cache packages and http requests. - Do not cache packages and http requests. - + パッケージと HTTP 要求はキャッシュしません。 + Treat package source failures as warnings. - Treat package source failures as warnings. - + パッケージ ソース エラーを警告として処理します。 + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + project to project 参照を無視して、ルート プロジェクトのみを復元するには、このフラグを設定します + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf index 618af1445..1eab54316 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ko.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + msbuild에 대한 복원입니다. + root - root - + root + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + 프로젝트 파일의 선택적 경로 또는 MSBuild 인수입니다. + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + 복원 중 사용할 NuGet 패키지 소스를 지정합니다. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + 패키지를 설치할 디렉터리입니다. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + 여러 프로젝트를 병렬로 복원을 사용하지 않도록 설정합니다. + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + 사용할 NuGet 구성 파일입니다. + Do not cache packages and http requests. - Do not cache packages and http requests. - + 패키지 및 http 요청을 캐시하지 않습니다. + Treat package source failures as warnings. - Treat package source failures as warnings. - + 패키지 소스 오류를 경고로 처리합니다. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + 프로젝트 간 참조를 무시하고 루트 프로젝트만 복원하려면 이 플래그를 설정합니다. + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf index 80ceb7d3b..f7c519060 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pl.xlf @@ -5,73 +5,73 @@ restore - restore - + przywracanie + restore for msbuild - restore for msbuild - + przywracanie dla programu MSBuild + root - root - + główny + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Opcjonalna ścieżka do pliku projektu lub argumentów programu MSBuild. + source - source - + źródło + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Określa źródło pakietów NuGet do użycia podczas przywracania. + packagesDirectory - packagesDirectory - + katalogPakietów + Directory to install packages in. - Directory to install packages in. - + Katalog, w którym mają zostać zainstalowane pakiety. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Wyłącza równoległe przywracanie wielu projektów. + file - file - + plik + The NuGet configuration file to use. - The NuGet configuration file to use. - + Plik konfiguracji programu NuGet do użycia. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Nie przechowuj w pamięci podręcznej pakietów ani żądań HTTP. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Traktuj niepowodzenia źródła pakietów jako ostrzeżenia. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Ustaw tę flagę, aby ignorować odwołania między projektami i przywrócić tylko projekt główny + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf index d57d22c7e..6df82dfc7 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.pt-BR.xlf @@ -5,73 +5,73 @@ restore - restore - + restauração + restore for msbuild - restore for msbuild - + restauração para msbuild + root - root - + raiz + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Caminho opcional para um arquivo de projeto ou argumentos do MSBuild. + source - source - + origem + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Especifica uma origem de pacote do NuGet para ser usada durante a restauração. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Diretório no qual instalar os pacotes. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Desabilita a restauração de vários projetos em paralelo. + file - file - + arquivo + The NuGet configuration file to use. - The NuGet configuration file to use. - + O arquivo de configuração do NuGet a ser usado. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Não armazenar pacotes e solicitações HTTP em cache. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Tratar falhas de origem de pacote como avisos. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Definir esse sinalizador para ignorar referências de projeto para projeto e restaurar apenas o projeto raiz + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf index 495c2829a..b6d2a9ef6 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.ru.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + восстановить для msbuild + root - root - + root + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Дополнительный путь к файлу проекта или аргументам MSBuild. + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Задает источник пакета NuGet, используемый во время восстановления. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Каталог для установки пакетов. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Отключает параллельное восстановление нескольких проектов. + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + Используемый файл конфигурации NuGet. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Не кэшировать пакеты и HTTP-запросы. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Обрабатывать сбои источников пакетов как предупреждения. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Задайте этот флаг, чтобы пропускать ссылки проектов на проекты и выполнять восстановление только корневого проекта. + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf index 10be3062a..506c5ff9f 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.tr.xlf @@ -5,73 +5,73 @@ restore - restore - + restore + restore for msbuild - restore for msbuild - + msbuild için geri yükleme + root - root - + root + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + Proje dosyasının veya MSBuild bağımsız değişkenlerinin isteğe bağlı yolu. + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + Geri yükleme sırasında kullanılacak bir NuGet paket kaynağı belirtir. + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + Paketlerin yükleneceği dizin. + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + Birden fazla projenin paralel olarak geri yüklenmesini devre dışı bırakır. + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + Kullanılacak NuGet yapılandırma dosyası. + Do not cache packages and http requests. - Do not cache packages and http requests. - + Paketleri ve http isteklerini önbelleğe almayın. + Treat package source failures as warnings. - Treat package source failures as warnings. - + Paket kaynağı hatalarını uyarı olarak kabul edin. + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + Projeden projeye başvuruları yoksaymak ve yalnızca kök projeyi geri yüklemek için bu bayrağı ayarlayın + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.xlf index ebfeb1783..779c80eab 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.xlf @@ -5,59 +5,59 @@ restore - + restore for msbuild - + root - + Optional path to a project file or MSBuild arguments. - + source - + Specifies a NuGet package source to use during the restore. - + packagesDirectory - + Directory to install packages in. - + Disables restoring multiple projects in parallel. - + file - + The NuGet configuration file to use. - + Do not cache packages and http requests. - + Treat package source failures as warnings. - + Set this flag to ignore project to project references and only restore the root project - + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf index 0805e1020..bb77582a7 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,73 +5,73 @@ restore - restore - + 还原 + restore for msbuild - restore for msbuild - + 还原 MSBuild + root - root - + + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + 项目文件或 MSBuild 参数的可选路径。 + source - source - + + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + 指定还原期间使用的 NuGet 包源。 + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + 用于将包安装到其中的目录。 + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + 禁止并行还原多个项目。 + file - file - + 文件 + The NuGet configuration file to use. - The NuGet configuration file to use. - + 要使用的 NuGet 配置文件。 + Do not cache packages and http requests. - Do not cache packages and http requests. - + 不要缓存包和 HTTP 请求。 + Treat package source failures as warnings. - Treat package source failures as warnings. - + 将包源失败视为警告。 + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + 设置此标志以忽略项目到项目引用,并仅还原根项目 + diff --git a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf index 879a8dba9..63f950f69 100644 --- a/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-restore/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,73 +5,73 @@ restore - restore - + 還原 + restore for msbuild - restore for msbuild - + 還原 MSBuild + root - root - + root + Optional path to a project file or MSBuild arguments. - Optional path to a project file or MSBuild arguments. - + 專案檔或 MSBuild 引數的選擇性路徑。 + source - source - + source + Specifies a NuGet package source to use during the restore. - Specifies a NuGet package source to use during the restore. - + 指定要在還原期間使用的 NuGet 套件來源。 + packagesDirectory - packagesDirectory - + packagesDirectory + Directory to install packages in. - Directory to install packages in. - + 要安裝套件的目錄。 + Disables restoring multiple projects in parallel. - Disables restoring multiple projects in parallel. - + 停用平行還原多個專案的功能。 + file - file - + file + The NuGet configuration file to use. - The NuGet configuration file to use. - + 要使用的 NuGet 組態檔。 + Do not cache packages and http requests. - Do not cache packages and http requests. - + 請勿快取套件和 HTTP 要求。 + Treat package source failures as warnings. - Treat package source failures as warnings. - + 將套件來源失敗視為警告。 + Set this flag to ignore project to project references and only restore the root project - Set this flag to ignore project to project references and only restore the root project - + 將此旗標設定為略過專案對專案參考並僅還原根專案 + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf index 80bbdd7ac..75e379d99 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.cs.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Příkaz rozhraní .NET pro spuštění + Command used to run .NET apps - Command used to run .NET apps - + Příkaz používaný ke spuštění aplikací .NET + Configuration under which to build - Configuration under which to build - + Konfigurace použitá k sestavení + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + Umožňuje kompilovat určitou platformu. + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Cesta ke spouštěnému souboru projektu (výchozí je aktuální adresář, pokud existuje jenom jeden projekt) + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Sestavení se nezdařilo. Opravte prosím v sestavení chyby a spusťte ho znovu. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Konfigurace + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Projekt se nepodařilo spustit. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Ověřte prosím, jestli je typ projektu spustitelný, a zkontrolujte, jestli „dotnet run“ podporuje tento projekt. + The current OutputType is - The current OutputType is - + Aktuální hodnota OutputType je + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Nepodařilo se najít projekt ke spuštění. Zkontrolujte, jestli projekt existuje v + Or pass the path to the project using --project - Or pass the path to the project using --project - + Nebo zadejte cestu k projektu příkazem --project + Specify which project file to use because this - Specify which project file to use because this - + Zadejte, jaký soubor projektu se použije, protože + contains more than one project file. - contains more than one project file. - + obsahuje více souborů projektů. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf index bd86723af..8f53a8a7d 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.de.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET-Befehl "Run" + Command used to run .NET apps - Command used to run .NET apps - + Befehl zum Ausführen von .NET-Apps + Configuration under which to build - Configuration under which to build - + Konfiguration für den Buildvorgang + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + Bestimmtes Framework kompilieren + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Der Pfad zur auszuführenden Projektdatei (standardmäßig das aktuelle Verzeichnis, falls nur ein einzelnes Projekt vorhanden ist). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Fehler beim Buildvorgang. Beheben Sie die Buildfehler, und wiederholen Sie anschließend den Vorgang. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Konfiguration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Das Projekt kann nicht ausgeführt werden. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Vergewissern Sie sich, dass Sie über einen ausführbaren Projekttyp verfügen und dass das Projekt von "dotnet run" unterstützt wird. + The current OutputType is - The current OutputType is - + Aktueller Ausgabetyp: + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Es wurde kein ausführbares Projekt gefunden. Vergewissern Sie sich, dass an folgendem Ort ein Projekt vorhanden ist: + Or pass the path to the project using --project - Or pass the path to the project using --project - + Übergeben Sie alternativ den Pfad zum Projekt mithilfe von "--project". + Specify which project file to use because this - Specify which project file to use because this - + Geben Sie die zu verwendende Projektdatei an, da + contains more than one project file. - contains more than one project file. - + mehrere Projektdateien vorhanden sind. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf index 666758200..77c6897ec 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.es.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Comando Run de .NET + Command used to run .NET apps - Command used to run .NET apps - + Comando para ejecutar aplicaciones de .NET + Configuration under which to build - Configuration under which to build - + Configuración para la compilación + FRAMEWORK - FRAMEWORK - + PLATAFORMA + Compile a specific framework - Compile a specific framework - + Compilar una plataforma específica + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Ruta de acceso al archivo del proyecto que debe ejecutarse (si solo hay un proyecto, es el directorio actual de forma predeterminada). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + No se pudo llevar a cabo la compilación. Corrija los errores de compilación y vuelva a ejecutar el proyecto. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + No se puede ejecutar el proyecto. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Asegúrese de que tiene un tipo de proyecto que se puede ejecutar y de que 'dotnet run' lo admite. + The current OutputType is - The current OutputType is - + El tipo de salida actual es + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + No se encuentra ningún proyecto para ejecutar. Asegúrese de que el proyecto existe en + Or pass the path to the project using --project - Or pass the path to the project using --project - + O bien pase la ruta de acceso al proyecto usando --project + Specify which project file to use because this - Specify which project file to use because this - + Especifique el archivo del proyecto que debe usarse, porque + contains more than one project file. - contains more than one project file. - + contiene más de un archivo de proyecto. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf index 2d009dc6a..2c8c0a83a 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.fr.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Commande d'exécution .NET + Command used to run .NET apps - Command used to run .NET apps - + Commande utilisée pour exécuter des applications .NET + Configuration under which to build - Configuration under which to build - + Configuration sous laquelle générer la build + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + Compiler un framework spécifique + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Chemin du fichier projet à exécuter (la valeur par défaut est le répertoire actif s'il n'y a qu'un seul projet). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Échec de la build. Corrigez les erreurs de la build et réexécutez-la. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Impossible d'exécuter votre projet. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Vérifiez que vous disposez d'un type de projet exécutable et que 'dotnet run' prend en charge ce projet. + The current OutputType is - The current OutputType is - + L'OutputType actif est + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Projet à exécuter introuvable. Vérifiez qu'un projet existe dans + Or pass the path to the project using --project - Or pass the path to the project using --project - + Ou passez le chemin du projet en utilisant --project + Specify which project file to use because this - Specify which project file to use because this - + Spécifiez le fichier projet à utiliser car ce + contains more than one project file. - contains more than one project file. - + contient plusieurs fichiers projet. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf index b9aea2bd9..b7a19060c 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.it.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Comando Esegui .NET + Command used to run .NET apps - Command used to run .NET apps - + Comando usato per eseguire app .NET + Configuration under which to build - Configuration under which to build - + Configurazione con cui eseguire la compilazione + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + Esegue la compilazione di un framework specifico + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Percorso del file di progetto da eseguire. Se è presente un solo progetto, per impostazione predefinita viene usata la directory corrente. + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + La compilazione non è riuscita. Correggere gli errori di compilazione e ripetere l'esecuzione. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configurazione + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Non è possibile eseguire il progetto. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Assicurarsi che sia presente un tipo di progetto eseguibile e che 'dotnet run' supporti tale progetto. + The current OutputType is - The current OutputType is - + L'elemento OutputType corrente è + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Non è stato trovato un progetto da eseguire. Assicurarsi che sia presente un progetto in + Or pass the path to the project using --project - Or pass the path to the project using --project - + In alternativa, passare il percorso al progetto con --project + Specify which project file to use because this - Specify which project file to use because this - + Specificare il file di progetto da usare perché questo file + contains more than one project file. - contains more than one project file. - + contiene più di un file di progetto. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf index 244a96efa..bbb542102 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ja.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET Run コマンド + Command used to run .NET apps - Command used to run .NET apps - + .NET アプリの実行に使用するコマンド + Configuration under which to build - Configuration under which to build - + 構築する構成 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + 特定のフレームワークをコンパイルする + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + 実行するプロジェクト ファイルへのパス (プロジェクトが 1 つのみの場合、既定現在のディレクトリになります)。 + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + ビルドに失敗しました。ビルド エラーを修正して、もう一度実行してください。 + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + 構成 + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + プロジェクトを実行できません。 + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + プロジェクトの種類が実行可能な種類であること、また 'dotnet run' がこのプロジェクトをサポートしていることを確認してください。 + The current OutputType is - The current OutputType is - + 現在の OutputType は + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + 実行するプロジェクトが見つかりませんでした。プロジェクトが存在することを確認します + Or pass the path to the project using --project - Or pass the path to the project using --project - + または、--project を使用してプロジェクトにパスを渡します + Specify which project file to use because this - Specify which project file to use because this - + これには複数のプロジェクト ファイルが含まれているため、使用するプロジェクト ファイルを指定します。 + contains more than one project file. - contains more than one project file. - + + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf index d949317ad..73f6f3d06 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ko.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET 실행 명령 + Command used to run .NET apps - Command used to run .NET apps - + .NET 앱을 실행하는 데 사용하는 명령입니다. + Configuration under which to build - Configuration under which to build - + 빌드할 구성입니다. + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + 특정 프레임워크를 컴파일합니다. + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + 실행할 프로젝트 파일의 경로입니다(프로젝트가 하나만 있는 경우 현재 디렉터리로 기본 설정됨). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + 빌드하지 못했습니다. 빌드 오류를 수정하고 다시 실행하세요. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + 구성 + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + 프로젝트를 실행할 수 없습니다. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + 실행 가능한 프로젝트 형식이 있고 'dotnet run'에서 이 프로젝트를 지원하는지 확인하세요. + The current OutputType is - The current OutputType is - + 현재 OutputType은 다음과 같습니다. + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + 실행할 프로젝트를 찾을 수 없습니다. 프로젝트가 + Or pass the path to the project using --project - Or pass the path to the project using --project - + 에 있는지 확인하거나 --project를 사용하여 프로젝트의 경로를 전달합니다. + Specify which project file to use because this - Specify which project file to use because this - + + contains more than one project file. - contains more than one project file. - + 에는 프로젝트 파일이 두 개 이상 있으므로 사용할 프로젝트 파일을 지정합니다. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf index dd48bdfcb..1c0f1d346 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pl.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Polecenie run platformy .NET + Command used to run .NET apps - Command used to run .NET apps - + Polecenie służące do uruchamiania aplikacji .NET + Configuration under which to build - Configuration under which to build - + Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja + FRAMEWORK - FRAMEWORK - + PLATFORMA + Compile a specific framework - Compile a specific framework - + Skompiluj określoną platformę + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Ścieżka do pliku projektu, który ma zostać uruchomiony (w przypadku tylko jednego projektu wartością domyślną jest bieżący katalog). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Kompilacja nie powiodła się. Napraw błędy kompilacji i uruchom ją ponownie. + MSBuildExtensionsPath - MSBuildExtensionsPath - + ŚcieżkaRozszerzeńMSBuild + Configuration - Configuration - + Konfiguracja + TargetFramework - TargetFramework - + PlatformaDocelowa + RunCommand - RunCommand - + PolecenieRun + OutputType - OutputType - + TypWyjściowy + Unable to run your project. - Unable to run your project. - + Nie można uruchomić projektu. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Upewnij się, że typ projektu jest możliwy do uruchomienia i że polecenie „dotnet run” obsługuje ten projekt. + The current OutputType is - The current OutputType is - + Bieżący typ OutputType to + RunArguments - RunArguments - + ArgumentyPoleceniaRun + RunWorkingDirectory - RunWorkingDirectory - + KatalogRoboczyPoleceniaRun + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Nie można odnaleźć projektu do uruchomienia. Upewnij się, że projekt istnieje w lokalizacji + Or pass the path to the project using --project - Or pass the path to the project using --project - + Lub przekaż ścieżkę do projektu przy użyciu opcji --project + Specify which project file to use because this - Specify which project file to use because this - + Określ, który plik ma zostać użyty, ponieważ + contains more than one project file. - contains more than one project file. - + podano kilka plików projektu. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf index 43a746e0f..18a4deeb7 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.pt-BR.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Comando Run do .NET + Command used to run .NET apps - Command used to run .NET apps - + Comando usado para executar aplicativos .NET + Configuration under which to build - Configuration under which to build - + Configuração sob a qual compilar + FRAMEWORK - FRAMEWORK - + ESTRUTURA + Compile a specific framework - Compile a specific framework - + Compilar uma estrutura específica + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + O caminho para o arquivo de projeto a ser executado (usará como padrão o diretório atual se houver apenas um projeto). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Ocorreu uma falha no build. Corrija os erros de build e execute novamente. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuração + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Não foi possível executar seu projeto. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Certifique-se de que você tenha um tipo de projeto executável e que ‘dotnet run’ dê suporte a esse projeto. + The current OutputType is - The current OutputType is - + O OutputType atual é + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Não foi possível encontrar um projeto para executar. Certifique-se de que existe um projeto em + Or pass the path to the project using --project - Or pass the path to the project using --project - + Ou passe o caminho para o projeto usando --project + Specify which project file to use because this - Specify which project file to use because this - + Especifique qual arquivo de projeto usar porque este + contains more than one project file. - contains more than one project file. - + contém mais de um arquivo de projeto. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf index 6b739519b..54adb806e 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.ru.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + Команда .NET "Выполнить" + Command used to run .NET apps - Command used to run .NET apps - + Команда, используемая для запуска приложений .NET + Configuration under which to build - Configuration under which to build - + Конфигурация, в которой выполняется сборка + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + Компиляция определенной платформы + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Путь к выполняемому файлу проекта (по умолчанию — текущий каталог, если имеется только один проект). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Ошибка сборки. Устраните ошибки сборки и повторите попытку. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Не удается выполнить проект. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Убедитесь, что имеется проект выполнимого типа и команда dotnet run поддерживает этот проект. + The current OutputType is - The current OutputType is - + Текущий тип выходных данных: + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Не удалось найти выполняемый проект. Убедитесь, что проект существует в + Or pass the path to the project using --project - Or pass the path to the project using --project - + Кроме того, можно передать путь в проект, используя параметр --project + Specify which project file to use because this - Specify which project file to use because this - + Укажите файл проекта для использования, так как + contains more than one project file. - contains more than one project file. - + содержит несколько файлов проектов. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf index 90fe6d637..fd624fe32 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.tr.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET Run Komutu + Command used to run .NET apps - Command used to run .NET apps - + .NET uygulamalarını çalıştırmak için kullanılan komut + Configuration under which to build - Configuration under which to build - + Derlemenin gerçekleştirileceği yapılandırma + FRAMEWORK - FRAMEWORK - + ÇERÇEVE + Compile a specific framework - Compile a specific framework - + Belirli bir çerçeveyi derler + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + Çalıştırılacak proje dosyasının yolu (yalnızca bir proje varsa, geçerli dizin varsayılan olarak kullanılır). + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + Derleme başarısız oldu. Lütfen derleme hatalarını düzeltip yeniden çalıştırın. + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + Projeniz çalıştırılamıyor. + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + Çalıştırılabilir türde bir projeniz olduğundan ve 'dotnet run' komutunun bu projeyi desteklediğinden emin olun. + The current OutputType is - The current OutputType is - + Geçerli OutputType: + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + Çalıştırılacak bir proje bulunamadı. Şurada bir proje bulunduğundan emin olun: + Or pass the path to the project using --project - Or pass the path to the project using --project - + Veya proje yolunu --project kullanarak geçirin + Specify which project file to use because this - Specify which project file to use because this - + Burada birden fazla proje dosyası bulunduğundan, + contains more than one project file. - contains more than one project file. - + hangi proje dosyasının kullanılacağını belirtmeniz gerekiyor. + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.xlf index e47058e4c..650199cf6 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.xlf @@ -5,87 +5,87 @@ .NET Run Command - + Command used to run .NET apps - + Configuration under which to build - + FRAMEWORK - + Compile a specific framework - + The path to the project file to run (defaults to the current directory if there is only one project). - + The build failed. Please fix the build errors and run again. - + MSBuildExtensionsPath - + Configuration - + TargetFramework - + RunCommand - + OutputType - + Unable to run your project. - + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + The current OutputType is - + RunArguments - + RunWorkingDirectory - + Couldn't find a project to run. Ensure a project exists in - + Or pass the path to the project using --project - + Specify which project file to use because this - + contains more than one project file. - + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf index db0a16c8e..89dc45ed2 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET 运行命令 + Command used to run .NET apps - Command used to run .NET apps - + 用于运行 .NET 应用的命令 + Configuration under which to build - Configuration under which to build - + 在何处生成配置 + FRAMEWORK - FRAMEWORK - + FRAMEWORK + Compile a specific framework - Compile a specific framework - + 编译特定的框架 + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + 要运行的项目文件的路径(如果只有一个项目,则默认使用当前目录)。 + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + 生成失败。请修复生成错误并重新运行。 + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + 配置 + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + 无法运行项目。 + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + 请确保具有可运行的项目类型且“dotnet run”支持此项目。 + The current OutputType is - The current OutputType is - + 当前的 OutputType 为 + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + 找不到要运行的项目。请确保项目位于 + Or pass the path to the project using --project - Or pass the path to the project using --project - + 或使用 --project 将路径传递给项目 + Specify which project file to use because this - Specify which project file to use because this - + 请指定要使用哪个项目文件,因为此项目 + contains more than one project file. - contains more than one project file. - + 包含多个项目文件。 + diff --git a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf index 2002f82e5..6f74b251a 100644 --- a/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-run/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,108 +5,108 @@ .NET Run Command - .NET Run Command - + .NET 執行命令 + Command used to run .NET apps - Command used to run .NET apps - + 用來執行 .NET 應用程式的命令 + Configuration under which to build - Configuration under which to build - + 作為建置依據的組態 + FRAMEWORK - FRAMEWORK - + 架構 + Compile a specific framework - Compile a specific framework - + 編譯特定架構 + The path to the project file to run (defaults to the current directory if there is only one project). - The path to the project file to run (defaults to the current directory if there is only one project). - + 要執行之專案檔的路徑 (如果只有一個專案,預設為目前的目錄)。 + The build failed. Please fix the build errors and run again. - The build failed. Please fix the build errors and run again. - + 建置失敗。請修正建置錯誤後再執行一次。 + MSBuildExtensionsPath - MSBuildExtensionsPath - + MSBuildExtensionsPath + Configuration - Configuration - + Configuration + TargetFramework - TargetFramework - + TargetFramework + RunCommand - RunCommand - + RunCommand + OutputType - OutputType - + OutputType + Unable to run your project. - Unable to run your project. - + 無法執行您的專案。 + Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - Please ensure you have a runnable project type and ensure 'dotnet run' supports this project. - + 請確認您有可執行的專案類型,並確認 'dotnet run' 支援此專案。 + The current OutputType is - The current OutputType is - + 目前的 OutputType 為 + RunArguments - RunArguments - + RunArguments + RunWorkingDirectory - RunWorkingDirectory - + RunWorkingDirectory + Couldn't find a project to run. Ensure a project exists in - Couldn't find a project to run. Ensure a project exists in - + 找不到要執行的專案。請確認專案存在於 + Or pass the path to the project using --project - Or pass the path to the project using --project - + 或使用 --project 傳遞專案的路徑 + Specify which project file to use because this - Specify which project file to use because this - + 指定要使用的專案檔,因為這個 + contains more than one project file. - contains more than one project file. - + 包含多個專案檔。 + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf index 47c27d7f6..8d6a8cbb1 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Testovací ovladač .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Testovací ovladač pro platformu .NET + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Výchozí hodnotou pro testovaný projekt je aktuální adresář. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Nastavení, které se použije ke spuštění testů. + Lists discovered tests - Lists discovered tests - + Uvádí zjištěné testy + Expression - Expression - + Výraz + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Spustí testy, které odpovídají danému výrazu. + Příklady: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Při spuštění testu použijte vlastní adaptéry z dané cesty. + Příklad: --testAdapterPath:<pathToCustomAdapters> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Zadejte protokolovací nástroj pro výsledky testů. + Příklad: --logger:trx + configuration - configuration - + konfigurace + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Konfigurace použitá k sestavení, např. Debug nebo Release + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Vyhledá testovací binární soubory pro určitou platformu. + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Adresář pro vyhledání spouštěných binárních souborů + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Povolí pro testovací platformu podrobné protokoly. + Protokoly se zapisují do zadaného souboru. + Do not build project before testing. - Do not build project before testing. - + Nesestavujte projekt dříve, než ho otestujete. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.de.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.de.xlf index 86e004efb..507b2a70c 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.de.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET-Testtreiber + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Testtreiber für die .NET-Plattform + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Das zu testende Projekt (standardmäßig das aktuelle Verzeichnis). + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Die zu verwendenden Testeinstellungen. + Lists discovered tests - Lists discovered tests - + Listet die gefundenen Tests auf. + Expression - Expression - + Ausdruck + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Führen Sie Tests aus, die dem angegebenen Ausdruck entsprechen. + Beispiele: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Verwenden Sie im Testlauf benutzerdefinierte Adapter aus dem angegebenen Pfad. + Beispiel: --testAdapterPath:<Pfad zu benutzerdefinierten Adaptern> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Geben Sie einen Protokollierer für Testergebnisse an. + Beispiel: --logger:trx + configuration - configuration - + configuration + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Konfiguration für den Buildvorgang (Debug/Release) + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Sucht nach Testbinärdateien für ein bestimmtes Framework. + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Verzeichnis mit den auszuführenden Binärdateien + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Aktivieren Sie ausführliche Protokolle für die Testplattform. + Protokolle werden in die angegebene Datei geschrieben. + Do not build project before testing. - Do not build project before testing. - + Erstellen Sie das Projekt nicht vor dem Testen. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.es.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.es.xlf index 9b7bc0a34..e46d3fa87 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.es.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Controlador de pruebas de .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Controlador de pruebas para la plataforma .NET + PROJECT - PROJECT - + PROYECTO + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Proyecto que se prueba. De forma predeterminada, se usa el directorio actual. + SettingsFile - SettingsFile - + ArchivoDeConfiguración + Settings to use when running tests. - Settings to use when running tests. - + Configuración que debe usarse para ejecutar las pruebas. + Lists discovered tests - Lists discovered tests - + Enumera las pruebas detectadas + Expression - Expression - + Expresión + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Ejecuta las pruebas que coinciden con una expresión dada. + Ejemplos: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Indica que se usen adaptadores personalizados de la ruta de acceso dada en la serie de pruebas. + Ejemplo: --testAdapterPath:<rutaDeAdaptadoresPersonalizados> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + URIdelRegistrador/NombreDescriptivo + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Especifica un registrador para los resultados de pruebas. + Ejemplo: --logger:trx + configuration - configuration - + configuración + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Configuración para la compilación, es decir, Debug o Release + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Busca archivos binarios de prueba para una plataforma específica + OutputDir - OutputDir - + DirectorioDeSalida + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Directorio donde deben buscarse los archivos binarios para ejecutar + PathToLogFile - PathToLogFile - + RutaAlArchivoDeRegistro + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Habilita registros detallados para la plataforma de pruebas. + Los registros se escriben en el archivo proporcionado. + Do not build project before testing. - Do not build project before testing. - + El proyecto no se compila antes de probarlo. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.fr.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.fr.xlf index f086931be..67bf2e1aa 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.fr.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Pilote de test .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Pilote de test pour la plateforme .NET + PROJECT - PROJECT - + PROJET + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Projet à tester, par défaut le répertoire actif. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Paramètres à utiliser pendant l'exécution des tests. + Lists discovered tests - Lists discovered tests - + Répertorie les tests découverts + Expression - Expression - + Expression + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Exécutez les tests qui correspondent à l'expression donnée. + Exemples : --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Utilisez des adaptateurs personnalisés à partir du chemin donné dans la série de tests. + Exemple : --testAdapterPath:<cheminAdaptateursPersonnalisés> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + UriEnregistreur/NomConvivial + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Spécifiez un enregistreur pour les résultats des tests. + Exemple : --logger:trx + configuration - configuration - + configuration + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Configuration sous laquelle générer la build (Debug/Release) + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Recherche les binaires de test pour un framework spécifique + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Répertoire dans lequel rechercher les binaires à exécuter + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Activez les journaux détaillés pour la plateforme de test. + Les journaux sont écrits dans le fichier fourni. + Do not build project before testing. - Do not build project before testing. - + Ne générez pas le projet avant les tests. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.it.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.it.xlf index 691f4d0a3..108c91277 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.it.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Driver di test .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Driver di test per la piattaforma .NET + PROJECT - PROJECT - + PROGETTO + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Progetto da testare. Per impostazione predefinita, verrà usata la directory corrente. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Impostazioni da usare per l'esecuzione dei test. + Lists discovered tests - Lists discovered tests - + Elenca i test individuati + Expression - Expression - + Espressione + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Esegue i test corrispondenti all'espressione specificata. + Esempi: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Usa gli adattatori personalizzati del percorso specificato nell'esecuzione dei test. + Esempio: --testAdapterPath:<percorsoAdattatoriPersonalizzati> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Consente di specificare un logger per i risultati dei test. + Esempio: --logger:trx + configuration - configuration - + configurazione + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Configurazione con cui eseguire la compilazione, ad esempio Debug/Release + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Cerca i file binari di test per un framework specifico + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Directory in cui trovare i file binari da eseguire + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Abilita i log dettagliati per la piattaforma di test. + I log vengono scritti nel file specificato. + Do not build project before testing. - Do not build project before testing. - + Il progetto non viene compilato prima del test. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ja.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ja.xlf index fb181a573..8a2e8712e 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ja.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET Test Driver + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + .NET Platform 用テスト ドライバー + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + テストするプロジェクト。既定は現在のディレクトリです。 + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + テスト実行時に使用する設定 + Lists discovered tests - Lists discovered tests - + 探索されたテストを一覧表示する + Expression - Expression - + + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + 指定された式に一致するテストを実行します。 + 例: + --testCaseFilter:"Priority = 1" + --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + テストの実行では、指定されたパスのカスタム アダプターを使用します。 + 例: --testAdapterPath:<pathToCustomAdapters> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + テスト結果のロガーを指定します。 + 例: --logger:trx + configuration - configuration - + 構成 + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + 構築する構成。例: Debug/Release + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + 特定のフレームワークのテスト バイナリを検索する + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + 実行するバイナリを検索するディレクトリ + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + テスト プラットフォームの詳細ログを有効にする + ログは指定されたファイルに書き込まれます。 + Do not build project before testing. - Do not build project before testing. - + テストする前にプロジェクトを構築しないでください。 + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ko.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ko.xlf index 93e7da7e2..a9eb5be5e 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ko.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET 테스트 드라이버 + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + .NET 플랫폼용 테스트 드라이버입니다. + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + 테스트할 프로젝트입니다. 현재 디렉터리로 기본 설정됩니다. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + 테스트를 실행할 때 사용할 설정입니다. + Lists discovered tests - Lists discovered tests - + 검색된 테스트를 나열합니다. + Expression - Expression - + Expression + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + 지정된 식과 일치하는 테스트를 실행합니다. + 예: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + 테스트 실행에서 지정된 경로에 있는 사용자 지정 어댑터를 사용합니다. + 예: --testAdapterPath:<pathToCustomAdapters> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + 테스트 결과에 대해 로거를 지정합니다. + 예: --logger:trx + configuration - configuration - + configuration + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + 빌드할 구성입니다(예: Debug/Release). + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + 특정 프레임워크에 대한 테스트 이진 파일을 찾습니다. + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + 실행할 이진 파일을 찾을 디렉터리입니다. + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + 테스트 플랫폼에 대해 자세한 정보 표시 로그를 사용하도록 설정합니다. + 로그가 제공된 파일에 기록됩니다. + Do not build project before testing. - Do not build project before testing. - + 테스트하기 전에 프로젝트를 빌드하지 않습니다. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pl.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pl.xlf index 90d575256..f71349b12 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pl.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Sterownik testów platformy .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Sterownik testów dla platformy .NET + PROJECT - PROJECT - + PROJEKT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Projekt do przetestowania. Domyślną wartością jest bieżący katalog. + SettingsFile - SettingsFile - + PlikUstawień + Settings to use when running tests. - Settings to use when running tests. - + Ustawienia, które mają zostać użyte podczas przeprowadzania testów. + Lists discovered tests - Lists discovered tests - + Wyświetla listę wykrytych testów + Expression - Expression - + Wyrażenie + Run tests that match the given expression. Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Uruchom testy odpowiadające danemu wyrażeniu. + Przykłady: --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + --testCaseFilter: "(WPełniKwalifikowanaNazwa~Nightly | Name = MojaMetodaTestowa)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Zastosuj niestandardowe adaptery z danej ścieżki podczas uruchomienia testu. + Przykład: --testAdapterPath:<ścieżkaDoNiestandardowychAdapterów> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + IdentyfikatorURIRejestratora/PrzyjaznaNazwa + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Określ rejestratora wyników testów. + Przykład: --logger:trx + configuration - configuration - + konfiguracja + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Konfiguracja, przy użyciu której ma zostać przeprowadzona kompilacja, na przykład Debug/Release + FrameworkVersion - FrameworkVersion - + WersjaPlatformy + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Szuka plików binarnych testów dla określonej platformy + OutputDir - OutputDir - + KatalogWyjściowy + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Katalog, w którym znajdują się pliki binarne do uruchomienia + PathToLogFile - PathToLogFile - + ŚcieżkaDoPlikuDziennika + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Włącz pełne dzienniki dla platformy testowej. + Dzienniki są zapisywane do podanego pliku. + Do not build project before testing. - Do not build project before testing. - + Nie kompiluj projektu przed przeprowadzeniem testów. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pt-BR.xlf index 3f8179a2c..68e284060 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.pt-BR.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Driver de Teste do .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Driver de Teste para a Plataforma .NET + PROJECT - PROJECT - + PROJETO + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + O projeto a ser testado, usa como padrão o diretório atual. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Configurações a serem usadas ao executar os testes. + Lists discovered tests - Lists discovered tests - + Lista os testes descobertos + Expression - Expression - + Expressão + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Execute testes que correspondam à expressão especificada. + Exemplos: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Use adaptadores personalizados do caminho especificado na execução de teste. + Exemplo: --testAdapterPath:<pathToCustomAdapters> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Especifique um agente para os resultados de teste. + Exemplo: --logger:trx + configuration - configuration - + configuração + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Configuração sob a qual compilar, isto é, Depuração/Liberação + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Procura binários de teste para uma estrutura específica + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Diretório no qual localizar os binários a serem executados + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Habilite os logs detalhados para a plataforma de teste. + Os logs são gravados no arquivo fornecido. + Do not build project before testing. - Do not build project before testing. - + Não compile o projeto antes de testar. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ru.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ru.xlf index 1f48a3342..05e2d8702 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.ru.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + Драйвер тестов .NET + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + Драйвер тестов для платформы .NET + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Тестируемый проект. По умолчанию используется текущий каталог. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Параметры, используемые при выполнении тестов. + Lists discovered tests - Lists discovered tests - + Список обнаруженных тестов + Expression - Expression - + Expression + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Выполнение тестов, соответствующих данному выражению. + Примеры: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Использование настраиваемых адаптеров по заданному пути в тестовом запуске. + Пример: --testAdapterPath:<путь_к_настраиваемым_адаптерам> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Укажите средство ведения журнала для результатов теста. + Пример: --logger:trx + configuration - configuration - + configuration + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Конфигурация, в которой выполняется сборка, например "Отладка"/"Выпуск" + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Поиск двоичных файлов тестов для определенной платформы. + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Каталог, в котором требуется найти выполняемые двоичные файлы. + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Включение подробных журналов для платформы тестирования. + Журналы записываются в указанный файл. + Do not build project before testing. - Do not build project before testing. - + Не выполнять сборку проектов перед тестированием. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.tr.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.tr.xlf index e060a559d..e40020cfe 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.tr.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET Test Sürücüsü + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + .NET Platformunun Test Sürücüsü + PROJECT - PROJECT - + PROJE + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + Test edilecek proje; varsayılan olarak geçerli dizin kullanılır. + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + Testleri çalıştırırken kullanılacak ayarlar. + Lists discovered tests - Lists discovered tests - + Bulunan testleri listeler + Expression - Expression - + Expression + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + Belirtilen ifadeyle eşleşen testleri çalıştırır. + Örnekler: --testCaseFilter:"Priority = 1" --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + Test çalıştırmasında, belirtilen yoldaki özel bağdaştırıcıları kullanır. + Örnek: --testAdapterPath:<özelBağdaştırıcılarınYolu> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + Test sonuçları için bir günlükçü belirtin. + Örnek: --logger:trx + configuration - configuration - + configuration + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + Derlemenin gerçekleştirileceği yapılandırma. Örn. Hata Ayıklama/Yayınlama + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + Belirli bir çerçeve için test ikililerini arar + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + Çalıştırılacak ikililerin bulunacağı dizin + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + Test platformu için ayrıntılı günlükleri etkinleştirir. + Günlükler belirtilen dosyaya yazılır. + Do not build project before testing. - Do not build project before testing. - + Projeyi derlemeden önce test edin. + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.xlf index b67c61b76..40ae981b0 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.xlf @@ -5,93 +5,93 @@ .NET Test Driver - + Test Driver for the .NET Platform - + PROJECT - + The project to test, defaults to the current directory. - + SettingsFile - + Settings to use when running tests. - + Lists discovered tests - + Expression - + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> LoggerUri/FriendlyName - + Specify a logger for test results. Example: --logger:trx - + configuration - + Configuration under which to build, i.e. Debug/Release - + FrameworkVersion - + Looks for test binaries for a specific framework - + OutputDir - + Directory in which to find the binaries to be run - + PathToLogFile - + Enable verbose logs for test platform. Logs are written to the provided file. - + Do not build project before testing. - + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hans.xlf index bb175d3b8..bba69759d 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET 测试驱动程序 + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + 适用于 .NET 平台的测试驱动程序 + PROJECT - PROJECT - + PROJECT + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + 要测试的项目,默认为当前目录。 + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + 运行测试时要使用的设置。 + Lists discovered tests - Lists discovered tests - + 列出发现的测试 + Expression - Expression - + 表达式 + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + 运行与给定表达式匹配的测试。 + 示例: + --testCaseFilter:"Priority = 1" + --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + 在测试运行中从给定路径使用自定义适配器。 + 示例: --testAdapterPath:<pathToCustomAdapters> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + 指定测试结果的记录器。 + 示例: --logger:trx + configuration - configuration - + 配置 + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + 在何处生成配置,即调试/发布 + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + 查找特定框架的测试二进制文件 + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + 在其中查找要运行的二进制文件的目录 + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + 启用测试平台的详细日志。 + 日志写入到提供的文件中。 + Do not build project before testing. - Do not build project before testing. - + 测试之前不要生成项目。 + diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hant.xlf index 29b0dffb8..caf839f98 100644 --- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,120 +5,120 @@ .NET Test Driver - .NET Test Driver - + .NET 測試驅動程式 + Test Driver for the .NET Platform - Test Driver for the .NET Platform - + 適用於 .NET 平台的測試驅動程式 + PROJECT - PROJECT - + 專案 + The project to test, defaults to the current directory. - The project to test, defaults to the current directory. - + 要測試的專案,預設為目前的目錄。 + SettingsFile - SettingsFile - + SettingsFile + Settings to use when running tests. - Settings to use when running tests. - + 執行測試時要使用的設定。 + Lists discovered tests - Lists discovered tests - + 列出探索到的測試 + Expression - Expression - + 運算式 + Run tests that match the given expression. Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" - Run tests that match the given expression. - Examples: - --testCaseFilter:"Priority = 1" - --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + --test-case-filter:"Priority = 1" + --test-case-filter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" + 執行符合指定運算式的測試。 + 範例: + --testCaseFilter:"Priority = 1" + --testCaseFilter: "(FullyQualifiedName~Nightly | Name = MyTestMethod)" Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> - Use custom adapters from the given path in the test run. - Example: --testAdapterPath:<pathToCustomAdapters> + Example: --test-adapter-path:<pathToCustomAdapters> + 從測試回合中的指定路徑使用自訂配接器。 + 範例: --testAdapterPath:<自訂配接器路徑> LoggerUri/FriendlyName - LoggerUri/FriendlyName - + LoggerUri/FriendlyName + Specify a logger for test results. Example: --logger:trx - Specify a logger for test results. - Example: --logger:trx - + 指定測試結果的記錄器。 + 範例: --logger:trx + configuration - configuration - + 組態 + Configuration under which to build, i.e. Debug/Release - Configuration under which to build, i.e. Debug/Release - + 作為建置依據的組態,亦即 Debug/Release + FrameworkVersion - FrameworkVersion - + FrameworkVersion + Looks for test binaries for a specific framework - Looks for test binaries for a specific framework - + 尋找特定架構的測試二進位檔 + OutputDir - OutputDir - + OutputDir + Directory in which to find the binaries to be run - Directory in which to find the binaries to be run - + 要從中尋找要執行之二進位檔的目錄 + PathToLogFile - PathToLogFile - + PathToLogFile + Enable verbose logs for test platform. Logs are written to the provided file. - Enable verbose logs for test platform. - Logs are written to the provided file. - + 啟用測試平台的詳細資訊記錄。 + 記錄已寫入提供的檔案中。 + Do not build project before testing. - Do not build project before testing. - + 請勿在測試前建置專案。 + diff --git a/src/dotnet/xlf/CommonLocalizableStrings.cs.xlf b/src/dotnet/xlf/CommonLocalizableStrings.cs.xlf index 3616603a1..4ee5379b1 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.cs.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.cs.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + V {0} se nenašel žádný projekt. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + V {0} se našlo několik projektů. Vyberte prosím, jaký chcete použít. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projekt už obsahuje odkaz na {0}. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Nenašel se odkaz na projekt {0}. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Odkaz na projekt {0} byl odebrán. + Project - Project - + Projekt + Project file - Project file - + Soubor projektu + Reference - Reference - + Odkaz + Project reference - Project reference - + Odkaz na projekt + Package reference - Package reference - + Odkaz na balíček + Project to Project - Project to Project - + Z projektu na projekt + Project to Project reference - Project to Project reference - + Odkaz mezi projekty + Package - Package - + Balíček + Solution - Solution - + Řešení + Solution file - Solution file - + Soubor řešení + Executable - Executable - + Ke spuštění + Library - Library - + Knihovna + Program - Program - + Program + Application - Application - + Aplikace + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + Odkaz na {0} neexistuje. Pokud ho přesto chcete přidat, použijte prosím možnost --force. Upozorňujeme, že tento krok může projekt negativně ovlivnit. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Odkaz na {0} byl přidán do projektu. + Add - Add - + Přidat + Remove - Remove - + Odebrat + Delete - Delete - + Odstranit + Update - Update - + Aktualizovat + New - New - + Nový + List - List - + Seznam + Load - Load - + Načíst + Save - Save - + Uložit + Find - Find - + Najít + Error - Error - + Chyba + Warning - Warning - + Upozornění + File - File - + Soubor + Directory - Directory - + Adresář + Type - Type - + Typ + Value - Value - + Hodnota + Group - Group - + Skupina + {0} added to {1}. - {0} added to {1}. - + Položka {0} byla přidána do {1}. + {0} removed from {1}. - {0} removed from {1}. - + Položka {0} byla odebrána z {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Položka {0} byla odstraněna z {1}. + {0} successfully updated. - {0} successfully updated. - + Položka {0} byla úspěšně aktualizována. + {0} is invalid. - {0} is invalid. - + Položka {0} není platná. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Položka {0} {1} byl nalezena, ale není platná. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Položka {0} byla nalezena, ale není platná. + Operation is invalid. - Operation is invalid. - + Operace není platná. + Operation {0} is invalid. - Operation {0} is invalid. - + Operace {0} není platná. + {0} not found. - {0} not found. - + Položka {0} se nenašla. + {0} or {1} not found. - {0} or {1} not found. - + Položka {0} nebo {1} se nenašla. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + Položka {0} nebo {1} se nenašla v {2}. + File `{0}` not found. - File `{0}` not found. - + Soubor {0} se nenašel. + {0} does not exist. - {0} does not exist. - + {0} neexistuje. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} {1} neexistuje. + More than one {0} found. - More than one {0} found. - + Našlo se více položek {0}. + {0} already contains {1}. - {0} already contains {1}. - + {0} už obsahuje {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} už obsahuje {1} {2}. + {0} already has {1}. - {0} already has {1}. - + {0} už má {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} už má {1} {2}. + {0} was not expected. - {0} was not expected. - + Položka {0} nebyla očekávána. + {0} not provided. - {0} not provided. - + Položka {0} nebyla zadána. + Please specify at least one {0}. - Please specify at least one {0}. - + Zadejte prosím aspoň jednu položku {0}. + Could not connect with the server. - Could not connect with the server. - + Není možné se připojit k serveru. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Požadovaný argument {0} není platný. + Option {0} is invalid. - Option {0} is invalid. - + Možnost {0} není platná. + Argument {0} is invalid. - Argument {0} is invalid. - + Argument {0} není platný. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Požadovaný argument {0} nebyl zadán. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Nenašel se projekt ani adresář {0}. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Projekt {0} se našel, ale není platný. + Invalid project `{0}`. - Invalid project `{0}`. - + Projekt {0} není platný. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Zadaný soubor řešení {0} neexistuje nebo v adresáři není soubor řešení. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Nenašlo se řešení ani adresář {0}. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Řešení {0} není platné. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Zadaný soubor řešení {0} neexistuje nebo v adresáři není soubor řešení. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Odkaz na {0} není platný. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Musíte zadat aspoň jeden odkaz, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} už obsahuje odkaz na {1}. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Odkaz na balíček {0} neexistuje. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Odkaz na balíček {0} není platný. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Musíte zadat aspoň jeden odkaz, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Odkaz na balíček {0} byl přidán do projektu. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} už obsahuje odkaz na {1}. + Please specify a version of the package. - Please specify a version of the package. - + Zadejte prosím verzi balíčku. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Projekt {0} neexistuje. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Projekt {0} není platný. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Musíte zadat aspoň jeden projekt, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Projekt {0} byl přidán do řešení. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Zadaný odkaz {0} v projektu {1} neexistuje. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odkaz na {0} byl z projektu odstraněn. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Odkaz na {0} byl odstraněn. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Odkaz na balíček {0} se v projektu nenašel. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odkaz na {0} byl z projektu odstraněn. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Odkaz na balíček {0} byl odstraněn. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Projekt {0} se v řešení nenašel. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projekt {0} byl z řešení odebrán. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Musíte zadat aspoň jeden projekt, který chcete odebrat. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Projekt {0} byl z řešení odstraněn. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Projekt {1} neobsahuje odkazy na {0}. ;; {0} je typ požadované položky (projekt, balíček p2p) a {1} je používaný objekt (soubor projektu nebo soubor řešení). + No projects found in the solution. - No projects found in the solution. - + V řešení se nenašly žádné projekty. + Please specify new version of the package. - Please specify new version of the package. - + Zadejte prosím novou verzi balíčku. + Please specify which package to update. - Please specify which package to update. - + Zadejte prosím, jaký balíček chcete aktualizovat. + Nothing to update. - Nothing to update. - + Nic k aktualizaci. + Everything is already up-to-date. - Everything is already up-to-date. - + Všechno je aktuální. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Verze balíčku {0} byla aktualizována na {1}. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Verze balíčku {0} byla aktualizována. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Verzi balíčku {0} není možné aktualizovat. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Šablona {0} byla úspěšně vytvořena. Začněte prosím spuštěním příkazu dotnet restore. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Šablona {0} byla úspěšně nainstalována. Pokud chcete začít novou šablonou, použijte příkaz dotnet new {0}. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Šablonu {0} se nepodařilo vytvořit. Vrácená chyba: {1} + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Šablonu {0} se nepodařilo nainstalovat. Vrácená chyba: {1} + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Zadaný název {0} už existuje. Zadejte prosím jiný název. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Zadaný alias {0} už existuje. Zadejte prosím jiný alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Chybí povinný parametr {0} pro šablonu {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.de.xlf b/src/dotnet/xlf/CommonLocalizableStrings.de.xlf index 4f95b1bfa..7f4a05683 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.de.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.de.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + In "{0}" wurde kein Projekt gefunden. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + In "{0}" wurden mehrere Projekte gefunden. Geben Sie an, welches davon verwendet werden soll. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Für das Projekt ist bereits ein Verweis auf "{0}" vorhanden. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Der Projektverweis "{0}" wurde nicht gefunden. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Der Projektverweis "{0}" wurde entfernt. + Project - Project - + Projekt + Project file - Project file - + Projektdatei + Reference - Reference - + Verweis + Project reference - Project reference - + Projektverweis + Package reference - Package reference - + Paketverweis + Project to Project - Project to Project - + Projekt zu Projekt + Project to Project reference - Project to Project reference - + Projekt-zu-Projekt-Verweis + Package - Package - + Paket + Solution - Solution - + Projektmappe + Solution file - Solution file - + Projektmappendatei + Executable - Executable - + Ausführbare Datei + Library - Library - + Bibliothek + Program - Program - + Programm + Application - Application - + Anwendung + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + Der Verweis "{0}" ist nicht vorhanden. Falls Sie ihn immer noch hinzufügen möchten, verwenden Sie die Option "--force". Dies kann sich negativ auf das Projekt auswirken. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Der Verweis "{0}" wurde dem Projekt hinzugefügt. + Add - Add - + Hinzufügen + Remove - Remove - + Entfernen + Delete - Delete - + Löschen + Update - Update - + Aktualisieren + New - New - + Neu + List - List - + Auflisten + Load - Load - + Laden + Save - Save - + Speichern + Find - Find - + Suchen + Error - Error - + Fehler + Warning - Warning - + Warnung + File - File - + Datei + Directory - Directory - + Verzeichnis + Type - Type - + Typ + Value - Value - + Wert + Group - Group - + Gruppe + {0} added to {1}. - {0} added to {1}. - + "{0}" wurde "{1}" hinzugefügt. + {0} removed from {1}. - {0} removed from {1}. - + "{0}" wurde aus "{1}" entfernt. + {0} deleted from {1}. - {0} deleted from {1}. - + "{0}" wurde aus "{1}" gelöscht. + {0} successfully updated. - {0} successfully updated. - + "{0}" wurde erfolgreich aktualisiert. + {0} is invalid. - {0} is invalid. - + "{0}" ist ungültig. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} "{1}" wurde gefunden, ist aber ungültig. + `{0}` found but is invalid. - `{0}` found but is invalid. - + "{0}" wurde gefunden, ist aber ungültig. + Operation is invalid. - Operation is invalid. - + Der Vorgang ist ungültig. + Operation {0} is invalid. - Operation {0} is invalid. - + Der Vorgang "{0}" ist ungültig. + {0} not found. - {0} not found. - + "{0}" wurde nicht gefunden. + {0} or {1} not found. - {0} or {1} not found. - + "{0}" oder "{1}" wurde nicht gefunden. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + "{0}" oder "{1}" wurde in "{2}" nicht gefunden. + File `{0}` not found. - File `{0}` not found. - + Die Datei "{0}" wurde nicht gefunden. + {0} does not exist. - {0} does not exist. - + "{0}" ist nicht vorhanden. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} "{1}" ist nicht vorhanden. + More than one {0} found. - More than one {0} found. - + Es wurden mehrere Elemente vom Typ "{0}" gefunden. + {0} already contains {1}. - {0} already contains {1}. - + "{1}" ist bereits in "{0}" enthalten. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {1} "{2}" ist bereits in "{0}" enthalten. + {0} already has {1}. - {0} already has {1}. - + "{0}" verfügt bereits über "{1}". + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + "{0}" verfügt bereits über {1} "{2}". + {0} was not expected. - {0} was not expected. - + "{0}" wurde nicht erwartet. + {0} not provided. - {0} not provided. - + "{0}" wurde nicht angegeben. + Please specify at least one {0}. - Please specify at least one {0}. - + Geben Sie mindestens ein Element vom Typ "{0}" an. + Could not connect with the server. - Could not connect with the server. - + Mit dem Server konnte keine Verbindung hergestellt werden. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Das erforderliche Argument "{0}" ist ungültig. + Option {0} is invalid. - Option {0} is invalid. - + Die Option "{0}" ist ungültig. + Argument {0} is invalid. - Argument {0} is invalid. - + Das Argument "{0}" ist ungültig. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Das erforderliche Argument "{0}" wurde nicht angegeben. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Das Projekt oder Verzeichnis "{0}" wurde nicht gefunden. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Ein Projekt vom Typ "{0}" wurde gefunden, ist aber ungültig. + Invalid project `{0}`. - Invalid project `{0}`. - + Ungültiges Projekt "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Die angegebene Projektmappendatei "{0}" ist nicht vorhanden, oder das Verzeichnis enthält keine Projektmappendatei. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Die Projektmappe oder das Verzeichnis "{0}" wurde nicht gefunden. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Ungültige Projektmappe "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Die angegebene Projektmappendatei "{0}" ist nicht vorhanden, oder das Verzeichnis enthält keine Projektmappendatei. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Der Verweis "{0}" ist ungültig. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Geben Sie mindestens einen hinzuzufügenden Verweis an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Der Paketverweis "{0}" ist nicht vorhanden. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Der Paketverweis "{0}" ist ungültig. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Geben Sie mindestens einen hinzuzufügenden Verweis an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Der Paketverweis "{0}" wurde dem Projekt hinzugefügt. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden. + Please specify a version of the package. - Please specify a version of the package. - + Geben Sie eine Paketversion an. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Das Projekt "{0}" ist nicht vorhanden. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Das Projekt "{0}" ist ungültig. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Geben Sie mindestens ein hinzuzufügendes Projekt an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Das Projekt "{0}" wurde der Projektmappe hinzugefügt. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Der angegebene Verweis "{0}" ist im Projekt "{1}" nicht vorhanden. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Der Verweis "{0}" wurde aus dem Projekt gelöscht. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Der Verweis "{0}" wurde gelöscht. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Der Paketverweis "{0}" wurde im Projekt nicht gefunden. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Der Verweis "{0}" wurde aus dem Projekt gelöscht. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Der Paketverweis "{0}" wurde gelöscht. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Das Projekt "{0}" wurde in der Projektmappe nicht gefunden. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Das Projekt "{0}" wurde aus der Projektmappe entfernt. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Geben Sie mindestens ein zu entfernendes Projekt an. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Das Projekt "{0}" wurde aus der Projektmappe gelöscht. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Das Projekt "{1}" enthält keine Verweise vom Typ "{0}". ;; "{0}" ist die Art des angeforderten Elements (Projekt, Paket, P2P). "{1}" ist das Objekt, für das ein Vorgang ausgeführt wird (eine Projektdatei oder eine Projektmappendatei). + No projects found in the solution. - No projects found in the solution. - + In der Projektmappe wurden keine Projekte gefunden. + Please specify new version of the package. - Please specify new version of the package. - + Geben Sie die neue Version des Pakets an. + Please specify which package to update. - Please specify which package to update. - + Geben Sie das zu aktualisierende Paket an. + Nothing to update. - Nothing to update. - + Keine Aktualisierung verfügbar. + Everything is already up-to-date. - Everything is already up-to-date. - + Alle Elemente sind bereits auf dem neuesten Stand. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Die Version des Pakets "{0}" wurde auf "{1}" aktualisiert. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Die Version des Pakets "{0}" wurde aktualisiert. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Die Version des Pakets "{0}" konnte nicht aktualisiert werden. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Die Vorlage "{0}" wurde erfolgreich erstellt. Führen Sie "dotnet restore" aus, um zu beginnen. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Die Vorlage "{0}" wurde erfolgreich installiert. Verwenden Sie "dotnet new {0}", um die neue Vorlage zu verwenden. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Die Vorlage "{0}" konnte nicht erstellt werden. Zurückgegebener Fehler: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Die Vorlage "{0}" konnte nicht installiert werden. Zurückgegebener Fehler: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Der angegebene Name "{0}" ist bereits vorhanden. Geben Sie einen anderen Namen an. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Der angegebene Alias "{0}" ist bereits vorhanden. Geben Sie einen anderen Alias an. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Der obligatorische Parameter "{0}" ist für die Vorlage "{1}" nicht vorhanden. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.es.xlf b/src/dotnet/xlf/CommonLocalizableStrings.es.xlf index 28d80ab43..5dc6f875b 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.es.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.es.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + No se encuentra ningún proyecto en `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Se han encontrado varios proyectos en `{0}`. Especifique el que debe usarse. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + El proyecto ya tiene una referencia a `{0}`. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + No se encuentra la referencia de proyecto `{0}`. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + La referencia de proyecto `{0}` se ha quitado. + Project - Project - + Proyecto + Project file - Project file - + Archivo del proyecto + Reference - Reference - + Referencia + Project reference - Project reference - + Referencia de proyecto + Package reference - Package reference - + Referencia de paquete + Project to Project - Project to Project - + Proyecto a proyecto + Project to Project reference - Project to Project reference - + Referencia de proyecto a proyecto + Package - Package - + Paquete + Solution - Solution - + Solución + Solution file - Solution file - + Archivo de la solución + Executable - Executable - + Archivo ejecutable + Library - Library - + Biblioteca + Program - Program - + Programa + Application - Application - + Aplicación + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + La referencia {0} no existe. Si aún quiere agregarla, use la opción --force. Tenga en cuenta que esto puede tener efectos negativos en el proyecto. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Se ha agregado la referencia `{0}` al proyecto. + Add - Add - + Agregar + Remove - Remove - + Quitar + Delete - Delete - + Eliminar + Update - Update - + Actualizar + New - New - + Nuevo + List - List - + Enumerar + Load - Load - + Cargar + Save - Save - + Guardar + Find - Find - + Buscar + Error - Error - + Error + Warning - Warning - + Advertencia + File - File - + Archivo + Directory - Directory - + Directorio + Type - Type - + Tipo + Value - Value - + Valor + Group - Group - + Agrupar + {0} added to {1}. - {0} added to {1}. - + Se ha agregado {0} a {1}. + {0} removed from {1}. - {0} removed from {1}. - + Se ha quitado {0} de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Se ha eliminado {0} de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} se ha actualizado correctamente. + {0} is invalid. - {0} is invalid. - + {0} no es válido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Se ha encontrado el {0} `{1}`, pero no es válido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Se ha encontrado `{0}`, pero no es válido. + Operation is invalid. - Operation is invalid. - + La operación no es válida. + Operation {0} is invalid. - Operation {0} is invalid. - + La operación {0} no es válida. + {0} not found. - {0} not found. - + No se encuentra {0}. + {0} or {1} not found. - {0} or {1} not found. - + No se encuentran {0} ni {1}. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + No se encuentran {0} ni {1} en `{2}`. + File `{0}` not found. - File `{0}` not found. - + No se encuentra el archivo `{0}`. + {0} does not exist. - {0} does not exist. - + {0} no existe. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + El {0} `{1}` no existe. + More than one {0} found. - More than one {0} found. - + Se han encontrado varios {0}. + {0} already contains {1}. - {0} already contains {1}. - + {0} ya contiene {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} ya contiene un {1} `{2}`. + {0} already has {1}. - {0} already has {1}. - + {0} ya tiene {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} ya tiene el {1} `{2}`. + {0} was not expected. - {0} was not expected. - + No se esperaba {0}. + {0} not provided. - {0} not provided. - + No se ha proporcionado {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Especifique al menos un {0}. + Could not connect with the server. - Could not connect with the server. - + No se puede conectar al servidor. + Required argument {0} is invalid. - Required argument {0} is invalid. - + El argumento necesario {0} no es válido. + Option {0} is invalid. - Option {0} is invalid. - + La opción {0} no es válida. + Argument {0} is invalid. - Argument {0} is invalid. - + El argumento {0} no es válido. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + No se ha proporcionado el argumento necesario {0}. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + No se encuentra el proyecto o directorio `{0}`. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Se ha encontrado el proyecto `{0}`, pero no es válido. + Invalid project `{0}`. - Invalid project `{0}`. - + El proyecto `{0}` no es válido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + El archivo de solución {0} especificado no existe, o bien no hay ningún archivo de solución en el directorio. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + No se encuentra la solución o el directorio `{0}`. + Invalid solution `{0}`. - Invalid solution `{0}`. - + La solución `{0}` no es válida. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + El archivo de solución {0} especificado no existe, o bien no hay ningún archivo de solución en el directorio. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + La referencia `{0}` no es válida. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Debe especificar al menos una referencia para agregar. Ejecute dotnet add --help para obtener más información. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + El proyecto {0} ya tiene una referencia `{1}`. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + La referencia de paquete `{0}` no existe. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + La referencia de paquete `{0}` no es válida. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Debe especificar al menos una referencia para agregar. Ejecute dotnet add --help para obtener más información. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Se ha agregado la referencia de paquete `{0}` al proyecto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + El proyecto {0} ya tiene una referencia `{1}`. + Please specify a version of the package. - Please specify a version of the package. - + Especifique una versión del paquete. + Project `{0}` does not exist. - Project `{0}` does not exist. - + El proyecto `{0}` no existe. + Project `{0}` is invalid. - Project `{0}` is invalid. - + El proyecto `{0}` no es válido. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Debe especificar al menos un proyecto para agregarlo. Ejecute dotnet add --help para obtener más información. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Se ha agregado el proyecto `{0}` a la solución. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + La referencia {0} especificada no existe en el proyecto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Se ha eliminado la referencia “{0}” del proyecto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Se ha eliminado la referencia “{0}”. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + No se encuentra la referencia de paquete `{0}` en el proyecto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Se ha eliminado la referencia “{0}” del proyecto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Se ha eliminado la referencia de paquete `{0}`. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + No se encuentra el proyecto `{0}` en la solución. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Se ha quitado el proyecto `{0}` de la solución. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Debe especificar al menos un proyecto para quitarlo. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Se ha eliminado el proyecto `{0}` de la solución. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + No hay referencias de {0} en el proyecto {1}. ;; {0} es el tipo de elemento solicitado (proyecto, paquete, p2p) y {1} es el objeto utilizado (un archivo de proyecto o de solución). + No projects found in the solution. - No projects found in the solution. - + No se han encontrado proyectos en la solución. + Please specify new version of the package. - Please specify new version of the package. - + Especifique la nueva versión del paquete. + Please specify which package to update. - Please specify which package to update. - + Especifique qué paquete debe actualizarse. + Nothing to update. - Nothing to update. - + No hay nada para actualizar. + Everything is already up-to-date. - Everything is already up-to-date. - + Todo está actualizado. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + La versión del paquete `{0}` se ha actualizado a `{1}`. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Se ha actualizado la versión del paquete `{0}`. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + No se puede actualizar la versión del paquete `{0}`. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + La plantilla {0} se ha creado correctamente. Ejecute "dotnet restore" para comenzar. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + La plantilla {0} se ha instalado correctamente. Puede usar "dotnet new {0}" para comenzar con la nueva plantilla. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + No se puede crear la plantilla {0}. El error devuelto es: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + No se puede instalar la plantilla {0}. El error devuelto es: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + El nombre {0} especificado ya existe. Especifique otro nombre. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + El alias {0} especificado ya existe. Especifique otro alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Falta el parámetro obligatorio {0} para la plantilla {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.fr.xlf b/src/dotnet/xlf/CommonLocalizableStrings.fr.xlf index 1fe47b86b..3f004921e 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.fr.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.fr.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Projet introuvable dans '{0}'. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Plusieurs projets trouvés dans '{0}'. Spécifiez celui à utiliser. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Le projet a déjà une référence à '{0}'. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + La référence de projet '{0}' est introuvable. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Référence de projet '{0}' supprimée. + Project - Project - + Projet + Project file - Project file - + Fichier projet + Reference - Reference - + Référence + Project reference - Project reference - + Référence de projet + Package reference - Package reference - + Référence de package + Project to Project - Project to Project - + Projet à projet + Project to Project reference - Project to Project reference - + Référence projet à projet + Package - Package - + Package + Solution - Solution - + Solution + Solution file - Solution file - + Fichier solution + Executable - Executable - + Exécutable + Library - Library - + Bibliothèque + Program - Program - + Programme + Application - Application - + Application + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + La référence {0} n'existe pas. Si vous souhaitez toujours l'ajouter, utilisez l'option --force. Notez que cela peut avoir des effets négatifs sur le projet. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Référence '{0}' ajoutée au projet. + Add - Add - + Ajouter + Remove - Remove - + Retirer + Delete - Delete - + Supprimer + Update - Update - + Mettre à jour + New - New - + Nouveau + List - List - + Répertorier + Load - Load - + Charger + Save - Save - + Enregistrer + Find - Find - + Rechercher + Error - Error - + Erreur + Warning - Warning - + Avertissement + File - File - + Fichier + Directory - Directory - + Répertoire + Type - Type - + Type + Value - Value - + Valeur + Group - Group - + Groupe + {0} added to {1}. - {0} added to {1}. - + {0} ajouté à {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} retiré de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} supprimé de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} mis à jour. + {0} is invalid. - {0} is invalid. - + {0} n'est pas valide. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} '{1}' trouvé, mais il n'est pas valide. + `{0}` found but is invalid. - `{0}` found but is invalid. - + '{0}' trouvé, mais il n'est pas valide. + Operation is invalid. - Operation is invalid. - + L'opération n'est pas valide. + Operation {0} is invalid. - Operation {0} is invalid. - + L'opération {0} n'est pas valide. + {0} not found. - {0} not found. - + {0} introuvable. + {0} or {1} not found. - {0} or {1} not found. - + {0} ou {1} introuvable. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} ou {1} introuvable dans '{2}'. + File `{0}` not found. - File `{0}` not found. - + Fichier '{0}' introuvable. + {0} does not exist. - {0} does not exist. - + {0} n'existe pas. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} '{1}' n'existe pas. + More than one {0} found. - More than one {0} found. - + Plusieurs {0} ont été trouvés. + {0} already contains {1}. - {0} already contains {1}. - + {0} contient déjà {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} contient déjà {1} '{2}'. + {0} already has {1}. - {0} already has {1}. - + {0} a déjà {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} a déjà {1} '{2}'. + {0} was not expected. - {0} was not expected. - + {0} n'était pas attendu. + {0} not provided. - {0} not provided. - + {0} non fourni. + Please specify at least one {0}. - Please specify at least one {0}. - + Spécifiez au moins un {0}. + Could not connect with the server. - Could not connect with the server. - + Impossible de se connecter au serveur. + Required argument {0} is invalid. - Required argument {0} is invalid. - + L'argument obligatoire {0} n'est pas valide. + Option {0} is invalid. - Option {0} is invalid. - + L'option {0} n'est pas valide. + Argument {0} is invalid. - Argument {0} is invalid. - + L'argument {0} n'est pas valide. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + L'argument obligatoire {0} n'a pas été fourni. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Projet ou répertoire '{0}' introuvable. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Projet '{0}' trouvé, mais il n'est pas valide. + Invalid project `{0}`. - Invalid project `{0}`. - + Projet '{0}' non valide. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Le fichier solution spécifié {0} n'existe pas ou il n'y a pas de fichier solution dans le répertoire. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + La solution ou le répertoire '{0}' est introuvable. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Solution non valide '{0}'. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Le fichier solution spécifié {0} n'existe pas ou il n'y a pas de fichier solution dans le répertoire. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + La référence '{0}' n'est pas valide. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Vous devez spécifier au moins une référence à ajouter. Exécutez dotnet add --help pour plus d'informations. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Le projet {0} a déjà une référence '{1}'. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + La référence de package '{0}' n'existe pas. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + La référence de package '{0}' n'est pas valide. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Vous devez spécifier au moins une référence à ajouter. Exécutez dotnet add --help pour plus d'informations. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Référence de package '{0}' ajoutée au projet. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Le projet {0} a déjà une référence '{1}'. + Please specify a version of the package. - Please specify a version of the package. - + Spécifiez une version du package. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Le projet '{0}' n'existe pas. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Le projet '{0}' n'est pas valide. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Vous devez spécifier au moins un projet à ajouter. Exécutez dotnet add --help pour plus d'informations. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Projet '{0}' ajouté à la solution. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + La référence spécifiée {0} n'existe pas dans le projet {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Référence '{0}' supprimée du projet. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Référence '{0}' supprimée. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Référence de package '{0}' introuvable dans le projet. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Référence '{0}' supprimée du projet. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Référence de package '{0}' supprimée. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Projet '{0}' introuvable dans la solution. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projet '{0}' retiré de la solution. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Vous devez spécifier au moins un projet à retirer. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Projet '{0}' supprimé de la solution. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Il n'y a pas de références {0} dans le projet {1}. ;; {0} est le type de l'élément demandé (projet, package, p2p) et {1} est l'objet utilisé (un fichier projet ou un fichier solution). + No projects found in the solution. - No projects found in the solution. - + Aucun projet trouvé dans la solution. + Please specify new version of the package. - Please specify new version of the package. - + Spécifiez une nouvelle version du package. + Please specify which package to update. - Please specify which package to update. - + Spécifiez le package à mettre à jour. + Nothing to update. - Nothing to update. - + Rien à mettre à jour. + Everything is already up-to-date. - Everything is already up-to-date. - + Tout est déjà à jour. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Le package version '{0}' a été mis à jour vers la version '{1}'. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Version du package '{0}' mise à jour. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Impossible de mettre à jour la version du package '{0}'. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Le modèle {0} a été créé. Exécutez "dotnet restore" pour commencer ! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Le modèle {0} a été installé. Vous pouvez utiliser "dotnet new {0}" pour commencer à utiliser le nouveau modèle. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Impossible de créer le modèle {0}. L'erreur retournée était : {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Impossible d'installer le modèle {0}. L'erreur retournée était : {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Le nom spécifié {0} existe déjà. Spécifiez un nom différent. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + L'alias spécifié {0} existe déjà. Spécifiez un alias différent. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Paramètre obligatoire {0} manquant pour le modèle {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.it.xlf b/src/dotnet/xlf/CommonLocalizableStrings.it.xlf index 2288fded9..8783a76a5 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.it.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.it.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Non è stato trovato alcun progetto in `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Sono stati trovati più progetti in `{0}`. Specificare quello da usare. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Per il progetto esiste già un riferimento a `{0}`. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Il riferimento al progetto `{0}` non è stato trovato. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Il riferimento al progetto `{0}` è stato rimosso. + Project - Project - + Progetto + Project file - Project file - + File di progetto + Reference - Reference - + Riferimento + Project reference - Project reference - + Riferimento al progetto + Package reference - Package reference - + Riferimento al pacchetto + Project to Project - Project to Project - + P2P (da progetto a progetto) + Project to Project reference - Project to Project reference - + Riferimento P2P (da progetto a progetto) + Package - Package - + Pacchetto + Solution - Solution - + Soluzione + Solution file - Solution file - + File di soluzione + Executable - Executable - + Eseguibile + Library - Library - + Libreria + Program - Program - + Programma + Application - Application - + Applicazione + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + Il riferimento {0} non esiste. Se si vuole aggiungerlo comunque, usare l'opzione --force. Si noti che questo può avere effetti dannosi sul progetto. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Il riferimento `{0}` è stato aggiunto al progetto. + Add - Add - + Aggiungi + Remove - Remove - + Rimuovi + Delete - Delete - + Elimina + Update - Update - + Aggiorna + New - New - + Nuovo + List - List - + Elenco + Load - Load - + Carica + Save - Save - + Salva + Find - Find - + Trova + Error - Error - + Errore + Warning - Warning - + Avviso + File - File - + File + Directory - Directory - + Directory + Type - Type - + Tipo + Value - Value - + Valore + Group - Group - + Gruppo + {0} added to {1}. - {0} added to {1}. - + L'elemento {0} è stato aggiunto a {1}. + {0} removed from {1}. - {0} removed from {1}. - + L'elemento {0} è stato rimosso da {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + L'elemento {0} è stato eliminato da {1}. + {0} successfully updated. - {0} successfully updated. - + {0} è stato aggiornato. + {0} is invalid. - {0} is invalid. - + {0} non è valido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + L'elemento {0} `{1}` è stato trovato ma non è valido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + L'elemento `{0}` è stato trovato ma non è valido. + Operation is invalid. - Operation is invalid. - + L'operazione non è valida. + Operation {0} is invalid. - Operation {0} is invalid. - + L'operazione {0} non è valida. + {0} not found. - {0} not found. - + {0} non è stato trovato. + {0} or {1} not found. - {0} or {1} not found. - + L'elemento {0} o {1} non è stato trovato. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + L'elemento {0} o {1} non è stato trovato in `{2}`. + File `{0}` not found. - File `{0}` not found. - + Il file `{0}` non è stato trovato. + {0} does not exist. - {0} does not exist. - + {0} non esiste. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + L'elemento {0} `{1}` non esiste. + More than one {0} found. - More than one {0} found. - + È stato trovato più di un elemento {0}. + {0} already contains {1}. - {0} already contains {1}. - + L'elemento {0} contiene già {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + L'elemento {0} contiene già {1} `{2}`. + {0} already has {1}. - {0} already has {1}. - + L'elemento {0} include già {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + L'elemento {0} include già {1} `{2}`. + {0} was not expected. - {0} was not expected. - + {0} è imprevisto. + {0} not provided. - {0} not provided. - + L'elemento {0} non è stato specificato. + Please specify at least one {0}. - Please specify at least one {0}. - + Specificare almeno un elemento {0}. + Could not connect with the server. - Could not connect with the server. - + Non è stato possibile connettersi al server. + Required argument {0} is invalid. - Required argument {0} is invalid. - + L'argomento obbligatorio {0} non è valido. + Option {0} is invalid. - Option {0} is invalid. - + L'opzione {0} non è valida. + Argument {0} is invalid. - Argument {0} is invalid. - + L'argomento {0} non è valido. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + L'argomento obbligatorio {0} non è stato specificato. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Non sono stati trovati progetti o directory `{0}`. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + È stato trovato un progetto `{0}`, che però non è valido. + Invalid project `{0}`. - Invalid project `{0}`. - + Il progetto `{0}` non è valido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Il file di soluzione specificato {0} non esiste oppure nella directory non è presente alcun file di soluzione. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Non sono state trovate soluzioni o directory `{0}`. + Invalid solution `{0}`. - Invalid solution `{0}`. - + La soluzione `{0}` non è valida. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Il file di soluzione specificato {0} non esiste oppure nella directory non è presente alcun file di soluzione. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Il riferimento `{0}` non è valido. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + È necessario specificare almeno un riferimento da aggiungere. Per altre informazioni, eseguire dotnet add --help. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Il progetto {0} include già un riferimento `{1}`. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Il riferimento al pacchetto `{0}` non esiste. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Il riferimento al pacchetto `{0}` non è valido. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + È necessario specificare almeno un riferimento da aggiungere. Per altre informazioni, eseguire dotnet add --help. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Il riferimento al pacchetto `{0}` è stato aggiunto al progetto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Il progetto {0} include già un riferimento `{1}`. + Please specify a version of the package. - Please specify a version of the package. - + Specificare una versione del pacchetto. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Il progetto `{0}` non esiste. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Il progetto `{0}` non è valido. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + È necessario specificare almeno un progetto da aggiungere. Per altre informazioni, eseguire dotnet add --help. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Il progetto `{0}` è stato aggiunto alla soluzione. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Il riferimento specificato {0} non esiste nel progetto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Il riferimento `{0}` è stato eliminato dal progetto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Il riferimento `{0}` è stato eliminato. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Il riferimento al pacchetto `{0}` non è stato trovato nel progetto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Il riferimento `{0}` è stato eliminato dal progetto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Il riferimento al pacchetto `{0}` è stato eliminato. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Il progetto `{0}` non è stato trovato nella soluzione. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Il progetto `{0}` è stato rimosso dalla soluzione. + You must specify at least one project to remove. - You must specify at least one project to remove. - + È necessario specificare almeno un progetto da rimuovere. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Il progetto `{0}` è stato eliminato dalla soluzione. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Non ci sono riferimenti a {0} nel progetto {1}. ;; {0} è il tipo dell'elemento richiesto (progetto, pacchetto o P2P) e {1} è l'oggetto su cui si interviene (file di progetto o di soluzione). + No projects found in the solution. - No projects found in the solution. - + Non sono stati trovati progetti nella soluzione. + Please specify new version of the package. - Please specify new version of the package. - + Specificare la nuova versione del pacchetto. + Please specify which package to update. - Please specify which package to update. - + Specificare il pacchetto da aggiornare. + Nothing to update. - Nothing to update. - + Non ci sono pacchetti da aggiornare. + Everything is already up-to-date. - Everything is already up-to-date. - + Tutti i pacchetti sono già aggiornati. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + La versione del pacchetto `{0}` è stata aggiornata a `{1}`. + Version of package `{0}` updated. - Version of package `{0}` updated. - + La versione del pacchetto `{0}` è stata aggiornata. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Non è stato possibile aggiornare la versione del pacchetto `{0}`. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Il modello {0} è stato creato. Per iniziare, eseguire "dotnet restore". + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Il modello {0} è stato installato. Per iniziare con il nuovo modello, è possibile usare "dotnet new {0}". + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Non è stato possibile creare il modello {0}. Errore restituito: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Non è stato possibile installare il modello {0}. Errore restituito: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Il nome specificato {0} esiste già. Specificare un nome diverso. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + L'alias specificato {0} esiste già. Specificare un alias diverso. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Manca il parametro obbligatorio {0} per il modello {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.ja.xlf b/src/dotnet/xlf/CommonLocalizableStrings.ja.xlf index df9b60449..72b37939b 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.ja.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.ja.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` にプロジェクトが見つかりませんでした。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` に複数のプロジェクトが見つかりました。使用するプロジェクトを指定してください。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + プロジェクトには既に `{0}` への参照が指定されています。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + プロジェクト参照 `{0}` は見つかりませんでした。 + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + プロジェクト参照 `{0}` は削除されました。 + Project - Project - + プロジェクト + Project file - Project file - + プロジェクト ファイル + Reference - Reference - + 参照 + Project reference - Project reference - + プロジェクト参照 + Package reference - Package reference - + パッケージ参照 + Project to Project - Project to Project - + プロジェクト間 + Project to Project reference - Project to Project reference - + プロジェクト間参照 + Package - Package - + パッケージ + Solution - Solution - + ソリューション + Solution file - Solution file - + ソリューション ファイル + Executable - Executable - + 実行可能ファイル + Library - Library - + ライブラリ + Program - Program - + プログラム + Application - Application - + アプリケーション + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + 参照 {0} は存在しません。それでも追加したい場合は、--force オプションを使用してください。これにより、プロジェクトに悪影響がある可能性がありますので注意してください。 Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 参照 `{0}` がプロジェクトに追加されました。 + Add - Add - + 追加 + Remove - Remove - + 削除 + Delete - Delete - + 削除 + Update - Update - + 更新 + New - New - + 新規 + List - List - + 一覧 + Load - Load - + 読み込み + Save - Save - + [保存] + Find - Find - + 検索 + Error - Error - + エラー + Warning - Warning - + 警告 + File - File - + ファイル + Directory - Directory - + ディレクトリ + Type - Type - + 種類 + Value - Value - + + Group - Group - + グループ + {0} added to {1}. - {0} added to {1}. - + {0} が {1} に追加されました。 + {0} removed from {1}. - {0} removed from {1}. - + {0} が {1} から削除されました。 + {0} deleted from {1}. - {0} deleted from {1}. - + {0} が {1} から削除されました。 + {0} successfully updated. - {0} successfully updated. - + {0} が正常に更新されました。 + {0} is invalid. - {0} is invalid. - + {0} は無効です。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}` が見つかりましたが、無効です。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + `{0}` が見つかりましたが、無効です。 + Operation is invalid. - Operation is invalid. - + 操作が無効です。 + Operation {0} is invalid. - Operation {0} is invalid. - + 操作 {0} は無効です。 + {0} not found. - {0} not found. - + {0} が見つかりません。 + {0} or {1} not found. - {0} or {1} not found. - + {0} または {1} が見つかりません。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}` に {0} または {1} が見つかりません。 + File `{0}` not found. - File `{0}` not found. - + ファイル `{0}` が見つかりません。 + {0} does not exist. - {0} does not exist. - + {0} は存在しません。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` は存在しません。 + More than one {0} found. - More than one {0} found. - + 複数の {0} が見つかりました。 + {0} already contains {1}. - {0} already contains {1}. - + {0} には既に {1} が含まれています。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} には既に {1} `{2}` が含まれています。 + {0} already has {1}. - {0} already has {1}. - + {0} には既に {1} があります。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} には既に {1} `{2}` があります。 + {0} was not expected. - {0} was not expected. - + {0} は必要ありません。 + {0} not provided. - {0} not provided. - + {0} が指定されていません。 + Please specify at least one {0}. - Please specify at least one {0}. - + 少なくとも 1 つの {0} を指定してください。 + Could not connect with the server. - Could not connect with the server. - + サーバーに接続できませんでした。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 必要な引数 {0} は無効です。 + Option {0} is invalid. - Option {0} is invalid. - + オプション {0} は無効です。 + Argument {0} is invalid. - Argument {0} is invalid. - + 引数 {0} は無効です。 + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 必要な引数 {0} が指定されていません。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + プロジェクトまたはディレクトリ `{0}` が見つかりませんでした。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + プロジェクト `{0}` が見つかりましたが、有効ではありません。 + Invalid project `{0}`. - Invalid project `{0}`. - + 無効なプロジェクト `{0}`。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定したソリューション ファイル {0} が存在しないか、ディレクトリにソリューション ファイルがありません。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + ソリューションまたはディレクトリ `{0}` が見つかりませんでした。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 無効なソリューション `{0}`。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 指定したソリューション ファイル {0} が存在しないか、ディレクトリにソリューション ファイルがありません。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 参照 `{0}` は無効です。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + 追加する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + プロジェクト {0} には既に参照 `{1}` が指定されています。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + パッケージ参照 `{0}` は存在しません。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + パッケージ参照 `{0}` は無効です。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + 追加する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + パッケージ参照 `{0}` がプロジェクトに追加されました。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + プロジェクト {0} には既に参照 `{1}` が指定されています。 + Please specify a version of the package. - Please specify a version of the package. - + パッケージのバージョンを指定してください。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + プロジェクト `{0}` は存在しません。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + プロジェクト `{0}` は無効です。 + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + 追加するプロジェクトを少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + プロジェクト `{0}` をソリューションに追加しました。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 指定された参照 {0} はプロジェクト {1} に存在しません。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 参照 `{0}` はプロジェクトから削除されました。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 参照 `{0}` が削除されました。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + パッケージ参照 `{0}` がプロジェクト内に見つかりませんでした。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 参照 `{0}` はプロジェクトから削除されました。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + パッケージ参照 `{0}` が削除されました。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + プロジェクト `{0}` がソリューション内に見つかりませんでした。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + プロジェクト `{0}` がソリューションから削除されました。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 削除するプロジェクトを少なくとも 1 つ指定する必要があります。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + プロジェクト `{0}` がソリューションから削除されました。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + プロジェクト {1} 内に {0} 参照がありません。;; {0} は要求中のアイテムの種類であり (プロジェクト、パッケージ、p2p)、{1} は (プロジェクト ファイルまたはソリューション ファイル) で操作されるオブジェクトです。 + No projects found in the solution. - No projects found in the solution. - + ソリューション内にプロジェクトが見つかりません。 + Please specify new version of the package. - Please specify new version of the package. - + パッケージの新しいバージョンを指定してください。 + Please specify which package to update. - Please specify which package to update. - + 更新するパッケージを指定してください。 + Nothing to update. - Nothing to update. - + 更新するものがありません。 + Everything is already up-to-date. - Everything is already up-to-date. - + すべてが既に最新の状態です + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + パッケージ `{0}` のバージョンを `{1}` に更新しました。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + パッケージ `{0}` のバージョンを更新しました。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + パッケージ `{0}` のバージョンを更新できませんでした。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + テンプレート {0} が正常に作成されました。"dotnet restore" を実行して開始してください。 + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + テンプレート {0} が正常にインストールされました。"dotnet new {0}" を使用して、新しいテンプレートの使用を開始できます。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + テンプレート {0} を作成できませんでした。次のエラーが返されました: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + テンプレート {0} をインストールできませんでした。次のエラーが返されました: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 指定した名前 {0} は既に存在します。別の名前を指定してください。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 指定したエイリアス {0} は既に存在します。別のエイリアスを指定してください。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + テンプレート {1} の必須パラメーター {0} がありません。 + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.ko.xlf b/src/dotnet/xlf/CommonLocalizableStrings.ko.xlf index 77aabd7ae..be1cd9eed 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.ko.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.ko.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}`에서 프로젝트를 찾을 수 없습니다. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}`에서 프로젝트를 두 개 이상 찾았습니다. 사용할 프로젝트를 지정하세요. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 프로젝트에 이미 `{0}`에 대한 참조가 있습니다. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 프로젝트 참조 `{0}`을(를) 찾을 수 없습니다. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + 프로젝트 참조 `{0}`이(가) 제거되었습니다. + Project - Project - + 프로젝트 + Project file - Project file - + 프로젝트 파일 + Reference - Reference - + 참조 + Project reference - Project reference - + 프로젝트 참조 + Package reference - Package reference - + 패키지 참조 + Project to Project - Project to Project - + 프로젝트 간 + Project to Project reference - Project to Project reference - + 프로젝트 간 참조 + Package - Package - + 패키지 + Solution - Solution - + 솔루션 + Solution file - Solution file - + 솔루션 파일 + Executable - Executable - + 실행 파일 + Library - Library - + 라이브러리 + Program - Program - + 프로그램 + Application - Application - + 응용 프로그램 + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + {0} 참조가 없습니다. 계속 추가하려면 --force 옵션을 ;사용하세요. 이 경우 프로젝트에 부정적인 영향을 줄 수 있습니다. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 프로젝트에 `{0}` 참조가 추가되었습니다. + Add - Add - + 추가 + Remove - Remove - + 제거 + Delete - Delete - + 삭제 + Update - Update - + 업데이트 + New - New - + 새로 만들기 + List - List - + 목록 + Load - Load - + 로드 + Save - Save - + 저장 + Find - Find - + 찾기 + Error - Error - + 오류 + Warning - Warning - + 경고 + File - File - + 파일 + Directory - Directory - + 디렉터리 + Type - Type - + 형식 + Value - Value - + + Group - Group - + 그룹 + {0} added to {1}. - {0} added to {1}. - + {0}이(가) {1}에 추가되었습니다. + {0} removed from {1}. - {0} removed from {1}. - + {0}이(가) {1}에서 제거되었습니다. + {0} deleted from {1}. - {0} deleted from {1}. - + {0}이(가) {1}에서 삭제되었습니다. + {0} successfully updated. - {0} successfully updated. - + {0}이(가) 업데이트되었습니다. + {0} is invalid. - {0} is invalid. - + {0}이(가) 잘못되었습니다. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}`이(가) 있지만 잘못되었습니다. + `{0}` found but is invalid. - `{0}` found but is invalid. - + {0}이(가) 있지만 잘못되었습니다. + Operation is invalid. - Operation is invalid. - + 작업이 잘못되었습니다. + Operation {0} is invalid. - Operation {0} is invalid. - + {0} 작업이 잘못되었습니다. + {0} not found. - {0} not found. - + '{0}'을(를) 찾을 수 없습니다. + {0} or {1} not found. - {0} or {1} not found. - + '{0}' 또는 {1}을(를) 찾을 수 없습니다. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}`에서 '{0}' 또는 {1}을(를) 찾을 수 없습니다. + File `{0}` not found. - File `{0}` not found. - + `{0}` 파일을 찾을 수 없습니다. + {0} does not exist. - {0} does not exist. - + {0}이(가) 없습니다. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}`이(가) 없습니다. + More than one {0} found. - More than one {0} found. - + {0}을(를) 두 개 이상 찾았습니다. + {0} already contains {1}. - {0} already contains {1}. - + {0}에 {1}이(가) 이미 있습니다. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0}에 {1} `{2}`이(가) 이미 있습니다. + {0} already has {1}. - {0} already has {1}. - + {0}에 {1}이(가) 이미 있습니다. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0}에 {1} `{2}`이(가) 이미 있습니다. + {0} was not expected. - {0} was not expected. - + {0}은(는) 필요하지 않습니다. + {0} not provided. - {0} not provided. - + {0}이(가) 제공되지 않았습니다. + Please specify at least one {0}. - Please specify at least one {0}. - + {0}을(를) 하나 이상 지정하세요. + Could not connect with the server. - Could not connect with the server. - + 서버에 연결할 수 없습니다. + Required argument {0} is invalid. - Required argument {0} is invalid. - + 필수 인수 {0}이(가) 잘못되었습니다. + Option {0} is invalid. - Option {0} is invalid. - + {0} 옵션이 잘못되었습니다. + Argument {0} is invalid. - Argument {0} is invalid. - + {0} 인수가 잘못되었습니다. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 필수 인수 {0}이(가) 제공되지 않았습니다. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 프로젝트 또는 디렉터리 {0}을(를) 찾을 수 없습니다. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + `{0}` 프로젝트가 있지만 잘못되었습니다. + Invalid project `{0}`. - Invalid project `{0}`. - + `{0}` 프로젝트가 잘못되었습니다. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 지정한 솔루션 파일 {0}이(가) 없거나 디렉터리에 솔루션 파일이 없습니다. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 솔루션 또는 디렉터리 `{0}`을(를) 찾을 수 없습니다. + Invalid solution `{0}`. - Invalid solution `{0}`. - + `{0}` 솔루션이 잘못되었습니다. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 지정한 솔루션 파일 {0}이(가) 없거나 디렉터리에 솔루션 파일이 없습니다. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + `{0}` 참조가 잘못되었습니다. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + 추가할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} 프로젝트에 이미 `{1}` 참조가 있습니다. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 패키지 참조 `{0}`이(가) 없습니다. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 패키지 참조 `{0}`이(가) 잘못되었습니다. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + 추가할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 프로젝트에 패키지 참조 `{0}`이(가) 추가되었습니다. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} 프로젝트에 이미 `{1}` 참조가 있습니다. + Please specify a version of the package. - Please specify a version of the package. - + 패키지 버전을 지정하세요. + Project `{0}` does not exist. - Project `{0}` does not exist. - + `{0}` 프로젝트가 없습니다. + Project `{0}` is invalid. - Project `{0}` is invalid. - + `{0}` 프로젝트가 잘못되었습니다. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + 추가할 프로젝트를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + `{0}` 프로젝트가 솔루션에 추가되었습니다. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 지정한 참조 {0}이(가) {1} 프로젝트에 없습니다. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` 참조가 프로젝트에서 삭제되었습니다. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + `{0}` 참조가 삭제되었습니다. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 프로젝트에서 패키지 참조 `{0}`을(를) 찾을 수 없습니다. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` 참조가 프로젝트에서 삭제되었습니다. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 패키지 참조 `{0}`이(가) 삭제되었습니다. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 솔루션에서 `{0}` 프로젝트를 찾을 수 없습니다. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + `{0}` 프로젝트가 솔루션에서 제거되었습니다. + You must specify at least one project to remove. - You must specify at least one project to remove. - + 제거할 프로젝트를 하나 이상 지정해야 합니다. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + `{0}` 프로젝트가 솔루션에서 삭제되었습니다. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + {1} 프로젝트에 {0} 참조가 없습니다. ;; {0}은(는) 요청한 항목의 형식(프로젝트, 패키지, p2p)이고 {1}은(는) 작업 중인 개체(프로젝트 파일 또는 솔루션 파일)입니다. + No projects found in the solution. - No projects found in the solution. - + 솔루션에서 프로젝트를 찾을 수 없습니다. + Please specify new version of the package. - Please specify new version of the package. - + 패키지의 새 버전을 지정하세요. + Please specify which package to update. - Please specify which package to update. - + 업데이트할 패키지를 지정하세요. + Nothing to update. - Nothing to update. - + 업데이트할 사항이 없습니다. + Everything is already up-to-date. - Everything is already up-to-date. - + 모든 항목이 이미 최신 상태입니다. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + `{0}` 패키지의 버전이 `{1}`(으)로 업데이트되었습니다. + Version of package `{0}` updated. - Version of package `{0}` updated. - + `{0}` 패키지의 버전이 업데이트되었습니다. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + `{0}` 패키지의 버전을 업데이트할 수 없습니다. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + {0} 템플릿을 만들었습니다. 시작하려면 "dotnet restore"를 실행하세요. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + {0} 템플릿이 설치되었습니다. 새 템플릿으로 시작하려면 "dotnet new {0}"을(를) 사용하세요. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + {0} 템플릿을 만들 수 없습니다. 반환된 오류는 {1}입니다. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + {0} 템플릿을 설치할 수 없습니다. 반환된 오류는 {1}입니다. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 지정한 이름 {0}이(가) 이미 있습니다. 다른 이름을 지정하세요. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 지정한 별칭 {0}이(가) 이미 있습니다. 다른 별칭을 지정하세요. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + {1} 템플릿에 대한 필수 매개 변수 {0}이(가) 없습니다. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.pl.xlf b/src/dotnet/xlf/CommonLocalizableStrings.pl.xlf index 533dbc346..dc7e90a83 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.pl.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.pl.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Nie można odnaleźć żadnego projektu w lokalizacji „{0}”. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Znaleziono więcej niż jeden projekt w lokalizacji „{0}”. Określ, który ma zostać użyty. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projekt zawiera już odwołanie do elementu „{0}”. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Nie można odnaleźć odwołania do projektu „{0}”. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Odwołanie do projektu „{0}” zostało usunięte. + Project - Project - + Projekt + Project file - Project file - + Plik projektu + Reference - Reference - + Odwołanie + Project reference - Project reference - + Odwołanie do projektu + Package reference - Package reference - + Odwołanie do pakietu + Project to Project - Project to Project - + Między projektami + Project to Project reference - Project to Project reference - + Odwołanie między projektami + Package - Package - + Pakiet + Solution - Solution - + Rozwiązanie + Solution file - Solution file - + Plik rozwiązania + Executable - Executable - + Plik wykonywalny + Library - Library - + Biblioteka + Program - Program - + Program + Application - Application - + Aplikacja + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + Odwołanie {0} nie istnieje. Jeśli mimo to chcesz je dodać, użyj opcji --force. Pamiętaj, że może to negatywnie wpłynąć na projekt. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Do projektu zostało dodane odwołanie „{0}”. + Add - Add - + Dodaj + Remove - Remove - + Skasuj + Delete - Delete - + Usuń + Update - Update - + Aktualizuj + New - New - + Nowy + List - List - + Wyświetl listę + Load - Load - + Wczytaj + Save - Save - + Zapisz + Find - Find - + Znajdź + Error - Error - + Błąd + Warning - Warning - + Ostrzeżenie + File - File - + Plik + Directory - Directory - + Katalog + Type - Type - + Typ + Value - Value - + Wartość + Group - Group - + Grupa + {0} added to {1}. - {0} added to {1}. - + Dodano element {0} do elementu {1}. + {0} removed from {1}. - {0} removed from {1}. - + Skasowano element {0} z elementu {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Usunięto element {0} z elementu {1}. + {0} successfully updated. - {0} successfully updated. - + Pomyślnie zaktualizowano element {0}. + {0} is invalid. - {0} is invalid. - + Element {0} jest nieprawidłowy. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Element {0} „{1}” został znaleziony, ale jest nieprawidłowy. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Element „{0}” został znaleziony, ale jest nieprawidłowy. + Operation is invalid. - Operation is invalid. - + Operacja jest nieprawidłowa. + Operation {0} is invalid. - Operation {0} is invalid. - + Operacja {0} jest nieprawidłowa. + {0} not found. - {0} not found. - + Nie odnaleziono elementu {0}. + {0} or {1} not found. - {0} or {1} not found. - + Nie odnaleziono elementu {0} lub {1}. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + Nie odnaleziono elementu {0} lub {1} w lokalizacji „{2}”. + File `{0}` not found. - File `{0}` not found. - + Nie odnaleziono pliku „{0}”. + {0} does not exist. - {0} does not exist. - + Element {0} nie istnieje. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + Element {0} „{1}” nie istnieje. + More than one {0} found. - More than one {0} found. - + Znaleziono więcej niż jeden element {0}. + {0} already contains {1}. - {0} already contains {1}. - + Element {0} zawiera już element {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + Element {0} zawiera już element {1} „{2}”. + {0} already has {1}. - {0} already has {1}. - + Element {0} ma już element {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + Element {0} ma już element {1} „{2}”. + {0} was not expected. - {0} was not expected. - + Nieoczekiwany element {0}. + {0} not provided. - {0} not provided. - + Nie podano elementu {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Określ co najmniej jeden element {0}. + Could not connect with the server. - Could not connect with the server. - + Nie można nawiązać połączenia z serwerem. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Wymagany argument {0} jest nieprawidłowy. + Option {0} is invalid. - Option {0} is invalid. - + Opcja {0} jest nieprawidłowa. + Argument {0} is invalid. - Argument {0} is invalid. - + Argument {0} jest nieprawidłowy. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Nie podano wymaganego argumentu {0}. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Nie można odnaleźć projektu ani katalogu „{0}”. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Znaleziono projekt „{0}”, ale jest on nieprawidłowy. + Invalid project `{0}`. - Invalid project `{0}`. - + Nieprawidłowy projekt „{0}”. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Określony plik rozwiązania {0} nie istnieje bądź w katalogu nie ma żadnego pliku rozwiązania. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Nie można odnaleźć rozwiązania ani katalogu „{0}”. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Nieprawidłowe rozwiązanie „{0}”. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Określony plik rozwiązania {0} nie istnieje bądź w katalogu nie ma żadnego pliku rozwiązania. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Odwołanie „{0}” jest nieprawidłowe. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Musisz określić co najmniej jedno odwołanie do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} zawiera już odwołanie „{1}”. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Odwołanie do pakietu „{0}” nie istnieje. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Odwołanie do pakietu „{0}” jest nieprawidłowe. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Musisz określić co najmniej jedno odwołanie do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Do projektu zostało dodane odwołanie do pakietu „{0}”. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} zawiera już odwołanie „{1}”. + Please specify a version of the package. - Please specify a version of the package. - + Określ wersję pakietu. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Projekt „{0}” nie istnieje. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Projekt „{0}” jest nieprawidłowy. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Musisz określić co najmniej jeden projekt do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Dodano projekt „{0}” do rozwiązania. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Określone odwołanie {0} nie istnieje w projekcie {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odwołanie „{0}” zostało usunięte z projektu. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Odwołanie „{0}” zostało usunięte. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Nie można odnaleźć odwołania do pakietu „{0}” w projekcie. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odwołanie „{0}” zostało usunięte z projektu. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Odwołanie do pakietu „{0}” zostało usunięte. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Nie można odnaleźć projektu „{0}” w rozwiązaniu. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projekt „{0}” został skasowany z rozwiązania. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Musisz określić co najmniej jeden projekt do skasowania. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Projekt „{0}” został usunięty z rozwiązania. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Brak odwołań do elementu typu {0} w projekcie {1}. ;; {0} to typ żądanego elementu (projekt, pakiet, odwołanie między projektami), a {1} to obiekt, na którym przeprowadzana jest operacja (plik projektu lub rozwiązania). + No projects found in the solution. - No projects found in the solution. - + Nie znaleziono żadnych projektów w tym rozwiązaniu. + Please specify new version of the package. - Please specify new version of the package. - + Określ nową wersję pakietu. + Please specify which package to update. - Please specify which package to update. - + Określ, który pakiet ma zostać zaktualizowany. + Nothing to update. - Nothing to update. - + Brak elementów wymagających aktualizacji. + Everything is already up-to-date. - Everything is already up-to-date. - + Wszystko jest już aktualne. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Pakiet „{0}” został zaktualizowany do wersji „{1}”. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Wersja pakietu „{0}” została zaktualizowana. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Nie można zaktualizować wersji pakietu „{0}”. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Pomyślnie utworzono szablon {0}. Uruchom polecenie „dotnet restore”, aby rozpocząć pracę. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Pomyślnie zainstalowano szablon {0}. Za pomocą polecenia „dotnet new {0}” możesz rozpocząć pracę z nowym szablonem. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Nie można utworzyć szablonu {0}. Zwrócony błąd to: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Nie można zainstalować szablonu {0}. Zwrócony błąd to: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Podana nazwa {0} już istnieje. Podaj inną nazwę. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Podany alias {0} już istnieje. Podaj inny alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Brak obowiązkowego parametru {0} dla szablonu {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf b/src/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf index 3ad0a141d..ae316f745 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.pt-BR.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Não foi possível encontrar nenhum projeto em ‘{0}’. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Foi encontrado mais de um projeto em ‘{0}’. Especifique qual usar. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + O projeto já tem uma referência para ‘{0}’. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Não foi possível encontrar a referência de projeto ‘{0}’. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Referência de projeto ‘{0}’ removida. + Project - Project - + Projeto + Project file - Project file - + Arquivo de projeto + Reference - Reference - + Referência + Project reference - Project reference - + Referência do projeto + Package reference - Package reference - + Referência do pacote + Project to Project - Project to Project - + Projeto para Projeto + Project to Project reference - Project to Project reference - + Referência de Projeto para Projeto + Package - Package - + Pacote + Solution - Solution - + Solução + Solution file - Solution file - + Arquivo de solução + Executable - Executable - + Executável + Library - Library - + Biblioteca + Program - Program - + Programa + Application - Application - + Aplicativo + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + A referência {0} não existe. Se você ainda desejar adicioná-lo, use a opção --force. Observe que isso pode ter efeitos adversos no projeto. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + A referência ‘{0}’ foi adicionada ao projeto. + Add - Add - + Adicionar + Remove - Remove - + Remover + Delete - Delete - + Excluir + Update - Update - + Atualizar + New - New - + Novo + List - List - + Listar + Load - Load - + Carregar + Save - Save - + Salvar + Find - Find - + Localizar + Error - Error - + Erro + Warning - Warning - + Aviso + File - File - + Arquivo + Directory - Directory - + Diretório + Type - Type - + Tipo + Value - Value - + Valor + Group - Group - + Grupo + {0} added to {1}. - {0} added to {1}. - + {0} adicionado a {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} removido de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} excluído de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} atualizado com êxito. + {0} is invalid. - {0} is invalid. - + {0} é inválido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} ‘{1}’ encontrado, mas é inválido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + ‘{0}’ encontrado, mas é inválido. + Operation is invalid. - Operation is invalid. - + A operação é inválida. + Operation {0} is invalid. - Operation {0} is invalid. - + A operação {0} é inválida. + {0} not found. - {0} not found. - + {0} não encontrado. + {0} or {1} not found. - {0} or {1} not found. - + {0} ou {1} não encontrado. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} ou {1} não encontrado em {2}’. + File `{0}` not found. - File `{0}` not found. - + Arquivo ‘{0}’ não encontrado. + {0} does not exist. - {0} does not exist. - + {0} não existe. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} ‘{1}’ não existe. + More than one {0} found. - More than one {0} found. - + Mais de um {0} encontrado. + {0} already contains {1}. - {0} already contains {1}. - + {0} já contém {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} já contém {1} ‘{2}’. + {0} already has {1}. - {0} already has {1}. - + {0} já tem {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} já tem {1} ‘{2}’. + {0} was not expected. - {0} was not expected. - + {0} não era esperado. + {0} not provided. - {0} not provided. - + {0} não fornecido. + Please specify at least one {0}. - Please specify at least one {0}. - + Especifique pelo menos um {0}. + Could not connect with the server. - Could not connect with the server. - + Não foi possível se conectar ao servidor. + Required argument {0} is invalid. - Required argument {0} is invalid. - + O argumento obrigatório {0} é inválido. + Option {0} is invalid. - Option {0} is invalid. - + A opção {0} é inválida. + Argument {0} is invalid. - Argument {0} is invalid. - + O argumento {0} é inválido. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + O argumento obrigatório {0} não foi fornecido. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Não foi possível encontrar o projeto ou diretório ‘{0}’. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Foi encontrado um projeto ‘{0}’, mas ele é inválido. + Invalid project `{0}`. - Invalid project `{0}`. - + Projeto ‘{0}’ inválido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + O arquivo de solução {0} especificado não existe ou não há um arquivo de solução no diretório. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Não foi possível encontrar a solução ou diretório ‘{0}’. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Solução inválida ‘{0}’. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + O arquivo de solução {0} especificado não existe ou não há um arquivo de solução no diretório. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + A referência ‘{0}’ é inválida. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + É necessário especificar pelo menos uma referência para ser adicionada. Execute dotnet add --help para obter mais informações. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + O projeto {0} já tem uma referência ‘{1}’. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + A referência do pacote ‘{0}’ não existe. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + A referência do pacote ‘{0}’ é inválida. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + É necessário especificar pelo menos uma referência para ser adicionada. Execute dotnet add --help para obter mais informações. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + A referência do pacote ‘{0}’ foi adicionada ao projeto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + O projeto {0} já tem uma referência ‘{1}’. + Please specify a version of the package. - Please specify a version of the package. - + Especifique uma versão do pacote. + Project `{0}` does not exist. - Project `{0}` does not exist. - + O projeto ‘{0}’ não existe. + Project `{0}` is invalid. - Project `{0}` is invalid. - + O projeto ‘{0}’ é inválido. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + É necessário especificar pelo menos um projeto para ser adicionado. Execute dotnet add --help para obter mais informações. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + O projeto ‘{0}’ foi adicionado à solução. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + A referência {0} especificada não existe no projeto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + A referência ‘{0}’ foi excluída do projeto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + A referência ‘{0}’ foi excluída. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Não foi possível encontrar a referência do pacote ‘{0}’ no projeto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + A referência ‘{0}’ foi excluída do projeto. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + A referência do pacote ‘{0}’ foi excluída. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Não foi possível encontrar o projeto ‘{0}’ na solução. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + O projeto ‘{0}’ foi removido da solução. + You must specify at least one project to remove. - You must specify at least one project to remove. - + É necessário especificar pelo menos um projeto para ser removido. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + O projeto ‘{0}’ foi excluído da solução. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Não há referências {0} no projeto {1}. ;; {0} é o tipo do item sendo solicitado (projeto, pacote, p2p) e {1} é o objeto no qual ocorre a operação (um arquivo de projeto ou um arquivo de solução). + No projects found in the solution. - No projects found in the solution. - + Não foi encontrado nenhum projeto na solução. + Please specify new version of the package. - Please specify new version of the package. - + Especifique a nova versão do pacote. + Please specify which package to update. - Please specify which package to update. - + Especifique qual pacote atualizar. + Nothing to update. - Nothing to update. - + Nada para atualizar. + Everything is already up-to-date. - Everything is already up-to-date. - + Tudo já está atualizado. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Versão do pacote ‘{0}’ atualizada para ‘{1}’. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Versão do pacote ‘{0}’ atualizada. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Não foi possível atualizar a versão do pacote ‘{0}’. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + O modelo {0} foi criado com êxito. Execute "dotnet restore" para começar. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + O modelo {0} foi instalado com êxito. Você pode usar "dotnet new {0}" para começar a trabalhar com um novo modelo. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Não foi possível criar o modelo {0}. O erro retornado foi: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Não foi possível instalar o modelo {0}. O erro retornado foi: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + O nome especificado {0} já existe. Especifique um nome diferente. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + O alias especificado {0} já existe. Especifique um alias diferente. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + O parâmetro obrigatório {0} está ausente no modelo {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.ru.xlf b/src/dotnet/xlf/CommonLocalizableStrings.ru.xlf index 9c736c35a..96fc9508a 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.ru.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.ru.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Не удалось найти проекты в "{0}". + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Найдено несколько проектов в "{0}". Выберите один. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Проект уже содержит ссылку на "{0}". + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Не удалось найти ссылку на проект "{0}". + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + Ссылка на проект "{0}" удалена. + Project - Project - + Проект + Project file - Project file - + Файл проекта + Reference - Reference - + Ссылка + Project reference - Project reference - + Ссылка на проект + Package reference - Package reference - + Ссылка на пакет + Project to Project - Project to Project - + Проект — проект + Project to Project reference - Project to Project reference - + Ссылка проекта на проект + Package - Package - + Пакет + Solution - Solution - + Решение + Solution file - Solution file - + Файл решения + Executable - Executable - + Исполняемый файл + Library - Library - + Библиотека + Program - Program - + Программа + Application - Application - + Приложение + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + Ссылка {0} не существует. Если требуется добавить ее, используйте параметр --force. Учтите, что это может отрицательно повлиять на проекты. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Ссылка "{0}" добавлена в проект. + Add - Add - + Добавить + Remove - Remove - + Удалить + Delete - Delete - + Удаление. + Update - Update - + Обновить + New - New - + Создать + List - List - + Список + Load - Load - + Загрузить + Save - Save - + Сохранить + Find - Find - + Найти + Error - Error - + Ошибка + Warning - Warning - + Предупреждение + File - File - + Файл + Directory - Directory - + Каталог + Type - Type - + Тип + Value - Value - + Значение + Group - Group - + Группа + {0} added to {1}. - {0} added to {1}. - + {0} добавл. в {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} удал. из {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} удал. из {1}. + {0} successfully updated. - {0} successfully updated. - + Успешно обновлено: {0}. + {0} is invalid. - {0} is invalid. - + Недопустимо: {0}. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} "{1}" найдено, однако недопустимо. + `{0}` found but is invalid. - `{0}` found but is invalid. - + "{0}" найдено, однако недопустимо. + Operation is invalid. - Operation is invalid. - + Операция недопустима. + Operation {0} is invalid. - Operation {0} is invalid. - + Операция "{0}" недопустима. + {0} not found. - {0} not found. - + {0}: не найдено. + {0} or {1} not found. - {0} or {1} not found. - + {0} или {1}: не найдено. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} или {1}: не найдено в "{2}". + File `{0}` not found. - File `{0}` not found. - + Файл "{0}" не найден. + {0} does not exist. - {0} does not exist. - + {0} не существует. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} "{1}" не существует. + More than one {0} found. - More than one {0} found. - + Найдено несколько "{0}". + {0} already contains {1}. - {0} already contains {1}. - + {0} уже содержит {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} уже содержит {1} "{2}". + {0} already has {1}. - {0} already has {1}. - + {0} уже имеет {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} уже имеет {1} "{2}". + {0} was not expected. - {0} was not expected. - + Не ожидалось: {0}. + {0} not provided. - {0} not provided. - + Не указано: {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Укажите хотя бы один "{0}". + Could not connect with the server. - Could not connect with the server. - + Не удалось подключиться к серверу. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Обязательный аргумент {0} недопустим. + Option {0} is invalid. - Option {0} is invalid. - + Параметр {0} недопустим. + Argument {0} is invalid. - Argument {0} is invalid. - + Аргумент {0} недопустим. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Обязательный аргумент {0} не указан. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Не удалось найти проект или каталог "{0}". + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Найден проект "{0}", однако он недопустим. + Invalid project `{0}`. - Invalid project `{0}`. - + Недопустимый проект "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Указанный файл решения "{0}" не существует, или в каталоге нет файла решения. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Не удалось найти решение или каталог "{0}". + Invalid solution `{0}`. - Invalid solution `{0}`. - + Недопустимое решение "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Указанный файл решения "{0}" не существует, или в каталоге нет файла решения. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Ссылка "{0}" недопустима. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Необходимо указать по крайней мере одну добавляемую ссылку. Для получения дополнительных сведений выполните команду dotnet add --help. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Проект "{0}" уже содержит ссылку "{1}". + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Ссылка на пакет "{0}" не существует. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Ссылка на пакет "{0}" недопустима. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Необходимо указать по крайней мере одну добавляемую ссылку. Для получения дополнительных сведений выполните команду dotnet add --help. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Ссылка на проект "{0}" добавлена в проект. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Проект "{0}" уже содержит ссылку "{1}". + Please specify a version of the package. - Please specify a version of the package. - + Укажите версию пакета. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Проект "{0}" не существует. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Проект "{0}" недопустим. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Необходимо указать по крайней мере один добавляемый проект. Для получения дополнительных сведений выполните команду dotnet add --help. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Проект "{0}" добавлен в решение. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Указанная ссылка {0} не существует в проекте {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Ссылка "{0}" удалена из проекта. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Ссылка "{0}" удалена. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Ссылку на пакет "{0}" не удалось найти в проекте. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Ссылка "{0}" удалена из проекта. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Ссылка на пакет "{0}" удалена. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Проект "{0}" не удалось найти в решении. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Проект "{0}" удален из решения. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Необходимо указать по крайней мере один удаляемый проект. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Проект "{0}" удален из решения. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + В проекте {1} нет ссылок {0}. ;; {0} — тип запрашиваемого элемента (проект, пакет, p2p), а {1} — обрабатываемый объект (файл проекта или файл решения). + No projects found in the solution. - No projects found in the solution. - + Проекты не найдены в решении. + Please specify new version of the package. - Please specify new version of the package. - + Укажите новую версию пакета. + Please specify which package to update. - Please specify which package to update. - + Укажите обновляемый пакет. + Nothing to update. - Nothing to update. - + Нет элементов для обновления. + Everything is already up-to-date. - Everything is already up-to-date. - + Все элементы в актуальном состоянии. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Версия пакета "{0}" обновлена до "{1}". + Version of package `{0}` updated. - Version of package `{0}` updated. - + Версия пакета "{0}" обновлена. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Не удалось обновить версию пакета "{0}". + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Шаблон "{0}" успешно создан. Выполните команду dotnet restore, чтобы приступить к работе. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Шаблон "{0}" успешно установлен. Чтобы начать работу с новым шаблоном, можно использовать команду dotnet new {0}. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Не удалось создать шаблон "{0}". Возвращена ошибка: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Не удалось установить шаблон "{0}". Возвращена ошибка: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Указанное имя "{0}" уже существует. Укажите другое имя. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Указанный псевдоним "{0}" уже существует. Укажите другой псевдоним. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + Отсутствует обязательный параметр {0} для шаблона {1}. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.tr.xlf b/src/dotnet/xlf/CommonLocalizableStrings.tr.xlf index 300a76fb4..a17d1e893 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.tr.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.tr.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` içinde proje bulunamadı. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` içinde birden fazla proje bulundu. Lütfen hangisinin kullanılacağını belirtin. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projede `{0}` başvurusu zaten var. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + `{0}` proje başvurusu bulunamadı. + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + `{0}` proje başvurusu kaldırıldı. + Project - Project - + Proje + Project file - Project file - + Proje dosyası + Reference - Reference - + Başvuru + Project reference - Project reference - + Proje başvurusu + Package reference - Package reference - + Paket başvurusu + Project to Project - Project to Project - + Projeden Projeye + Project to Project reference - Project to Project reference - + Projeden Projeye başvuru + Package - Package - + Paket + Solution - Solution - + Çözüm + Solution file - Solution file - + Çözüm dosyası + Executable - Executable - + Yürütülebilir + Library - Library - + Kitaplık + Program - Program - + Program + Application - Application - + Uygulama + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + {0} başvurusu yok. Yine de eklemek istiyorsanız lütfen --force seçeneğini kullanın. Bunun yapılması projeyi olumsuz yönde etkileyebilir. Reference `{0}` added to the project. - Reference `{0}` added to the project. - + `{0}` başvurusu projeye eklendi. + Add - Add - + Ekle + Remove - Remove - + Kaldır + Delete - Delete - + Sil + Update - Update - + Güncelleştir + New - New - + Yeni + List - List - + Liste + Load - Load - + Yükle + Save - Save - + Kaydet + Find - Find - + Bul + Error - Error - + Hata + Warning - Warning - + Uyarı + File - File - + Dosya + Directory - Directory - + Dizin + Type - Type - + Tür + Value - Value - + Değer + Group - Group - + Grup + {0} added to {1}. - {0} added to {1}. - + {0}, {1} konumuna eklendi. + {0} removed from {1}. - {0} removed from {1}. - + {0}, {1} konumundan kaldırıldı. + {0} deleted from {1}. - {0} deleted from {1}. - + {0}, {1} konumundan silindi. + {0} successfully updated. - {0} successfully updated. - + {0} başarıyla güncelleştirildi. + {0} is invalid. - {0} is invalid. - + {0} geçersiz. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}` bulundu, ancak geçersiz. + `{0}` found but is invalid. - `{0}` found but is invalid. - + `{0}` bulundu, ancak geçersiz. + Operation is invalid. - Operation is invalid. - + İşlem geçersiz. + Operation {0} is invalid. - Operation {0} is invalid. - + {0} işlemi geçersiz. + {0} not found. - {0} not found. - + {0} bulunamadı. + {0} or {1} not found. - {0} or {1} not found. - + {0} veya {1} bulunamadı. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}` içinde {0} veya {1} bulunamadı. + File `{0}` not found. - File `{0}` not found. - + `{0}` dosyası bulunamadı. + {0} does not exist. - {0} does not exist. - + {0} yok. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` yok. + More than one {0} found. - More than one {0} found. - + Birden fazla {0} bulundu. + {0} already contains {1}. - {0} already contains {1}. - + {0} zaten {1} içeriyor. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} zaten {1} `{2}` içeriyor. + {0} already has {1}. - {0} already has {1}. - + {0} zaten {1} öğesine sahip. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} zaten {1} `{2}` öğesine sahip. + {0} was not expected. - {0} was not expected. - + {0} beklenmiyor. + {0} not provided. - {0} not provided. - + {0} belirtilmedi. + Please specify at least one {0}. - Please specify at least one {0}. - + Lütfen en az bir {0} belirtin. + Could not connect with the server. - Could not connect with the server. - + Sunucuyla bağlantı kurulamadı. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Gerekli olan {0} bağımsız değişkeni geçersiz. + Option {0} is invalid. - Option {0} is invalid. - + {0} seçeneği geçersiz. + Argument {0} is invalid. - Argument {0} is invalid. - + {0} bağımsız değişkeni geçersiz. + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Gerekli olan {0} bağımsız değişkeni belirtilmedi. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` projesi veya dizini bulunamadı. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Bir `{0}` projesi bulundu ancak geçersiz. + Invalid project `{0}`. - Invalid project `{0}`. - + `{0}` projesi geçersiz. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Belirtilen {0} çözüm dosyası yok veya dizinde bir çözüm dosyası yok. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + `{0}` çözümü veya dizini bulunamadı. + Invalid solution `{0}`. - Invalid solution `{0}`. - + `{0}` çözümü geçersiz. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Belirtilen {0} çözüm dosyası yok veya dizinde bir çözüm dosyası yok. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + `{0}` başvurusu geçersiz. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + Eklemek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} projesinde `{1}` başvurusu zaten var. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + `{0}` paket başvurusu yok. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + `{0}` paket başvurusu geçersiz. + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + Eklemek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + `{0}` paket başvurusu projeye eklendi. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} projesinde `{1}` başvurusu zaten var. + Please specify a version of the package. - Please specify a version of the package. - + Lütfen paket sürümünü belirtin. + Project `{0}` does not exist. - Project `{0}` does not exist. - + `{0}` projesi yok. + Project `{0}` is invalid. - Project `{0}` is invalid. - + `{0}` projesi geçersiz. + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + Eklemek için en az bir proje belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + `{0}` projesi çözüme eklendi. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Belirtilen {0} başvurusu {1} projesinde yok. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` başvurusu projeden silindi. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + `{0}` başvurusu silindi. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + `{0}` paket başvurusu projede bulunamadı. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` başvurusu projeden silindi. + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + `{0}` paket başvurusu silindi. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + `{0}` projesi çözümde bulunamadı. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + `{0}` projesi çözümden kaldırıldı. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Kaldırmak için en az bir proje belirtmeniz gerekir. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + `{0}` projesi çözümden silindi. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + {1} projesinde {0} başvurusu yok. ;; {0}, istenen öğenin türü (proje, paket, p2p) ve {1}, üzerinde işlem yapılan nesnedir (bir proje dosyası veya çözüm dosyası). + No projects found in the solution. - No projects found in the solution. - + Çözümde proje bulunamadı. + Please specify new version of the package. - Please specify new version of the package. - + Lütfen paketin yeni sürümünü belirtin. + Please specify which package to update. - Please specify which package to update. - + Lütfen güncelleştirilecek paketi belirtin. + Nothing to update. - Nothing to update. - + Güncelleştirilecek bir şey yok. + Everything is already up-to-date. - Everything is already up-to-date. - + Her şey güncel. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + `{0}` paketinin sürümü `{1}` olarak güncelleştirildi. + Version of package `{0}` updated. - Version of package `{0}` updated. - + `{0}` paketinin sürümü güncelleştirildi. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + `{0}` paketinin sürümü güncelleştirilemedi. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + {0} şablonu başarıyla oluşturuldu. Başlamak için lütfen "dotnet restore" komutunu çalıştırın! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + {0} şablonu başarıyla yüklendi. Yeni şablonu kullanmaya başlamak için "dotnet new {0}" komutunu kullanabilirsiniz. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + {0} şablonu oluşturulamadı. Döndürülen hata: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + {0} şablonu yüklenemedi. Döndürülen hata: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Belirtilen {0} adı zaten var. Lütfen farklı bir ad belirtin. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Belirtilen {0} diğer adı zaten var. Lütfen farklı bir diğer ad belirtin. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + {1} şablonunda, zorunlu olan {0} parametresi eksik. + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.xlf b/src/dotnet/xlf/CommonLocalizableStrings.xlf index 30ccfa8a5..dd8ae8ddb 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.xlf @@ -5,510 +5,491 @@ Could not find any project in `{0}`. - + Found more than one project in `{0}`. Please specify which one to use. - + Project already has a reference to `{0}`. - + Project reference `{0}` could not be found. - + Project reference `{0}` removed. - - - - Required argument - - - - Option - - - - Argument - - - - Help - + Project - + Project file - + Reference - + Project reference - + Package reference - + Project to Project - + Project to Project reference - + Package - + Solution - + Solution file - + Executable - + Library - + Program - + Application - + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. Reference `{0}` added to the project. - + Add - + Remove - + Delete - + Update - + New - + List - + Load - + Save - + Find - + Error - + Warning - + File - + Directory - + Type - + Value - + Group - + {0} added to {1}. - + {0} removed from {1}. - + {0} deleted from {1}. - + {0} successfully updated. - + {0} is invalid. - + {0} `{1}` found but is invalid. - + `{0}` found but is invalid. - + Operation is invalid. - + Operation {0} is invalid. - + {0} not found. - + {0} or {1} not found. - + {0} or {1} not found in `{2}`. - + File `{0}` not found. - + {0} does not exist. - + {0} `{1}` does not exist. - + More than one {0} found. - + {0} already contains {1}. - + {0} already contains {1} `{2}`. - + {0} already has {1}. - + {0} already has {1} `{2}`. - + {0} was not expected. - + {0} not provided. - + Please specify at least one {0}. - + Could not connect with the server. - + Required argument {0} is invalid. - + Option {0} is invalid. - + Argument {0} is invalid. - + Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - + Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - + Found a project `{0}` but it is invalid. - + Invalid project `{0}`. - + Specified solution file {0} does not exist, or there is no solution file in the directory. - + Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Invalid solution `{0}`. - + Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Reference `{0}` is invalid. - + - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. Project {0} already has a reference `{1}`. - + Package reference `{0}` does not exist. - + Package reference `{0}` is invalid. - + - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. Package reference `{0}` added to the project. - + Project {0} already has a reference `{1}`. - + Please specify a version of the package. - + Project `{0}` does not exist. - + Project `{0}` is invalid. - + - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - + Specified reference {0} does not exist in project {1}. - + Reference `{0}` deleted from the project. - + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Package reference `{0}` could not be found in the project. - + Reference `{0}` deleted from the project. - + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - + Project `{0}` could not be found in the solution. - + Project `{0}` removed from solution. - + You must specify at least one project to remove. - + Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + No projects found in the solution. - + Please specify new version of the package. - + Please specify which package to update. - + Nothing to update. - + Everything is already up-to-date. - + Version of package `{0}` updated to `{1}`. - + Version of package `{0}` updated. - + Could not update the version of the package `{0}`. - + The template {0} created successfully. Please run "dotnet restore" to get started! - + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Template {0} could not be created. Error returned was: {1}. - + Template {0} could not be installed. Error returned was: {1}. - + Specified name {0} already exists. Please specify a different name. - + Specified alias {0} already exists. Please specify a different alias. - + Mandatory parameter {0} missing for template {1}. + + + + Project reference(s) + + + + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf b/src/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf index 9a80b4ed1..ec1aaac23 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.zh-Hans.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + “{0}”中找不到任何项目。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + “{0}”中找到多个项目。请指定使用哪一个。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 项目已经具有对“{0}”的引用。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 找不到项目引用“{0}”。 + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + 已删除项目引用“{0}”。 + Project - Project - + 项目 + Project file - Project file - + 项目文件 + Reference - Reference - + 引用 + Project reference - Project reference - + 项目引用 + Package reference - Package reference - + 包引用 + Project to Project - Project to Project - + 项目到项目 + Project to Project reference - Project to Project reference - + 项目到项目引用 + Package - Package - + 打包 + Solution - Solution - + 解决方案 + Solution file - Solution file - + 解决方案文件 + Executable - Executable - + 可执行文件 + Library - Library - + + Program - Program - + 程序 + Application - Application - + 应用程序 + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + 引用 {0} 不存在。如果仍想添加它,请使用 --force 选项。请注意,这可能会对项目产生负面影响。 Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 已将引用“{0}”添加到项目。 + Add - Add - + 添加 + Remove - Remove - + 移除 + Delete - Delete - + 删除 + Update - Update - + 更新 + New - New - + 新建 + List - List - + 列表 + Load - Load - + 负载 + Save - Save - + “保存” + Find - Find - + 查找 + Error - Error - + 错误 + Warning - Warning - + 警告 + File - File - + 文件 + Directory - Directory - + 目录 + Type - Type - + 类型 + Value - Value - + + Group - Group - + + {0} added to {1}. - {0} added to {1}. - + 向 {1} 添加了 {0}。 + {0} removed from {1}. - {0} removed from {1}. - + 从 {1} 中移除了 {0}。 + {0} deleted from {1}. - {0} deleted from {1}. - + 从 {1} 中删除了 {0}。 + {0} successfully updated. - {0} successfully updated. - + 已成功更新 {0}。 + {0} is invalid. - {0} is invalid. - + {0} 无效。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + 已找到 {0}“{1}”但无效。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + 已找到“{0}”但无效。 + Operation is invalid. - Operation is invalid. - + 操作无效。 + Operation {0} is invalid. - Operation {0} is invalid. - + 操作 {0} 无效。 + {0} not found. - {0} not found. - + 未找到 {0}。 + {0} or {1} not found. - {0} or {1} not found. - + 未找到 {0} 或 {1}。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + 未在“{2}”中找到 {0} 或 {1}。 + File `{0}` not found. - File `{0}` not found. - + 未找到文件“{0}”。 + {0} does not exist. - {0} does not exist. - + {0} 不存在。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0}“{1}”不存在。 + More than one {0} found. - More than one {0} found. - + 找到多个 {0}。 + {0} already contains {1}. - {0} already contains {1}. - + {0} 已包含 {1}。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} 已包含 {1}“{2}”。 + {0} already has {1}. - {0} already has {1}. - + {0} 已具有 {1}。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} 已具有 {1}“{2}”。 + {0} was not expected. - {0} was not expected. - + 不应有 {0}。 + {0} not provided. - {0} not provided. - + 未提供 {0}。 + Please specify at least one {0}. - Please specify at least one {0}. - + 请至少指定一个 {0}。 + Could not connect with the server. - Could not connect with the server. - + 无法连接到服务器。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 所需参数 {0} 无效。 + Option {0} is invalid. - Option {0} is invalid. - + 选项 {0} 无效。 + Argument {0} is invalid. - Argument {0} is invalid. - + 参数 {0} 无效。 + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 未提供所需参数 {0}。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 找不到项目或目录“{0}”。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + 找到项目“{0}”但无效。 + Invalid project `{0}`. - Invalid project `{0}`. - + 项目“{0}”无效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的解决方案文件 {0} 不存在,或目录中没有解决方案文件。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 找不到解决方案或目录“{0}”。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 解决方案“{0}”无效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 指定的解决方案文件 {0} 不存在,或目录中没有解决方案文件。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 引用“{0}”无效。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + 必须至少指定一个要添加的引用。请运行 dotnet add --help,获取更多信息。 Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 项目 {0} 已经具有引用“{1}”。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 包引用“{0}”不存在。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 包引用“{0}”无效。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + 必须至少指定一个要添加的引用。请运行 dotnet add --help,获取更多信息。 Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 已将包引用“{0}”添加到项目中。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 项目 {0} 已经具有引用“{1}”。 + Please specify a version of the package. - Please specify a version of the package. - + 请指定包的版本。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + 项目“{0}”不存在。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + 项目“{0}”无效。 + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + 必须至少指定一个要添加的项目。请运行 dotnet add --help,获取更多信息。 Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 已将项目“{0}”添加到解决方案中。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 项目 {1} 中不存在指定的引用 {0}。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 已从项目中删除引用“{0}”。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 已删除引用“{0}”。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 未能在项目中找到包引用“{0}”。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 已从项目中删除引用“{0}”。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 已删除包引用“{0}”。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 未能在解决方案中找到项目“{0}”。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + 已从解决方案中移除项目“{0}”。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 必须至少指定一个要删除的项目。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + 已从解决方案中删除项目“{0}”。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + 项目 {1} 中没有 {0} 引用。;; {0} 是正在请求的项类型(项目、包、p2p)且 {1} 是项目文件或解决方案文件上操作的对象。 + No projects found in the solution. - No projects found in the solution. - + 未在解决方案中找到项目。 + Please specify new version of the package. - Please specify new version of the package. - + 请指定包的新版本。 + Please specify which package to update. - Please specify which package to update. - + 请指定要更新的包。 + Nothing to update. - Nothing to update. - + 没有需要更新的内容。 + Everything is already up-to-date. - Everything is already up-to-date. - + 所有内容已是最新。 + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + 包“{0}”的版本已更新为“{1}”。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + 已更新包“{0}”的版本。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + 未能更新包“{0}”的版本。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + 已成功创建模板 {0}。请运行 "dotnet restore" 以开始使用! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + 已成功安装模板 {0}。可通过 "dotnet new {0}" 开始使用新的模板。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + 未能创建模板 {0}。返回的错误为: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + 未能安装模板 {0}。返回的错误为: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 已存在指定的名称 {0}。请指定不同的名称。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 已存在指定的别名 {0}。请指定不同的别名。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + 模板 {1} 缺少强制参数 {0}。 + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf b/src/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf index 305860407..ec5c22a3d 100644 --- a/src/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/xlf/CommonLocalizableStrings.zh-Hant.xlf @@ -5,637 +5,614 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 在 `{0}` 中找不到任何專案。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 在 `{0}` 中找到多個專案。請指定要使用的專案。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 專案已經有 `{0}` 的參考。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 找不到專案參考 `{0}`。 + Project reference `{0}` removed. - Project reference `{0}` removed. - - - - Required argument - Required argument - - - - Option - Option - - - - Argument - Argument - - - - Help - Help - + 專案參考 `{0}` 已移除。 + Project - Project - + 專案 + Project file - Project file - + 專案檔 + Reference - Reference - + 參考 + Project reference - Project reference - + 專案參考 + Package reference - Package reference - + 套件參考 + Project to Project - Project to Project - + 專案對專案 + Project to Project reference - Project to Project reference - + 專案對專案參考 + Package - Package - + 套件 + Solution - Solution - + 解決方案 + Solution file - Solution file - + 方案檔 + Executable - Executable - + 可執行檔 + Library - Library - + 程式庫 + Program - Program - + 程式 + Application - Application - + 應用程式 + - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. + Reference {0} does not exist. + 參考 {0} 不存在。如果您仍要加以新增,請使用 --force 選項。請注意,這可能會對專案產生不利影響。 Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 參考 `{0}` 已新增至專案。 + Add - Add - + 新增 + Remove - Remove - + 移除 + Delete - Delete - + 刪除 + Update - Update - + 更新 + New - New - + 新增 + List - List - + 列出 + Load - Load - + 載入 + Save - Save - + [儲存] + Find - Find - + 尋找 + Error - Error - + 錯誤 + Warning - Warning - + 警告 + File - File - + 檔案 + Directory - Directory - + 目錄 + Type - Type - + 類型 + Value - Value - + + Group - Group - + 群組 + {0} added to {1}. - {0} added to {1}. - + {0} 已新增至 {1}。 + {0} removed from {1}. - {0} removed from {1}. - + {0} 已從 {1} 移除。 + {0} deleted from {1}. - {0} deleted from {1}. - + {0} 已從 {1} 刪除。 + {0} successfully updated. - {0} successfully updated. - + {0} 已成功更新。 + {0} is invalid. - {0} is invalid. - + {0} 無效。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + 找到 {0} `{1}` 但無效。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + 找到 `{0}` 但無效。 + Operation is invalid. - Operation is invalid. - + 作業無效。 + Operation {0} is invalid. - Operation {0} is invalid. - + 作業 {0} 無效。 + {0} not found. - {0} not found. - + 找不到 {0}。 + {0} or {1} not found. - {0} or {1} not found. - + 找不到 {0} 或 {1}。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + 在 `{2}` 中找不到 {0} 或 {1}。 + File `{0}` not found. - File `{0}` not found. - + 找不到檔案 `{0}`。 + {0} does not exist. - {0} does not exist. - + {0} 不存在。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` 不存在。 + More than one {0} found. - More than one {0} found. - + 找到多個 {0}。 + {0} already contains {1}. - {0} already contains {1}. - + {0} 已經包含 {1}。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} 已經包含 {1} `{2}`。 + {0} already has {1}. - {0} already has {1}. - + {0} 已經有 {1}。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} 已經有 {1} `{2}`。 + {0} was not expected. - {0} was not expected. - + 未預期是 {0}。 + {0} not provided. - {0} not provided. - + 未提供 {0}。 + Please specify at least one {0}. - Please specify at least one {0}. - + 請至少指定一個 {0}。 + Could not connect with the server. - Could not connect with the server. - + 無法與伺服器連線。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 必要引數 {0} 無效。 + Option {0} is invalid. - Option {0} is invalid. - + 選項 {0} 無效。 + Argument {0} is invalid. - Argument {0} is invalid. - + 引數 {0} 無效。 + Required argument {0} was not provided. - Required argument {0} was not provided. - - - - Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 未提供必要引數 {0}。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - - - - Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 找不到專案或目錄 `{0}`。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + 找到專案 `{0}` 但無效。 + Invalid project `{0}`. - Invalid project `{0}`. - + 專案 `{0}` 無效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的方案檔 {0} 不存在,或目錄中沒有方案檔。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - - - - Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - - - - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 找不到解決方案或目錄 `{0}`。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 解決方案 `{0}` 無效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - - - - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 指定的方案檔 {0} 不存在,或目錄中沒有方案檔。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 參考 `{0}` 無效。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one reference to add. + 您必須至少指定一個要新增的參考。如需詳細資訊,請執行 dotnet add --help。 Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 專案 {0} 已經有參考 `{1}`。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 套件參考 `{0}` 不存在。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 套件參考 `{0}` 無效。 + - You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. + You must specify at least one package to add. + 您必須至少指定一個要新增的參考。如需詳細資訊,請執行 dotnet add --help。 Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 套件參考 `{0}` 已新增至專案。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 專案 {0} 已經有參考 `{1}`。 + Please specify a version of the package. - Please specify a version of the package. - + 請指定套件的版本。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + 專案 `{0}` 不存在。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + 專案 `{0}` 無效。 + - You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. + You must specify at least one project to add. + 您必須至少指定一個要新增的專案。如需詳細資訊,請執行 dotnet add --help。 Project `{0}` added to the solution. - Project `{0}` added to the solution. - - - - Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 專案 `{0}` 已新增至解決方案。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 指定的參考 {0} 不存在於專案 {1}。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 參考 `{0}` 已從專案刪除。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one reference to remove. + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 Reference `{0}` deleted. - Reference `{0}` deleted. - - - - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 參考 `{0}` 已刪除。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 在專案中找不到套件參考 `{0}`。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 參考 `{0}` 已從專案刪除。 + - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. + You must specify at least one package reference to remove. + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 Package reference `{0}` deleted. - Package reference `{0}` deleted. - - - - You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 套件參考 `{0}` 已刪除。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 在解決方案中找不到專案 `{0}`。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + 專案 `{0}` 已從解決方案移除。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 您必須至少指定一個要移除的專案。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - - - - You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + 專案 `{0}` 已從解決方案刪除。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + 專案 {1} 中沒有任何 {0} 參考。;; {0} 是所要求項目的類型 (專案、套件、p2p),而 {1} 是操作的物件 (專案檔或方案檔)。 + No projects found in the solution. - No projects found in the solution. - + 在解決方案中找不到任何專案。 + Please specify new version of the package. - Please specify new version of the package. - + 請指定新的套件版本。 + Please specify which package to update. - Please specify which package to update. - + 請指定要更新的套件。 + Nothing to update. - Nothing to update. - + 沒有要更新的項目。 + Everything is already up-to-date. - Everything is already up-to-date. - + 所有項目均已處於最新狀態。 + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + 套件 `{0}` 的版本已更新為 `{1}`。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + 套件 `{0}` 的版本已更新。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + 無法更新套件 `{0}` 的版本。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + 已成功建立範本 {0}。請執行 "dotnet restore" 以開始使用! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + 已成功安裝範本 {0}。您可以使用 "dotnet new {0}" 來開始使用新的範本。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + 無法建立範本 {0}。傳回的錯誤是: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + 無法安裝範本 {0}。傳回的錯誤是: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 指定的名稱 {0} 已經存在。請指定其他名稱。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 指定的別名 {0} 已經存在。請指定其他別名。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. + 遺漏範本 {1} 的強制參數 {0}。 + + + + Project reference(s) + Project reference(s) + + + + Required command was not provided. + Required command was not provided. + + + + Found more than one solution file in {0}. Please specify which one to use. + Found more than one solution file in {0}. Please specify which one to use. + + + + Solution {0} already contains project {1}. + Solution {0} already contains project {1}. + + + + The project or solution to operation on. If a file is not specified, the current directory is searched. + The project or solution to operation on. If a file is not specified, the current directory is searched. + + + + FRAMEWORK + FRAMEWORK + + + + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + Project `{0}` cannot be added due to incompatible targeted frameworks between the two projects. Please review the project you are trying to add and verify that is compatible with the following targets: + + + + Project `{0}` does not target framework `{1}`. + Project `{0}` does not target framework `{1}`. + + + + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} + Project `{0}` could not be evaluated. Evaluation failed with following error: +{1} diff --git a/src/dotnet/xlf/LocalizableStrings.cs.xlf b/src/dotnet/xlf/LocalizableStrings.cs.xlf index f3d188a96..9b310d877 100644 --- a/src/dotnet/xlf/LocalizableStrings.cs.xlf +++ b/src/dotnet/xlf/LocalizableStrings.cs.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + V {0} se nenašel žádný projekt. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + V {0} se našlo několik projektů. Vyberte prosím, jaký chcete použít. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projekt už obsahuje odkaz na {0}. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Nenašel se odkaz na projekt {0}. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Odkaz na projekt {0} byl odebrán. + Required argument - Required argument - + Povinný argument + Option - Option - + Možnost + Argument - Argument - + Argument + Help - Help - + Nápověda + Project - Project - + Projekt + Project file - Project file - + Soubor projektu + Reference - Reference - + Odkaz + Project reference - Project reference - + Odkaz na projekt + Package reference - Package reference - + Odkaz na balíček + Project to Project - Project to Project - + Z projektu na projekt + Project to Project reference - Project to Project reference - + Odkaz mezi projekty + Package - Package - + Balíček + Solution - Solution - + Řešení + Solution file - Solution file - + Soubor řešení + Executable - Executable - + Ke spuštění + Library - Library - + Knihovna + Program - Program - + Program + Application - Application - + Aplikace + Add - Add - + Přidat + Remove - Remove - + Odebrat + Delete - Delete - + Odstranit + Update - Update - + Aktualizovat + New - New - + Nový + List - List - + Seznam + Load - Load - + Načíst + Save - Save - + Uložit + Find - Find - + Najít + Error - Error - + Chyba + Warning - Warning - + Upozornění + File - File - + Soubor + Directory - Directory - + Adresář + Type - Type - + Typ + Value - Value - + Hodnota + Group - Group - + Skupina + {0} added to {1}. - {0} added to {1}. - + Položka {0} byla přidána do {1}. + {0} removed from {1}. - {0} removed from {1}. - + Položka {0} byla odebrána z {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Položka {0} byla odstraněna z {1}. + {0} successfully updated. - {0} successfully updated. - + Položka {0} byla úspěšně aktualizována. + {0} is invalid. - {0} is invalid. - + Položka {0} není platná. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Položka {0} {1} byl nalezena, ale není platná. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Položka {0} byla nalezena, ale není platná. + Operation is invalid. - Operation is invalid. - + Operace není platná. + Operation {0} is invalid. - Operation {0} is invalid. - + Operace {0} není platná. + {0} not found. - {0} not found. - + Položka {0} se nenašla. + {0} or {1} not found. - {0} or {1} not found. - + Položka {0} nebo {1} se nenašla. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + Položka {0} nebo {1} se nenašla v {2}. + File `{0}` not found. - File `{0}` not found. - + Soubor {0} se nenašel. + {0} does not exist. - {0} does not exist. - + {0} neexistuje. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} {1} neexistuje. + More than one {0} found. - More than one {0} found. - + Našlo se více položek {0}. + {0} already contains {1}. - {0} already contains {1}. - + {0} už obsahuje {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} už obsahuje {1} {2}. + {0} already has {1}. - {0} already has {1}. - + {0} už má {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} už má {1} {2}. + {0} was not expected. - {0} was not expected. - + Položka {0} nebyla očekávána. + {0} not provided. - {0} not provided. - + Položka {0} nebyla zadána. + Please specify at least one {0}. - Please specify at least one {0}. - + Zadejte prosím aspoň jednu položku {0}. + Could not connect with the server. - Could not connect with the server. - + Není možné se připojit k serveru. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Požadovaný argument {0} není platný. + Option {0} is invalid. - Option {0} is invalid. - + Možnost {0} není platná. + Argument {0} is invalid. - Argument {0} is invalid. - + Argument {0} není platný. + Required argument {0} was not provided. - Required argument {0} was not provided. - + Požadovaný argument {0} nebyl zadán. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + V {0} se nenašel žádný projekt. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Nenašel se projekt ani adresář {0}. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + V {0} se našlo několik projektů. Vyberte prosím, jaký chcete použít. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Projekt {0} se našel, ale není platný. + Invalid project `{0}`. - Invalid project `{0}`. - + Projekt {0} není platný. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Zadaný soubor řešení {0} neexistuje nebo v adresáři není soubor řešení. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Nenašlo se řešení ani adresář {0}. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + V {0} se našlo několik souborů řešení. Vyberte prosím, jaký chcete použít. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Zdá se, že soubor řešení {0} není platný. Zkontrolujte prosím, jestli je soubor řešení platný. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Řešení {0} není platné. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Zadaný soubor řešení {0} neexistuje nebo v adresáři není soubor řešení. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Řešení {0} už obsahuje projekt {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Odkaz na {0} neexistuje. Pokud ho přesto chcete přidat, použijte prosím možnost --force. Upozorňujeme, že tento krok může projekt negativně ovlivnit. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Odkaz na {0} není platný. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Odkaz na {0} byl přidán do projektu. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} už obsahuje odkaz na {1}. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Odkaz na balíček {0} neexistuje. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Odkaz na balíček {0} není platný. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Odkaz na balíček {0} byl přidán do projektu. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} už obsahuje odkaz na {1}. + Please specify a version of the package. - Please specify a version of the package. - + Zadejte prosím verzi balíčku. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Projekt {0} neexistuje. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Projekt {0} není platný. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Musíte zadat aspoň jeden projekt, který chcete přidat. Další informace získáte spuštěním příkazu dotnet add --help. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Projekt {0} byl přidán do řešení. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Řešení {0} už obsahuje projekt {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Zadaný odkaz {0} v projektu {1} neexistuje. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odkaz na {0} byl z projektu odstraněn. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Odkaz na {0} byl odstraněn. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Odkaz na balíček {0} se v projektu nenašel. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odkaz na {0} byl z projektu odstraněn. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musíte zadat aspoň jeden odkaz, který chcete odstranit. Další informace najdete po spuštění příkazu dotnet delete --help. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Odkaz na balíček {0} byl odstraněn. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Musíte zadat aspoň jeden odkaz na balíček, který chcete odstranit. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Projekt {0} se v řešení nenašel. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projekt {0} byl z řešení odebrán. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Musíte zadat aspoň jeden projekt, který chcete odebrat. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Projekt {0} byl z řešení odstraněn. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Musíte zadat aspoň jeden projekt, který chcete z řešení odstranit. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Projekt {1} neobsahuje odkazy na {0}. ;; {0} je typ požadované položky (projekt, balíček p2p) a {1} je používaný objekt (soubor projektu nebo soubor řešení). + No projects found in the solution. - No projects found in the solution. - + V řešení se nenašly žádné projekty. + Please specify new version of the package. - Please specify new version of the package. - + Zadejte prosím novou verzi balíčku. + Please specify which package to update. - Please specify which package to update. - + Zadejte prosím, jaký balíček chcete aktualizovat. + Nothing to update. - Nothing to update. - + Nic k aktualizaci. + Everything is already up-to-date. - Everything is already up-to-date. - + Všechno je aktuální. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Verze balíčku {0} byla aktualizována na {1}. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Verze balíčku {0} byla aktualizována. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Verzi balíčku {0} není možné aktualizovat. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Šablona {0} byla úspěšně vytvořena. Začněte prosím spuštěním příkazu dotnet restore. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Šablona {0} byla úspěšně nainstalována. Pokud chcete začít novou šablonou, použijte příkaz dotnet new {0}. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Šablonu {0} se nepodařilo vytvořit. Vrácená chyba: {1} + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Šablonu {0} se nepodařilo nainstalovat. Vrácená chyba: {1} + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Zadaný název {0} už existuje. Zadejte prosím jiný název. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Zadaný alias {0} už existuje. Zadejte prosím jiný alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Chybí povinný parametr {0} pro šablonu {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.de.xlf b/src/dotnet/xlf/LocalizableStrings.de.xlf index a87f0d08e..f1e4fcece 100644 --- a/src/dotnet/xlf/LocalizableStrings.de.xlf +++ b/src/dotnet/xlf/LocalizableStrings.de.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + In "{0}" wurde kein Projekt gefunden. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + In "{0}" wurden mehrere Projekte gefunden. Geben Sie an, welches davon verwendet werden soll. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Für das Projekt ist bereits ein Verweis auf "{0}" vorhanden. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Der Projektverweis "{0}" wurde nicht gefunden. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Der Projektverweis "{0}" wurde entfernt. + Required argument - Required argument - + Erforderliches Argument + Option - Option - + Option + Argument - Argument - + Argument + Help - Help - + Hilfe + Project - Project - + Projekt + Project file - Project file - + Projektdatei + Reference - Reference - + Verweis + Project reference - Project reference - + Projektverweis + Package reference - Package reference - + Paketverweis + Project to Project - Project to Project - + Projekt zu Projekt + Project to Project reference - Project to Project reference - + Projekt-zu-Projekt-Verweis + Package - Package - + Paket + Solution - Solution - + Projektmappe + Solution file - Solution file - + Projektmappendatei + Executable - Executable - + Ausführbare Datei + Library - Library - + Bibliothek + Program - Program - + Programm + Application - Application - + Anwendung + Add - Add - + Hinzufügen + Remove - Remove - + Entfernen + Delete - Delete - + Löschen + Update - Update - + Aktualisieren + New - New - + Neu + List - List - + Auflisten + Load - Load - + Laden + Save - Save - + Speichern + Find - Find - + Suchen + Error - Error - + Fehler + Warning - Warning - + Warnung + File - File - + Datei + Directory - Directory - + Verzeichnis + Type - Type - + Typ + Value - Value - + Wert + Group - Group - + Gruppe + {0} added to {1}. - {0} added to {1}. - + "{0}" wurde "{1}" hinzugefügt. + {0} removed from {1}. - {0} removed from {1}. - + "{0}" wurde aus "{1}" entfernt. + {0} deleted from {1}. - {0} deleted from {1}. - + "{0}" wurde aus "{1}" gelöscht. + {0} successfully updated. - {0} successfully updated. - + "{0}" wurde erfolgreich aktualisiert. + {0} is invalid. - {0} is invalid. - + "{0}" ist ungültig. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} "{1}" wurde gefunden, ist aber ungültig. + `{0}` found but is invalid. - `{0}` found but is invalid. - + "{0}" wurde gefunden, ist aber ungültig. + Operation is invalid. - Operation is invalid. - + Der Vorgang ist ungültig. + Operation {0} is invalid. - Operation {0} is invalid. - + Der Vorgang "{0}" ist ungültig. + {0} not found. - {0} not found. - + "{0}" wurde nicht gefunden. + {0} or {1} not found. - {0} or {1} not found. - + "{0}" oder "{1}" wurde nicht gefunden. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + "{0}" oder "{1}" wurde in "{2}" nicht gefunden. + File `{0}` not found. - File `{0}` not found. - + Die Datei "{0}" wurde nicht gefunden. + {0} does not exist. - {0} does not exist. - + "{0}" ist nicht vorhanden. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} "{1}" ist nicht vorhanden. + More than one {0} found. - More than one {0} found. - + Es wurden mehrere Elemente vom Typ "{0}" gefunden. + {0} already contains {1}. - {0} already contains {1}. - + "{1}" ist bereits in "{0}" enthalten. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {1} "{2}" ist bereits in "{0}" enthalten. + {0} already has {1}. - {0} already has {1}. - + "{0}" verfügt bereits über "{1}". + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + "{0}" verfügt bereits über {1} "{2}". + {0} was not expected. - {0} was not expected. - + "{0}" wurde nicht erwartet. + {0} not provided. - {0} not provided. - + "{0}" wurde nicht angegeben. + Please specify at least one {0}. - Please specify at least one {0}. - + Geben Sie mindestens ein Element vom Typ "{0}" an. + Could not connect with the server. - Could not connect with the server. - + Mit dem Server konnte keine Verbindung hergestellt werden. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Das erforderliche Argument "{0}" ist ungültig. + Option {0} is invalid. - Option {0} is invalid. - + Die Option "{0}" ist ungültig. + Argument {0} is invalid. - Argument {0} is invalid. - + Das Argument "{0}" ist ungültig. + Required argument {0} was not provided. - Required argument {0} was not provided. - + Das erforderliche Argument "{0}" wurde nicht angegeben. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + In "{0}" wurde kein Projekt gefunden. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Das Projekt oder Verzeichnis "{0}" wurde nicht gefunden. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + In "{0}" wurden mehrere Projekte gefunden. Geben Sie an, welches davon verwendet werden soll. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Ein Projekt vom Typ "{0}" wurde gefunden, ist aber ungültig. + Invalid project `{0}`. - Invalid project `{0}`. - + Ungültiges Projekt "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Die angegebene Projektmappendatei "{0}" ist nicht vorhanden, oder das Verzeichnis enthält keine Projektmappendatei. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Die Projektmappe oder das Verzeichnis "{0}" wurde nicht gefunden. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + In "{0}" wurden mehrere Projektmappendateien gefunden. Geben Sie an, welche davon verwendet werden soll. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Die Projektmappendatei "{0}" ist offenbar ungültig. Überprüfen Sie, ob es sich um eine gültige Projektmappendatei handelt. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Ungültige Projektmappe "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Die angegebene Projektmappendatei "{0}" ist nicht vorhanden, oder das Verzeichnis enthält keine Projektmappendatei. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Die Projektmappe "{0}" enthält das Projekt "{1}" bereits. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Der Verweis "{0}" ist nicht vorhanden. Falls Sie ihn immer noch hinzufügen möchten, verwenden Sie die Option "--force". Dies kann sich negativ auf das Projekt auswirken. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Der Verweis "{0}" ist ungültig. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Geben Sie mindestens einen hinzuzufügenden Verweis an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Der Verweis "{0}" wurde dem Projekt hinzugefügt. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Der Paketverweis "{0}" ist nicht vorhanden. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Der Paketverweis "{0}" ist ungültig. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Geben Sie mindestens einen hinzuzufügenden Verweis an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Der Paketverweis "{0}" wurde dem Projekt hinzugefügt. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden. + Please specify a version of the package. - Please specify a version of the package. - + Geben Sie eine Paketversion an. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Das Projekt "{0}" ist nicht vorhanden. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Das Projekt "{0}" ist ungültig. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Geben Sie mindestens ein hinzuzufügendes Projekt an. Führen Sie "dotnet add --help" aus, um weitere Informationen zu erhalten. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Das Projekt "{0}" wurde der Projektmappe hinzugefügt. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Die Projektmappe "{0}" enthält das Projekt "{1}" bereits. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Der angegebene Verweis "{0}" ist im Projekt "{1}" nicht vorhanden. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Der Verweis "{0}" wurde aus dem Projekt gelöscht. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Der Verweis "{0}" wurde gelöscht. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Der Paketverweis "{0}" wurde im Projekt nicht gefunden. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Der Verweis "{0}" wurde aus dem Projekt gelöscht. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Geben Sie mindestens einen zu löschenden Verweis an. Führen Sie "dotnet delete --help" aus, um weitere Informationen zu erhalten. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Der Paketverweis "{0}" wurde gelöscht. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Geben Sie mindestens einen zu löschenden Paketverweis an. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Das Projekt "{0}" wurde in der Projektmappe nicht gefunden. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Das Projekt "{0}" wurde aus der Projektmappe entfernt. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Geben Sie mindestens ein zu entfernendes Projekt an. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Das Projekt "{0}" wurde aus der Projektmappe gelöscht. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Geben Sie mindestens ein Projekt an, das aus der Projektmappe entfernt werden soll. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Das Projekt "{1}" enthält keine Verweise vom Typ "{0}". ;; "{0}" ist die Art des angeforderten Elements (Projekt, Paket, P2P). "{1}" ist das Objekt, für das ein Vorgang ausgeführt wird (eine Projektdatei oder eine Projektmappendatei). + No projects found in the solution. - No projects found in the solution. - + In der Projektmappe wurden keine Projekte gefunden. + Please specify new version of the package. - Please specify new version of the package. - + Geben Sie die neue Version des Pakets an. + Please specify which package to update. - Please specify which package to update. - + Geben Sie das zu aktualisierende Paket an. + Nothing to update. - Nothing to update. - + Keine Aktualisierung verfügbar. + Everything is already up-to-date. - Everything is already up-to-date. - + Alle Elemente sind bereits auf dem neuesten Stand. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Die Version des Pakets "{0}" wurde auf "{1}" aktualisiert. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Die Version des Pakets "{0}" wurde aktualisiert. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Die Version des Pakets "{0}" konnte nicht aktualisiert werden. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Die Vorlage "{0}" wurde erfolgreich erstellt. Führen Sie "dotnet restore" aus, um zu beginnen. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Die Vorlage "{0}" wurde erfolgreich installiert. Verwenden Sie "dotnet new {0}", um die neue Vorlage zu verwenden. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Die Vorlage "{0}" konnte nicht erstellt werden. Zurückgegebener Fehler: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Die Vorlage "{0}" konnte nicht installiert werden. Zurückgegebener Fehler: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Der angegebene Name "{0}" ist bereits vorhanden. Geben Sie einen anderen Namen an. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Der angegebene Alias "{0}" ist bereits vorhanden. Geben Sie einen anderen Alias an. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Der obligatorische Parameter "{0}" ist für die Vorlage "{1}" nicht vorhanden. + diff --git a/src/dotnet/xlf/LocalizableStrings.es.xlf b/src/dotnet/xlf/LocalizableStrings.es.xlf index 945a6ac08..f58ba7e00 100644 --- a/src/dotnet/xlf/LocalizableStrings.es.xlf +++ b/src/dotnet/xlf/LocalizableStrings.es.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + No se encuentra ningún proyecto en `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Se han encontrado varios proyectos en `{0}`. Especifique el que debe usarse. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + El proyecto ya tiene una referencia a `{0}`. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + No se encuentra la referencia de proyecto `{0}`. + Project reference `{0}` removed. - Project reference `{0}` removed. - + La referencia de proyecto `{0}` se ha quitado. + Required argument - Required argument - + Argumento necesario + Option - Option - + Opción + Argument - Argument - + Argumento + Help - Help - + Ayuda + Project - Project - + Proyecto + Project file - Project file - + Archivo del proyecto + Reference - Reference - + Referencia + Project reference - Project reference - + Referencia de proyecto + Package reference - Package reference - + Referencia de paquete + Project to Project - Project to Project - + Proyecto a proyecto + Project to Project reference - Project to Project reference - + Referencia de proyecto a proyecto + Package - Package - + Paquete + Solution - Solution - + Solución + Solution file - Solution file - + Archivo de la solución + Executable - Executable - + Archivo ejecutable + Library - Library - + Biblioteca + Program - Program - + Programa + Application - Application - + Aplicación + Add - Add - + Agregar + Remove - Remove - + Quitar + Delete - Delete - + Eliminar + Update - Update - + Actualizar + New - New - + Nuevo + List - List - + Enumerar + Load - Load - + Cargar + Save - Save - + Guardar + Find - Find - + Buscar + Error - Error - + Error + Warning - Warning - + Advertencia + File - File - + Archivo + Directory - Directory - + Directorio + Type - Type - + Tipo + Value - Value - + Valor + Group - Group - + Agrupar + {0} added to {1}. - {0} added to {1}. - + Se ha agregado {0} a {1}. + {0} removed from {1}. - {0} removed from {1}. - + Se ha quitado {0} de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Se ha eliminado {0} de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} se ha actualizado correctamente. + {0} is invalid. - {0} is invalid. - + {0} no es válido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Se ha encontrado el {0} `{1}`, pero no es válido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Se ha encontrado `{0}`, pero no es válido. + Operation is invalid. - Operation is invalid. - + La operación no es válida. + Operation {0} is invalid. - Operation {0} is invalid. - + La operación {0} no es válida. + {0} not found. - {0} not found. - + No se encuentra {0}. + {0} or {1} not found. - {0} or {1} not found. - + No se encuentran {0} ni {1}. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + No se encuentran {0} ni {1} en `{2}`. + File `{0}` not found. - File `{0}` not found. - + No se encuentra el archivo `{0}`. + {0} does not exist. - {0} does not exist. - + {0} no existe. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + El {0} `{1}` no existe. + More than one {0} found. - More than one {0} found. - + Se han encontrado varios {0}. + {0} already contains {1}. - {0} already contains {1}. - + {0} ya contiene {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} ya contiene un {1} `{2}`. + {0} already has {1}. - {0} already has {1}. - + {0} ya tiene {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} ya tiene el {1} `{2}`. + {0} was not expected. - {0} was not expected. - + No se esperaba {0}. + {0} not provided. - {0} not provided. - + No se ha proporcionado {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Especifique al menos un {0}. + Could not connect with the server. - Could not connect with the server. - + No se puede conectar al servidor. + Required argument {0} is invalid. - Required argument {0} is invalid. - + El argumento necesario {0} no es válido. + Option {0} is invalid. - Option {0} is invalid. - + La opción {0} no es válida. + Argument {0} is invalid. - Argument {0} is invalid. - + El argumento {0} no es válido. + Required argument {0} was not provided. - Required argument {0} was not provided. - + No se ha proporcionado el argumento necesario {0}. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + No se encuentra ningún proyecto en `{0}`. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + No se encuentra el proyecto o directorio `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Se han encontrado varios proyectos en `{0}`. Especifique el que debe usarse. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Se ha encontrado el proyecto `{0}`, pero no es válido. + Invalid project `{0}`. - Invalid project `{0}`. - + El proyecto `{0}` no es válido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + El archivo de solución {0} especificado no existe, o bien no hay ningún archivo de solución en el directorio. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + No se encuentra la solución o el directorio `{0}`. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Se han encontrado varios archivos de solución en {0}. Especifique el que debe usarse. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + El archivo de solución {0} parece no ser válido. Compruebe si es un archivo de solución válido. + Invalid solution `{0}`. - Invalid solution `{0}`. - + La solución `{0}` no es válida. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + El archivo de solución {0} especificado no existe, o bien no hay ningún archivo de solución en el directorio. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La solución {0} ya contiene el proyecto {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + La referencia {0} no existe. Si aún quiere agregarla, use la opción --force. Tenga en cuenta que esto puede tener efectos negativos en el proyecto. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + La referencia `{0}` no es válida. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Debe especificar al menos una referencia para agregar. Ejecute dotnet add --help para obtener más información. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Se ha agregado la referencia `{0}` al proyecto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + El proyecto {0} ya tiene una referencia `{1}`. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + La referencia de paquete `{0}` no existe. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + La referencia de paquete `{0}` no es válida. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Debe especificar al menos una referencia para agregar. Ejecute dotnet add --help para obtener más información. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Se ha agregado la referencia de paquete `{0}` al proyecto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + El proyecto {0} ya tiene una referencia `{1}`. + Please specify a version of the package. - Please specify a version of the package. - + Especifique una versión del paquete. + Project `{0}` does not exist. - Project `{0}` does not exist. - + El proyecto `{0}` no existe. + Project `{0}` is invalid. - Project `{0}` is invalid. - + El proyecto `{0}` no es válido. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Debe especificar al menos un proyecto para agregarlo. Ejecute dotnet add --help para obtener más información. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Se ha agregado el proyecto `{0}` a la solución. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La solución {0} ya contiene el proyecto {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + La referencia {0} especificada no existe en el proyecto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Se ha eliminado la referencia “{0}” del proyecto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Se ha eliminado la referencia “{0}”. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + No se encuentra la referencia de paquete `{0}` en el proyecto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Se ha eliminado la referencia “{0}” del proyecto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Debe especificar al menos una referencia para eliminar. Ejecute dotnet delete --help para obtener más información. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Se ha eliminado la referencia de paquete `{0}`. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Debe especificar al menos una referencia de paquete para eliminarla. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + No se encuentra el proyecto `{0}` en la solución. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Se ha quitado el proyecto `{0}` de la solución. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Debe especificar al menos un proyecto para quitarlo. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Se ha eliminado el proyecto `{0}` de la solución. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Debe especificar al menos un proyecto para eliminarlo de la solución. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + No hay referencias de {0} en el proyecto {1}. ;; {0} es el tipo de elemento solicitado (proyecto, paquete, p2p) y {1} es el objeto utilizado (un archivo de proyecto o de solución). + No projects found in the solution. - No projects found in the solution. - + No se han encontrado proyectos en la solución. + Please specify new version of the package. - Please specify new version of the package. - + Especifique la nueva versión del paquete. + Please specify which package to update. - Please specify which package to update. - + Especifique qué paquete debe actualizarse. + Nothing to update. - Nothing to update. - + No hay nada para actualizar. + Everything is already up-to-date. - Everything is already up-to-date. - + Todo está actualizado. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + La versión del paquete `{0}` se ha actualizado a `{1}`. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Se ha actualizado la versión del paquete `{0}`. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + No se puede actualizar la versión del paquete `{0}`. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + La plantilla {0} se ha creado correctamente. Ejecute "dotnet restore" para comenzar. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + La plantilla {0} se ha instalado correctamente. Puede usar "dotnet new {0}" para comenzar con la nueva plantilla. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + No se puede crear la plantilla {0}. El error devuelto es: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + No se puede instalar la plantilla {0}. El error devuelto es: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + El nombre {0} especificado ya existe. Especifique otro nombre. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + El alias {0} especificado ya existe. Especifique otro alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Falta el parámetro obligatorio {0} para la plantilla {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.fr.xlf b/src/dotnet/xlf/LocalizableStrings.fr.xlf index e14f873e3..58bc6888f 100644 --- a/src/dotnet/xlf/LocalizableStrings.fr.xlf +++ b/src/dotnet/xlf/LocalizableStrings.fr.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Projet introuvable dans '{0}'. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Plusieurs projets trouvés dans '{0}'. Spécifiez celui à utiliser. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Le projet a déjà une référence à '{0}'. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + La référence de projet '{0}' est introuvable. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Référence de projet '{0}' supprimée. + Required argument - Required argument - + Argument obligatoire + Option - Option - + Option + Argument - Argument - + Argument + Help - Help - + Aide + Project - Project - + Projet + Project file - Project file - + Fichier projet + Reference - Reference - + Référence + Project reference - Project reference - + Référence de projet + Package reference - Package reference - + Référence de package + Project to Project - Project to Project - + Projet à projet + Project to Project reference - Project to Project reference - + Référence projet à projet + Package - Package - + Package + Solution - Solution - + Solution + Solution file - Solution file - + Fichier solution + Executable - Executable - + Exécutable + Library - Library - + Bibliothèque + Program - Program - + Programme + Application - Application - + Application + Add - Add - + Ajouter + Remove - Remove - + Retirer + Delete - Delete - + Supprimer + Update - Update - + Mettre à jour + New - New - + Nouveau + List - List - + Répertorier + Load - Load - + Charger + Save - Save - + Enregistrer + Find - Find - + Rechercher + Error - Error - + Erreur + Warning - Warning - + Avertissement + File - File - + Fichier + Directory - Directory - + Répertoire + Type - Type - + Type + Value - Value - + Valeur + Group - Group - + Groupe + {0} added to {1}. - {0} added to {1}. - + {0} ajouté à {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} retiré de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} supprimé de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} mis à jour. + {0} is invalid. - {0} is invalid. - + {0} n'est pas valide. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} '{1}' trouvé, mais il n'est pas valide. + `{0}` found but is invalid. - `{0}` found but is invalid. - + '{0}' trouvé, mais il n'est pas valide. + Operation is invalid. - Operation is invalid. - + L'opération n'est pas valide. + Operation {0} is invalid. - Operation {0} is invalid. - + L'opération {0} n'est pas valide. + {0} not found. - {0} not found. - + {0} introuvable. + {0} or {1} not found. - {0} or {1} not found. - + {0} ou {1} introuvable. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} ou {1} introuvable dans '{2}'. + File `{0}` not found. - File `{0}` not found. - + Fichier '{0}' introuvable. + {0} does not exist. - {0} does not exist. - + {0} n'existe pas. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} '{1}' n'existe pas. + More than one {0} found. - More than one {0} found. - + Plusieurs {0} ont été trouvés. + {0} already contains {1}. - {0} already contains {1}. - + {0} contient déjà {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} contient déjà {1} '{2}'. + {0} already has {1}. - {0} already has {1}. - + {0} a déjà {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} a déjà {1} '{2}'. + {0} was not expected. - {0} was not expected. - + {0} n'était pas attendu. + {0} not provided. - {0} not provided. - + {0} non fourni. + Please specify at least one {0}. - Please specify at least one {0}. - + Spécifiez au moins un {0}. + Could not connect with the server. - Could not connect with the server. - + Impossible de se connecter au serveur. + Required argument {0} is invalid. - Required argument {0} is invalid. - + L'argument obligatoire {0} n'est pas valide. + Option {0} is invalid. - Option {0} is invalid. - + L'option {0} n'est pas valide. + Argument {0} is invalid. - Argument {0} is invalid. - + L'argument {0} n'est pas valide. + Required argument {0} was not provided. - Required argument {0} was not provided. - + L'argument obligatoire {0} n'a pas été fourni. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Projet introuvable dans '{0}'. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Projet ou répertoire '{0}' introuvable. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Plusieurs projets trouvés dans '{0}'. Spécifiez celui à utiliser. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Projet '{0}' trouvé, mais il n'est pas valide. + Invalid project `{0}`. - Invalid project `{0}`. - + Projet '{0}' non valide. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Le fichier solution spécifié {0} n'existe pas ou il n'y a pas de fichier solution dans le répertoire. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + La solution ou le répertoire '{0}' est introuvable. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Plusieurs fichiers solution trouvés dans {0}. Spécifiez celui à utiliser. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Le fichier solution {0} semble ne pas être valide. Vérifiez s'il s'agit d'un fichier solution valide. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Solution non valide '{0}'. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Le fichier solution spécifié {0} n'existe pas ou il n'y a pas de fichier solution dans le répertoire. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La solution {0} contient déjà le projet {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + La référence {0} n'existe pas. Si vous souhaitez toujours l'ajouter, utilisez l'option --force. Notez que cela peut avoir des effets négatifs sur le projet. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + La référence '{0}' n'est pas valide. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Vous devez spécifier au moins une référence à ajouter. Exécutez dotnet add --help pour plus d'informations. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Référence '{0}' ajoutée au projet. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Le projet {0} a déjà une référence '{1}'. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + La référence de package '{0}' n'existe pas. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + La référence de package '{0}' n'est pas valide. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Vous devez spécifier au moins une référence à ajouter. Exécutez dotnet add --help pour plus d'informations. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Référence de package '{0}' ajoutée au projet. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Le projet {0} a déjà une référence '{1}'. + Please specify a version of the package. - Please specify a version of the package. - + Spécifiez une version du package. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Le projet '{0}' n'existe pas. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Le projet '{0}' n'est pas valide. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Vous devez spécifier au moins un projet à ajouter. Exécutez dotnet add --help pour plus d'informations. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Projet '{0}' ajouté à la solution. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La solution {0} contient déjà le projet {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + La référence spécifiée {0} n'existe pas dans le projet {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Référence '{0}' supprimée du projet. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Référence '{0}' supprimée. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Référence de package '{0}' introuvable dans le projet. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Référence '{0}' supprimée du projet. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Vous devez spécifier au moins une référence à supprimer. Exécutez dotnet delete --help pour plus d'informations. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Référence de package '{0}' supprimée. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Vous devez spécifier au moins une référence de package à supprimer. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Projet '{0}' introuvable dans la solution. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projet '{0}' retiré de la solution. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Vous devez spécifier au moins un projet à retirer. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Projet '{0}' supprimé de la solution. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Vous devez spécifier au moins un projet à supprimer de la solution. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Il n'y a pas de références {0} dans le projet {1}. ;; {0} est le type de l'élément demandé (projet, package, p2p) et {1} est l'objet utilisé (un fichier projet ou un fichier solution). + No projects found in the solution. - No projects found in the solution. - + Aucun projet trouvé dans la solution. + Please specify new version of the package. - Please specify new version of the package. - + Spécifiez une nouvelle version du package. + Please specify which package to update. - Please specify which package to update. - + Spécifiez le package à mettre à jour. + Nothing to update. - Nothing to update. - + Rien à mettre à jour. + Everything is already up-to-date. - Everything is already up-to-date. - + Tout est déjà à jour. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Le package version '{0}' a été mis à jour vers la version '{1}'. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Version du package '{0}' mise à jour. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Impossible de mettre à jour la version du package '{0}'. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Le modèle {0} a été créé. Exécutez "dotnet restore" pour commencer ! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Le modèle {0} a été installé. Vous pouvez utiliser "dotnet new {0}" pour commencer à utiliser le nouveau modèle. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Impossible de créer le modèle {0}. L'erreur retournée était : {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Impossible d'installer le modèle {0}. L'erreur retournée était : {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Le nom spécifié {0} existe déjà. Spécifiez un nom différent. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + L'alias spécifié {0} existe déjà. Spécifiez un alias différent. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Paramètre obligatoire {0} manquant pour le modèle {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.it.xlf b/src/dotnet/xlf/LocalizableStrings.it.xlf index a431167cb..25ba8a2cf 100644 --- a/src/dotnet/xlf/LocalizableStrings.it.xlf +++ b/src/dotnet/xlf/LocalizableStrings.it.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Non è stato trovato alcun progetto in `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Sono stati trovati più progetti in `{0}`. Specificare quello da usare. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Per il progetto esiste già un riferimento a `{0}`. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Il riferimento al progetto `{0}` non è stato trovato. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Il riferimento al progetto `{0}` è stato rimosso. + Required argument - Required argument - + Argomento obbligatorio + Option - Option - + Opzione + Argument - Argument - + Argomento + Help - Help - + Guida + Project - Project - + Progetto + Project file - Project file - + File di progetto + Reference - Reference - + Riferimento + Project reference - Project reference - + Riferimento al progetto + Package reference - Package reference - + Riferimento al pacchetto + Project to Project - Project to Project - + P2P (da progetto a progetto) + Project to Project reference - Project to Project reference - + Riferimento P2P (da progetto a progetto) + Package - Package - + Pacchetto + Solution - Solution - + Soluzione + Solution file - Solution file - + File di soluzione + Executable - Executable - + Eseguibile + Library - Library - + Libreria + Program - Program - + Programma + Application - Application - + Applicazione + Add - Add - + Aggiungi + Remove - Remove - + Rimuovi + Delete - Delete - + Elimina + Update - Update - + Aggiorna + New - New - + Nuovo + List - List - + Elenco + Load - Load - + Carica + Save - Save - + Salva + Find - Find - + Trova + Error - Error - + Errore + Warning - Warning - + Avviso + File - File - + File + Directory - Directory - + Directory + Type - Type - + Tipo + Value - Value - + Valore + Group - Group - + Gruppo + {0} added to {1}. - {0} added to {1}. - + L'elemento {0} è stato aggiunto a {1}. + {0} removed from {1}. - {0} removed from {1}. - + L'elemento {0} è stato rimosso da {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + L'elemento {0} è stato eliminato da {1}. + {0} successfully updated. - {0} successfully updated. - + {0} è stato aggiornato. + {0} is invalid. - {0} is invalid. - + {0} non è valido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + L'elemento {0} `{1}` è stato trovato ma non è valido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + L'elemento `{0}` è stato trovato ma non è valido. + Operation is invalid. - Operation is invalid. - + L'operazione non è valida. + Operation {0} is invalid. - Operation {0} is invalid. - + L'operazione {0} non è valida. + {0} not found. - {0} not found. - + {0} non è stato trovato. + {0} or {1} not found. - {0} or {1} not found. - + L'elemento {0} o {1} non è stato trovato. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + L'elemento {0} o {1} non è stato trovato in `{2}`. + File `{0}` not found. - File `{0}` not found. - + Il file `{0}` non è stato trovato. + {0} does not exist. - {0} does not exist. - + {0} non esiste. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + L'elemento {0} `{1}` non esiste. + More than one {0} found. - More than one {0} found. - + È stato trovato più di un elemento {0}. + {0} already contains {1}. - {0} already contains {1}. - + L'elemento {0} contiene già {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + L'elemento {0} contiene già {1} `{2}`. + {0} already has {1}. - {0} already has {1}. - + L'elemento {0} include già {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + L'elemento {0} include già {1} `{2}`. + {0} was not expected. - {0} was not expected. - + {0} è imprevisto. + {0} not provided. - {0} not provided. - + L'elemento {0} non è stato specificato. + Please specify at least one {0}. - Please specify at least one {0}. - + Specificare almeno un elemento {0}. + Could not connect with the server. - Could not connect with the server. - + Non è stato possibile connettersi al server. + Required argument {0} is invalid. - Required argument {0} is invalid. - + L'argomento obbligatorio {0} non è valido. + Option {0} is invalid. - Option {0} is invalid. - + L'opzione {0} non è valida. + Argument {0} is invalid. - Argument {0} is invalid. - + L'argomento {0} non è valido. + Required argument {0} was not provided. - Required argument {0} was not provided. - + L'argomento obbligatorio {0} non è stato specificato. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Non è stato trovato alcun progetto in `{0}`. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Non sono stati trovati progetti o directory `{0}`. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Sono stati trovati più progetti in `{0}`. Specificare quello da usare. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + È stato trovato un progetto `{0}`, che però non è valido. + Invalid project `{0}`. - Invalid project `{0}`. - + Il progetto `{0}` non è valido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Il file di soluzione specificato {0} non esiste oppure nella directory non è presente alcun file di soluzione. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Non sono state trovate soluzioni o directory `{0}`. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Sono stati trovati più file di soluzione in {0}. Specificare quello da usare. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Il file di soluzione {0} non sembra valido. Verificare se è un file di soluzione valido. + Invalid solution `{0}`. - Invalid solution `{0}`. - + La soluzione `{0}` non è valida. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Il file di soluzione specificato {0} non esiste oppure nella directory non è presente alcun file di soluzione. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La soluzione {0} contiene già il progetto {\1\}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Il riferimento {0} non esiste. Se si vuole aggiungerlo comunque, usare l'opzione --force. Si noti che questo può avere effetti dannosi sul progetto. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Il riferimento `{0}` non è valido. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + È necessario specificare almeno un riferimento da aggiungere. Per altre informazioni, eseguire dotnet add --help. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Il riferimento `{0}` è stato aggiunto al progetto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Il progetto {0} include già un riferimento `{1}`. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Il riferimento al pacchetto `{0}` non esiste. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Il riferimento al pacchetto `{0}` non è valido. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + È necessario specificare almeno un riferimento da aggiungere. Per altre informazioni, eseguire dotnet add --help. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Il riferimento al pacchetto `{0}` è stato aggiunto al progetto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Il progetto {0} include già un riferimento `{1}`. + Please specify a version of the package. - Please specify a version of the package. - + Specificare una versione del pacchetto. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Il progetto `{0}` non esiste. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Il progetto `{0}` non è valido. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + È necessario specificare almeno un progetto da aggiungere. Per altre informazioni, eseguire dotnet add --help. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Il progetto `{0}` è stato aggiunto alla soluzione. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + La soluzione {0} contiene già il progetto {\1\}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Il riferimento specificato {0} non esiste nel progetto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Il riferimento `{0}` è stato eliminato dal progetto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Il riferimento `{0}` è stato eliminato. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Il riferimento al pacchetto `{0}` non è stato trovato nel progetto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Il riferimento `{0}` è stato eliminato dal progetto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + È necessario specificare almeno un riferimento da eliminare. Per altre informazioni, eseguire dotnet delete --help. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Il riferimento al pacchetto `{0}` è stato eliminato. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + È necessario specificare almeno un riferimento al pacchetto da eliminare. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Il progetto `{0}` non è stato trovato nella soluzione. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Il progetto `{0}` è stato rimosso dalla soluzione. + You must specify at least one project to remove. - You must specify at least one project to remove. - + È necessario specificare almeno un progetto da rimuovere. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Il progetto `{0}` è stato eliminato dalla soluzione. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + È necessario specificare almeno un progetto da eliminare dalla soluzione. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Non ci sono riferimenti a {0} nel progetto {1}. ;; {0} è il tipo dell'elemento richiesto (progetto, pacchetto o P2P) e {1} è l'oggetto su cui si interviene (file di progetto o di soluzione). + No projects found in the solution. - No projects found in the solution. - + Non sono stati trovati progetti nella soluzione. + Please specify new version of the package. - Please specify new version of the package. - + Specificare la nuova versione del pacchetto. + Please specify which package to update. - Please specify which package to update. - + Specificare il pacchetto da aggiornare. + Nothing to update. - Nothing to update. - + Non ci sono pacchetti da aggiornare. + Everything is already up-to-date. - Everything is already up-to-date. - + Tutti i pacchetti sono già aggiornati. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + La versione del pacchetto `{0}` è stata aggiornata a `{1}`. + Version of package `{0}` updated. - Version of package `{0}` updated. - + La versione del pacchetto `{0}` è stata aggiornata. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Non è stato possibile aggiornare la versione del pacchetto `{0}`. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Il modello {0} è stato creato. Per iniziare, eseguire "dotnet restore". + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Il modello {0} è stato installato. Per iniziare con il nuovo modello, è possibile usare "dotnet new {0}". + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Non è stato possibile creare il modello {0}. Errore restituito: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Non è stato possibile installare il modello {0}. Errore restituito: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Il nome specificato {0} esiste già. Specificare un nome diverso. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + L'alias specificato {0} esiste già. Specificare un alias diverso. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Manca il parametro obbligatorio {0} per il modello {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.ja.xlf b/src/dotnet/xlf/LocalizableStrings.ja.xlf index 7688321dc..afce6cda0 100644 --- a/src/dotnet/xlf/LocalizableStrings.ja.xlf +++ b/src/dotnet/xlf/LocalizableStrings.ja.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` にプロジェクトが見つかりませんでした。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` に複数のプロジェクトが見つかりました。使用するプロジェクトを指定してください。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + プロジェクトには既に `{0}` への参照が指定されています。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + プロジェクト参照 `{0}` は見つかりませんでした。 + Project reference `{0}` removed. - Project reference `{0}` removed. - + プロジェクト参照 `{0}` は削除されました。 + Required argument - Required argument - + 必要な引数 + Option - Option - + オプション + Argument - Argument - + 引数 + Help - Help - + ヘルプ + Project - Project - + プロジェクト + Project file - Project file - + プロジェクト ファイル + Reference - Reference - + 参照 + Project reference - Project reference - + プロジェクト参照 + Package reference - Package reference - + パッケージ参照 + Project to Project - Project to Project - + プロジェクト間 + Project to Project reference - Project to Project reference - + プロジェクト間参照 + Package - Package - + パッケージ + Solution - Solution - + ソリューション + Solution file - Solution file - + ソリューション ファイル + Executable - Executable - + 実行可能ファイル + Library - Library - + ライブラリ + Program - Program - + プログラム + Application - Application - + アプリケーション + Add - Add - + 追加 + Remove - Remove - + 削除 + Delete - Delete - + 削除 + Update - Update - + 更新 + New - New - + 新規 + List - List - + 一覧 + Load - Load - + 読み込み + Save - Save - + [保存] + Find - Find - + 検索 + Error - Error - + エラー + Warning - Warning - + 警告 + File - File - + ファイル + Directory - Directory - + ディレクトリ + Type - Type - + 種類 + Value - Value - + + Group - Group - + グループ + {0} added to {1}. - {0} added to {1}. - + {0} が {1} に追加されました。 + {0} removed from {1}. - {0} removed from {1}. - + {0} が {1} から削除されました。 + {0} deleted from {1}. - {0} deleted from {1}. - + {0} が {1} から削除されました。 + {0} successfully updated. - {0} successfully updated. - + {0} が正常に更新されました。 + {0} is invalid. - {0} is invalid. - + {0} は無効です。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}` が見つかりましたが、無効です。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + `{0}` が見つかりましたが、無効です。 + Operation is invalid. - Operation is invalid. - + 操作が無効です。 + Operation {0} is invalid. - Operation {0} is invalid. - + 操作 {0} は無効です。 + {0} not found. - {0} not found. - + {0} が見つかりません。 + {0} or {1} not found. - {0} or {1} not found. - + {0} または {1} が見つかりません。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}` に {0} または {1} が見つかりません。 + File `{0}` not found. - File `{0}` not found. - + ファイル `{0}` が見つかりません。 + {0} does not exist. - {0} does not exist. - + {0} は存在しません。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` は存在しません。 + More than one {0} found. - More than one {0} found. - + 複数の {0} が見つかりました。 + {0} already contains {1}. - {0} already contains {1}. - + {0} には既に {1} が含まれています。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} には既に {1} `{2}` が含まれています。 + {0} already has {1}. - {0} already has {1}. - + {0} には既に {1} があります。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} には既に {1} `{2}` があります。 + {0} was not expected. - {0} was not expected. - + {0} は必要ありません。 + {0} not provided. - {0} not provided. - + {0} が指定されていません。 + Please specify at least one {0}. - Please specify at least one {0}. - + 少なくとも 1 つの {0} を指定してください。 + Could not connect with the server. - Could not connect with the server. - + サーバーに接続できませんでした。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 必要な引数 {0} は無効です。 + Option {0} is invalid. - Option {0} is invalid. - + オプション {0} は無効です。 + Argument {0} is invalid. - Argument {0} is invalid. - + 引数 {0} は無効です。 + Required argument {0} was not provided. - Required argument {0} was not provided. - + 必要な引数 {0} が指定されていません。 + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` にプロジェクトが見つかりませんでした。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + プロジェクトまたはディレクトリ `{0}` が見つかりませんでした。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` に複数のプロジェクトが見つかりました。使用するプロジェクトを指定してください。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + プロジェクト `{0}` が見つかりましたが、有効ではありません。 + Invalid project `{0}`. - Invalid project `{0}`. - + 無効なプロジェクト `{0}`。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定したソリューション ファイル {0} が存在しないか、ディレクトリにソリューション ファイルがありません。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + ソリューションまたはディレクトリ `{0}` が見つかりませんでした。 + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + {0} に複数のソリューションが見つかりました。使用するプロジェクトを指定してください。 + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + ソリューション ファイル {0} は無効な可能性があります。有効なソリューション ファイルであるか確認してください。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 無効なソリューション `{0}`。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定したソリューション ファイル {0} が存在しないか、ディレクトリにソリューション ファイルがありません。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + ソリューション {0} には既にプロジェクト {1} が含まれています。 + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 参照 {0} は存在しません。それでも追加したい場合は、--force オプションを使用してください。これにより、プロジェクトに悪影響がある可能性がありますので注意してください。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 参照 `{0}` は無効です。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 追加する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 参照 `{0}` がプロジェクトに追加されました。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + プロジェクト {0} には既に参照 `{1}` が指定されています。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + パッケージ参照 `{0}` は存在しません。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + パッケージ参照 `{0}` は無効です。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 追加する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + パッケージ参照 `{0}` がプロジェクトに追加されました。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + プロジェクト {0} には既に参照 `{1}` が指定されています。 + Please specify a version of the package. - Please specify a version of the package. - + パッケージのバージョンを指定してください。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + プロジェクト `{0}` は存在しません。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + プロジェクト `{0}` は無効です。 + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + 追加するプロジェクトを少なくとも 1 つ指定する必要があります。詳細については、dotnet add --help を実行してください。 + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + プロジェクト `{0}` をソリューションに追加しました。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + ソリューション {0} には既にプロジェクト {1} が含まれています。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 指定された参照 {0} はプロジェクト {1} に存在しません。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 参照 `{0}` はプロジェクトから削除されました。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 + Reference `{0}` deleted. - Reference `{0}` deleted. - + 参照 `{0}` が削除されました。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + パッケージ参照 `{0}` がプロジェクト内に見つかりませんでした。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 参照 `{0}` はプロジェクトから削除されました。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 削除する参照を少なくとも 1 つ指定する必要があります。詳細については、dotnet delete --help を実行してください。 + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + パッケージ参照 `{0}` が削除されました。 + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 削除するパッケージ参照を少なくとも 1 つ指定する必要があります。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + プロジェクト `{0}` がソリューション内に見つかりませんでした。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + プロジェクト `{0}` がソリューションから削除されました。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 削除するプロジェクトを少なくとも 1 つ指定する必要があります。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + プロジェクト `{0}` がソリューションから削除されました。 + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + ソリューションから削除するプロジェクトを少なくとも 1 つ指定する必要があります。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + プロジェクト {1} 内に {0} 参照がありません。;; {0} は要求中のアイテムの種類であり (プロジェクト、パッケージ、p2p)、{1} は (プロジェクト ファイルまたはソリューション ファイル) で操作されるオブジェクトです。 + No projects found in the solution. - No projects found in the solution. - + ソリューション内にプロジェクトが見つかりません。 + Please specify new version of the package. - Please specify new version of the package. - + パッケージの新しいバージョンを指定してください。 + Please specify which package to update. - Please specify which package to update. - + 更新するパッケージを指定してください。 + Nothing to update. - Nothing to update. - + 更新するものがありません。 + Everything is already up-to-date. - Everything is already up-to-date. - + すべてが既に最新の状態です + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + パッケージ `{0}` のバージョンを `{1}` に更新しました。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + パッケージ `{0}` のバージョンを更新しました。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + パッケージ `{0}` のバージョンを更新できませんでした。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + テンプレート {0} が正常に作成されました。"dotnet restore" を実行して開始してください。 + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + テンプレート {0} が正常にインストールされました。"dotnet new {0}" を使用して、新しいテンプレートの使用を開始できます。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + テンプレート {0} を作成できませんでした。次のエラーが返されました: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + テンプレート {0} をインストールできませんでした。次のエラーが返されました: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 指定した名前 {0} は既に存在します。別の名前を指定してください。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 指定したエイリアス {0} は既に存在します。別のエイリアスを指定してください。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + テンプレート {1} の必須パラメーター {0} がありません。 + diff --git a/src/dotnet/xlf/LocalizableStrings.ko.xlf b/src/dotnet/xlf/LocalizableStrings.ko.xlf index 215437e87..9ea49568c 100644 --- a/src/dotnet/xlf/LocalizableStrings.ko.xlf +++ b/src/dotnet/xlf/LocalizableStrings.ko.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}`에서 프로젝트를 찾을 수 없습니다. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}`에서 프로젝트를 두 개 이상 찾았습니다. 사용할 파일을 지정하세요. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 프로젝트에 이미 `{0}`에 대한 참조가 있습니다. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 프로젝트 참조 `{0}`을(를) 찾을 수 없습니다. + Project reference `{0}` removed. - Project reference `{0}` removed. - + 프로젝트 참조 `{0}`이(가) 제거되었습니다. + Required argument - Required argument - + 필수 인수 + Option - Option - + 옵션 + Argument - Argument - + 인수 + Help - Help - + 도움말 + Project - Project - + 프로젝트 + Project file - Project file - + 프로젝트 파일 + Reference - Reference - + 참조 + Project reference - Project reference - + 프로젝트 참조 + Package reference - Package reference - + 패키지 참조 + Project to Project - Project to Project - + 프로젝트 간 + Project to Project reference - Project to Project reference - + 프로젝트 간 참조 + Package - Package - + 패키지 + Solution - Solution - + 솔루션 + Solution file - Solution file - + 솔루션 파일 + Executable - Executable - + 실행 파일 + Library - Library - + 라이브러리 + Program - Program - + 프로그램 + Application - Application - + 응용 프로그램 + Add - Add - + 추가 + Remove - Remove - + 제거 + Delete - Delete - + 삭제 + Update - Update - + 업데이트 + New - New - + 새로 만들기 + List - List - + 목록 + Load - Load - + 로드 + Save - Save - + 저장 + Find - Find - + 찾기 + Error - Error - + 오류 + Warning - Warning - + 경고 + File - File - + 파일 + Directory - Directory - + 디렉터리 + Type - Type - + 형식 + Value - Value - + + Group - Group - + 그룹 + {0} added to {1}. - {0} added to {1}. - + {0}이(가) {1}에 추가되었습니다. + {0} removed from {1}. - {0} removed from {1}. - + {0}이(가) {1}에서 제거되었습니다. + {0} deleted from {1}. - {0} deleted from {1}. - + {0}이(가) {1}에서 삭제되었습니다. + {0} successfully updated. - {0} successfully updated. - + {0}이(가) 업데이트되었습니다. + {0} is invalid. - {0} is invalid. - + {0}이(가) 잘못되었습니다. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}`이(가) 있지만 잘못되었습니다. + `{0}` found but is invalid. - `{0}` found but is invalid. - + {0}이(가) 있지만 잘못되었습니다. + Operation is invalid. - Operation is invalid. - + 작업이 잘못되었습니다. + Operation {0} is invalid. - Operation {0} is invalid. - + {0} 작업이 잘못되었습니다. + {0} not found. - {0} not found. - + '{0}'을(를) 찾을 수 없습니다. + {0} or {1} not found. - {0} or {1} not found. - + '{0}' 또는 {1}을(를) 찾을 수 없습니다. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}`에서 '{0}' 또는 {1}을(를) 찾을 수 없습니다. + File `{0}` not found. - File `{0}` not found. - + `{0}` 파일을 찾을 수 없습니다. + {0} does not exist. - {0} does not exist. - + {0}이(가) 없습니다. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}`이(가) 없습니다. + More than one {0} found. - More than one {0} found. - + {0}을(를) 두 개 이상 찾았습니다. + {0} already contains {1}. - {0} already contains {1}. - + {0}에 {1}이(가) 이미 있습니다. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0}에 {1} `{2}`이(가) 이미 있습니다. + {0} already has {1}. - {0} already has {1}. - + {0}에 {1}이(가) 이미 있습니다. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0}에 {1} `{2}`이(가) 이미 있습니다. + {0} was not expected. - {0} was not expected. - + {0}은(는) 필요하지 않습니다. + {0} not provided. - {0} not provided. - + {0}이(가) 제공되지 않았습니다. + Please specify at least one {0}. - Please specify at least one {0}. - + {0}을(를) 하나 이상 지정하세요. + Could not connect with the server. - Could not connect with the server. - + 서버에 연결할 수 없습니다. + Required argument {0} is invalid. - Required argument {0} is invalid. - + 필수 인수 {0}이(가) 잘못되었습니다. + Option {0} is invalid. - Option {0} is invalid. - + {0} 옵션이 잘못되었습니다. + Argument {0} is invalid. - Argument {0} is invalid. - + {0} 인수가 잘못되었습니다. + Required argument {0} was not provided. - Required argument {0} was not provided. - + 필수 인수 {0}이(가) 제공되지 않았습니다. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}`에서 프로젝트를 찾을 수 없습니다. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + 프로젝트 또는 디렉터리 {0}을(를) 찾을 수 없습니다. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}`에서 프로젝트를 두 개 이상 찾았습니다. 사용할 파일을 지정하세요. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + `{0}` 프로젝트가 있지만 잘못되었습니다. + Invalid project `{0}`. - Invalid project `{0}`. - + `{0}` 프로젝트가 잘못되었습니다. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 지정한 솔루션 파일 {0}이(가) 없거나 디렉터리에 솔루션 파일이 없습니다. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + 솔루션 또는 디렉터리 `{0}`을(를) 찾을 수 없습니다. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + {0}에서 솔루션 파일을 두 개 이상 찾았습니다. 사용할 파일을 지정하세요. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 솔루션 파일 {0}이(가) 잘못된 것 같습니다. 올바른 솔루션 파일인지 확인하세요. + Invalid solution `{0}`. - Invalid solution `{0}`. - + `{0}` 솔루션이 잘못되었습니다. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 지정한 솔루션 파일 {0}이(가) 없거나 디렉터리에 솔루션 파일이 없습니다. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + {0} 솔루션에 {1} 프로젝트가 이미 있습니다. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + {0} 참조가 없습니다. 계속 추가하려면 --force 옵션을 ;사용하세요. 이 경우 프로젝트에 부정적인 영향을 줄 수 있습니다. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + `{0}` 참조가 잘못되었습니다. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 추가할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 프로젝트에 `{0}` 참조가 추가되었습니다. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} 프로젝트에 이미 `{1}` 참조가 있습니다. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 패키지 참조 `{0}`이(가) 없습니다. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 패키지 참조 `{0}`이(가) 잘못되었습니다. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 추가할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 프로젝트에 패키지 참조 `{0}`이(가) 추가되었습니다. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} 프로젝트에 이미 `{1}` 참조가 있습니다. + Please specify a version of the package. - Please specify a version of the package. - + 패키지 버전을 지정하세요. + Project `{0}` does not exist. - Project `{0}` does not exist. - + `{0}` 프로젝트가 없습니다. + Project `{0}` is invalid. - Project `{0}` is invalid. - + `{0}` 프로젝트가 잘못되었습니다. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + 추가할 프로젝트를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet add --help를 실행하세요. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + `{0}` 프로젝트가 솔루션에 추가되었습니다. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + {0} 솔루션에 {1} 프로젝트가 이미 있습니다. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 지정한 참조 {0}이(가) {1} 프로젝트에 없습니다. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` 참조가 프로젝트에서 삭제되었습니다. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. + Reference `{0}` deleted. - Reference `{0}` deleted. - + `{0}` 참조가 삭제되었습니다. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 프로젝트에서 패키지 참조 `{0}`을(를) 찾을 수 없습니다. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` 참조가 프로젝트에서 삭제되었습니다. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 삭제할 참조를 하나 이상 지정해야 합니다. 자세한 정보를 보려면 dotnet delete --help를 실행하세요. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + 패키지 참조 `{0}`이(가) 삭제되었습니다. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 삭제할 패키지 참조를 하나 이상 지정해야 합니다. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 솔루션에서 `{0}` 프로젝트를 찾을 수 없습니다. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + `{0}` 프로젝트가 솔루션에서 제거되었습니다. + You must specify at least one project to remove. - You must specify at least one project to remove. - + 제거할 프로젝트를 하나 이상 지정해야 합니다. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + `{0}` 프로젝트가 솔루션에서 삭제되었습니다. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + 솔루션에서 삭제할 프로젝트를 하나 이상 지정해야 합니다. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + {1} 프로젝트에 {0} 참조가 없습니다. ;; {0}은(는) 요청한 항목의 형식(프로젝트, 패키지, p2p)이고 {1}은(는) 작업 중인 개체(프로젝트 파일 또는 솔루션 파일)입니다. + No projects found in the solution. - No projects found in the solution. - + 솔루션에서 프로젝트를 찾을 수 없습니다. + Please specify new version of the package. - Please specify new version of the package. - + 패키지의 새 버전을 지정하세요. + Please specify which package to update. - Please specify which package to update. - + 업데이트할 패키지를 지정하세요. + Nothing to update. - Nothing to update. - + 업데이트할 사항이 없습니다. + Everything is already up-to-date. - Everything is already up-to-date. - + 모든 항목이 이미 최신 상태입니다. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + `{0}` 패키지의 버전이 `{1}`(으)로 업데이트되었습니다. + Version of package `{0}` updated. - Version of package `{0}` updated. - + `{0}` 패키지의 버전이 업데이트되었습니다. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + `{0}` 패키지의 버전을 업데이트할 수 없습니다. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + {0} 템플릿을 만들었습니다. 시작하려면 "dotnet restore"를 실행하세요. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + {0} 템플릿이 설치되었습니다. 새 템플릿으로 시작하려면 "dotnet new {0}"을(를) 사용하세요. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + {0} 템플릿을 만들 수 없습니다. 반환된 오류는 {1}입니다. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + {0} 템플릿을 설치할 수 없습니다. 반환된 오류는 {1}입니다. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 지정한 이름 {0}이(가) 이미 있습니다. 다른 이름을 지정하세요. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 지정한 별칭 {0}이(가) 이미 있습니다. 다른 별칭을 지정하세요. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + {1} 템플릿에 대한 필수 매개 변수 {0}이(가) 없습니다. + diff --git a/src/dotnet/xlf/LocalizableStrings.pl.xlf b/src/dotnet/xlf/LocalizableStrings.pl.xlf index f60431a6a..901156a6e 100644 --- a/src/dotnet/xlf/LocalizableStrings.pl.xlf +++ b/src/dotnet/xlf/LocalizableStrings.pl.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Nie można odnaleźć żadnego projektu w lokalizacji „{0}”. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Znaleziono więcej niż jeden projekt w lokalizacji „{0}”. Określ, który ma zostać użyty. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projekt zawiera już odwołanie do elementu „{0}”. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Nie można odnaleźć odwołania do projektu „{0}”. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Odwołanie do projektu „{0}” zostało usunięte. + Required argument - Required argument - + Wymagany argument + Option - Option - + Opcja + Argument - Argument - + Argument + Help - Help - + Pomoc + Project - Project - + Projekt + Project file - Project file - + Plik projektu + Reference - Reference - + Odwołanie + Project reference - Project reference - + Odwołanie do projektu + Package reference - Package reference - + Odwołanie do pakietu + Project to Project - Project to Project - + Między projektami + Project to Project reference - Project to Project reference - + Odwołanie między projektami + Package - Package - + Pakiet + Solution - Solution - + Rozwiązanie + Solution file - Solution file - + Plik rozwiązania + Executable - Executable - + Plik wykonywalny + Library - Library - + Biblioteka + Program - Program - + Program + Application - Application - + Aplikacja + Add - Add - + Dodaj + Remove - Remove - + Skasuj + Delete - Delete - + Usuń + Update - Update - + Aktualizuj + New - New - + Nowy + List - List - + Wyświetl listę + Load - Load - + Wczytaj + Save - Save - + Zapisz + Find - Find - + Znajdź + Error - Error - + Błąd + Warning - Warning - + Ostrzeżenie + File - File - + Plik + Directory - Directory - + Katalog + Type - Type - + Typ + Value - Value - + Wartość + Group - Group - + Grupa + {0} added to {1}. - {0} added to {1}. - + Dodano element {0} do elementu {1}. + {0} removed from {1}. - {0} removed from {1}. - + Skasowano element {0} z elementu {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + Usunięto element {0} z elementu {1}. + {0} successfully updated. - {0} successfully updated. - + Pomyślnie zaktualizowano element {0}. + {0} is invalid. - {0} is invalid. - + Element {0} jest nieprawidłowy. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + Element {0} „{1}” został znaleziony, ale jest nieprawidłowy. + `{0}` found but is invalid. - `{0}` found but is invalid. - + Element „{0}” został znaleziony, ale jest nieprawidłowy. + Operation is invalid. - Operation is invalid. - + Operacja jest nieprawidłowa. + Operation {0} is invalid. - Operation {0} is invalid. - + Operacja {0} jest nieprawidłowa. + {0} not found. - {0} not found. - + Nie odnaleziono elementu {0}. + {0} or {1} not found. - {0} or {1} not found. - + Nie odnaleziono elementu {0} lub {1}. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + Nie odnaleziono elementu {0} lub {1} w lokalizacji „{2}”. + File `{0}` not found. - File `{0}` not found. - + Nie odnaleziono pliku „{0}”. + {0} does not exist. - {0} does not exist. - + Element {0} nie istnieje. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + Element {0} „{1}” nie istnieje. + More than one {0} found. - More than one {0} found. - + Znaleziono więcej niż jeden element {0}. + {0} already contains {1}. - {0} already contains {1}. - + Element {0} zawiera już element {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + Element {0} zawiera już element {1} „{2}”. + {0} already has {1}. - {0} already has {1}. - + Element {0} ma już element {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + Element {0} ma już element {1} „{2}”. + {0} was not expected. - {0} was not expected. - + Nieoczekiwany element {0}. + {0} not provided. - {0} not provided. - + Nie podano elementu {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Określ co najmniej jeden element {0}. + Could not connect with the server. - Could not connect with the server. - + Nie można nawiązać połączenia z serwerem. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Wymagany argument {0} jest nieprawidłowy. + Option {0} is invalid. - Option {0} is invalid. - + Opcja {0} jest nieprawidłowa. + Argument {0} is invalid. - Argument {0} is invalid. - + Argument {0} jest nieprawidłowy. + Required argument {0} was not provided. - Required argument {0} was not provided. - + Nie podano wymaganego argumentu {0}. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Nie można odnaleźć żadnego projektu w lokalizacji „{0}”. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Nie można odnaleźć projektu ani katalogu „{0}”. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Znaleziono więcej niż jeden projekt w lokalizacji „{0}”. Określ, który ma zostać użyty. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Znaleziono projekt „{0}”, ale jest on nieprawidłowy. + Invalid project `{0}`. - Invalid project `{0}`. - + Nieprawidłowy projekt „{0}”. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Określony plik rozwiązania {0} nie istnieje bądź w katalogu nie ma żadnego pliku rozwiązania. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Nie można odnaleźć rozwiązania ani katalogu „{0}”. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Znaleziono więcej niż jeden plik rozwiązania w lokalizacji {0}. Określ, który ma zostać użyty. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Prawdopodobnie plik rozwiązania {0} jest nieprawidłowy. Sprawdź, czy jest to prawidłowy plik rozwiązania. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Nieprawidłowe rozwiązanie „{0}”. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Określony plik rozwiązania {0} nie istnieje bądź w katalogu nie ma żadnego pliku rozwiązania. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Rozwiązanie {0} zawiera już projekt {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Odwołanie {0} nie istnieje. Jeśli mimo to chcesz je dodać, użyj opcji --force. Pamiętaj, że może to negatywnie wpłynąć na projekt. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Odwołanie „{0}” jest nieprawidłowe. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Musisz określić co najmniej jedno odwołanie do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Do projektu zostało dodane odwołanie „{0}”. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} zawiera już odwołanie „{1}”. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Odwołanie do pakietu „{0}” nie istnieje. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Odwołanie do pakietu „{0}” jest nieprawidłowe. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Musisz określić co najmniej jedno odwołanie do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Do projektu zostało dodane odwołanie do pakietu „{0}”. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Projekt {0} zawiera już odwołanie „{1}”. + Please specify a version of the package. - Please specify a version of the package. - + Określ wersję pakietu. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Projekt „{0}” nie istnieje. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Projekt „{0}” jest nieprawidłowy. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Musisz określić co najmniej jeden projekt do dodania. Uruchom polecenie dotnet add --help, aby uzyskać więcej informacji. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Dodano projekt „{0}” do rozwiązania. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Rozwiązanie {0} zawiera już projekt {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Określone odwołanie {0} nie istnieje w projekcie {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odwołanie „{0}” zostało usunięte z projektu. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Odwołanie „{0}” zostało usunięte. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Nie można odnaleźć odwołania do pakietu „{0}” w projekcie. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Odwołanie „{0}” zostało usunięte z projektu. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Musisz określić co najmniej jedno odwołanie do usunięcia. Uruchom polecenie dotnet delete --help, aby uzyskać więcej informacji. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Odwołanie do pakietu „{0}” zostało usunięte. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Musisz określić co najmniej jedno odwołanie do pakietu, które ma zostać usunięte. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Nie można odnaleźć projektu „{0}” w rozwiązaniu. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Projekt „{0}” został skasowany z rozwiązania. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Musisz określić co najmniej jeden projekt do skasowania. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Projekt „{0}” został usunięty z rozwiązania. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Musisz określić co najmniej jeden projekt do usunięcia z rozwiązania. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Brak odwołań do elementu typu {0} w projekcie {1}. ;; {0} to typ żądanego elementu (projekt, pakiet, odwołanie między projektami), a {1} to obiekt, na którym przeprowadzana jest operacja (plik projektu lub rozwiązania). + No projects found in the solution. - No projects found in the solution. - + Nie znaleziono żadnych projektów w tym rozwiązaniu. + Please specify new version of the package. - Please specify new version of the package. - + Określ nową wersję pakietu. + Please specify which package to update. - Please specify which package to update. - + Określ, który pakiet ma zostać zaktualizowany. + Nothing to update. - Nothing to update. - + Brak elementów wymagających aktualizacji. + Everything is already up-to-date. - Everything is already up-to-date. - + Wszystko jest już aktualne. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Pakiet „{0}” został zaktualizowany do wersji „{1}”. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Wersja pakietu „{0}” została zaktualizowana. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Nie można zaktualizować wersji pakietu „{0}”. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Pomyślnie utworzono szablon {0}. Uruchom polecenie „dotnet restore”, aby rozpocząć pracę. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Pomyślnie zainstalowano szablon {0}. Za pomocą polecenia „dotnet new {0}” możesz rozpocząć pracę z nowym szablonem. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Nie można utworzyć szablonu {0}. Zwrócony błąd to: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Nie można zainstalować szablonu {0}. Zwrócony błąd to: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Podana nazwa {0} już istnieje. Podaj inną nazwę. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Podany alias {0} już istnieje. Podaj inny alias. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Brak obowiązkowego parametru {0} dla szablonu {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.pt-BR.xlf b/src/dotnet/xlf/LocalizableStrings.pt-BR.xlf index a8f4f0ded..ada5a7d27 100644 --- a/src/dotnet/xlf/LocalizableStrings.pt-BR.xlf +++ b/src/dotnet/xlf/LocalizableStrings.pt-BR.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Não foi possível encontrar nenhum projeto em ‘{0}’. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Foi encontrado mais de um projeto em ‘{0}’. Especifique qual usar. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + O projeto já tem uma referência para ‘{0}’. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Não foi possível encontrar a referência de projeto ‘{0}’. + Project reference `{0}` removed. - Project reference `{0}` removed. - + Referência de projeto ‘{0}’ removida. + Required argument - Required argument - + Argumento obrigatório + Option - Option - + Opção + Argument - Argument - + Argumento + Help - Help - + Ajuda + Project - Project - + Projeto + Project file - Project file - + Arquivo de projeto + Reference - Reference - + Referência + Project reference - Project reference - + Referência do projeto + Package reference - Package reference - + Referência do pacote + Project to Project - Project to Project - + Projeto para Projeto + Project to Project reference - Project to Project reference - + Referência de Projeto para Projeto + Package - Package - + Pacote + Solution - Solution - + Solução + Solution file - Solution file - + Arquivo de solução + Executable - Executable - + Executável + Library - Library - + Biblioteca + Program - Program - + Programa + Application - Application - + Aplicativo + Add - Add - + Adicionar + Remove - Remove - + Remover + Delete - Delete - + Excluir + Update - Update - + Atualizar + New - New - + Novo + List - List - + Listar + Load - Load - + Carregar + Save - Save - + Salvar + Find - Find - + Localizar + Error - Error - + Erro + Warning - Warning - + Aviso + File - File - + Arquivo + Directory - Directory - + Diretório + Type - Type - + Tipo + Value - Value - + Valor + Group - Group - + Grupo + {0} added to {1}. - {0} added to {1}. - + {0} adicionado a {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} removido de {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} excluído de {1}. + {0} successfully updated. - {0} successfully updated. - + {0} atualizado com êxito. + {0} is invalid. - {0} is invalid. - + {0} é inválido. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} ‘{1}’ encontrado, mas é inválido. + `{0}` found but is invalid. - `{0}` found but is invalid. - + ‘{0}’ encontrado, mas é inválido. + Operation is invalid. - Operation is invalid. - + A operação é inválida. + Operation {0} is invalid. - Operation {0} is invalid. - + A operação {0} é inválida. + {0} not found. - {0} not found. - + {0} não encontrado. + {0} or {1} not found. - {0} or {1} not found. - + {0} ou {1} não encontrado. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} ou {1} não encontrado em {2}’. + File `{0}` not found. - File `{0}` not found. - + Arquivo ‘{0}’ não encontrado. + {0} does not exist. - {0} does not exist. - + {0} não existe. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} ‘{1}’ não existe. + More than one {0} found. - More than one {0} found. - + Mais de um {0} encontrado. + {0} already contains {1}. - {0} already contains {1}. - + {0} já contém {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} já contém {1} ‘{2}’. + {0} already has {1}. - {0} already has {1}. - + {0} já tem {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} já tem {1} ‘{2}’. + {0} was not expected. - {0} was not expected. - + {0} não era esperado. + {0} not provided. - {0} not provided. - + {0} não fornecido. + Please specify at least one {0}. - Please specify at least one {0}. - + Especifique pelo menos um {0}. + Could not connect with the server. - Could not connect with the server. - + Não foi possível se conectar ao servidor. + Required argument {0} is invalid. - Required argument {0} is invalid. - + O argumento obrigatório {0} é inválido. + Option {0} is invalid. - Option {0} is invalid. - + A opção {0} é inválida. + Argument {0} is invalid. - Argument {0} is invalid. - + O argumento {0} é inválido. + Required argument {0} was not provided. - Required argument {0} was not provided. - + O argumento obrigatório {0} não foi fornecido. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Não foi possível encontrar nenhum projeto em ‘{0}’. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Não foi possível encontrar o projeto ou diretório ‘{0}’. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Foi encontrado mais de um projeto em ‘{0}’. Especifique qual usar. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Foi encontrado um projeto ‘{0}’, mas ele é inválido. + Invalid project `{0}`. - Invalid project `{0}`. - + Projeto ‘{0}’ inválido. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + O arquivo de solução {0} especificado não existe ou não há um arquivo de solução no diretório. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Não foi possível encontrar a solução ou diretório ‘{0}’. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Foi encontrado mais de um arquivo de solução em {0}. Especifique qual usar. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + O arquivo de solução {0} parece ser inválido. Verifique se ele é um arquivo de solução válido. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Solução inválida ‘{0}’. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + O arquivo de solução {0} especificado não existe ou não há um arquivo de solução no diretório. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + A solução {0} já contém o projeto {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + A referência {0} não existe. Se você ainda desejar adicioná-lo, use a opção --force. Observe que isso pode ter efeitos adversos no projeto. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + A referência ‘{0}’ é inválida. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + É necessário especificar pelo menos uma referência para ser adicionada. Execute dotnet add --help para obter mais informações. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + A referência ‘{0}’ foi adicionada ao projeto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + O projeto {0} já tem uma referência ‘{1}’. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + A referência do pacote ‘{0}’ não existe. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + A referência do pacote ‘{0}’ é inválida. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + É necessário especificar pelo menos uma referência para ser adicionada. Execute dotnet add --help para obter mais informações. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + A referência do pacote ‘{0}’ foi adicionada ao projeto. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + O projeto {0} já tem uma referência ‘{1}’. + Please specify a version of the package. - Please specify a version of the package. - + Especifique uma versão do pacote. + Project `{0}` does not exist. - Project `{0}` does not exist. - + O projeto ‘{0}’ não existe. + Project `{0}` is invalid. - Project `{0}` is invalid. - + O projeto ‘{0}’ é inválido. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + É necessário especificar pelo menos um projeto para ser adicionado. Execute dotnet add --help para obter mais informações. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + O projeto ‘{0}’ foi adicionado à solução. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + A solução {0} já contém o projeto {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + A referência {0} especificada não existe no projeto {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + A referência ‘{0}’ foi excluída do projeto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. + Reference `{0}` deleted. - Reference `{0}` deleted. - + A referência ‘{0}’ foi excluída. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Não foi possível encontrar a referência do pacote ‘{0}’ no projeto. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + A referência ‘{0}’ foi excluída do projeto. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + É necessário especificar pelo menos uma referência para ser excluída. Execute dotnet delete --help para obter mais informações. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + A referência do pacote ‘{0}’ foi excluída. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + É necessário especificar pelo menos uma referência do pacote para ser excluída. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Não foi possível encontrar o projeto ‘{0}’ na solução. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + O projeto ‘{0}’ foi removido da solução. + You must specify at least one project to remove. - You must specify at least one project to remove. - + É necessário especificar pelo menos um projeto para ser removido. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + O projeto ‘{0}’ foi excluído da solução. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + É necessário especificar pelo menos um projeto para excluir da solução. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + Não há referências {0} no projeto {1}. ;; {0} é o tipo do item sendo solicitado (projeto, pacote, p2p) e {1} é o objeto no qual ocorre a operação (um arquivo de projeto ou um arquivo de solução). + No projects found in the solution. - No projects found in the solution. - + Não foi encontrado nenhum projeto na solução. + Please specify new version of the package. - Please specify new version of the package. - + Especifique a nova versão do pacote. + Please specify which package to update. - Please specify which package to update. - + Especifique qual pacote atualizar. + Nothing to update. - Nothing to update. - + Nada para atualizar. + Everything is already up-to-date. - Everything is already up-to-date. - + Tudo já está atualizado. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Versão do pacote ‘{0}’ atualizada para ‘{1}’. + Version of package `{0}` updated. - Version of package `{0}` updated. - + Versão do pacote ‘{0}’ atualizada. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Não foi possível atualizar a versão do pacote ‘{0}’. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + O modelo {0} foi criado com êxito. Execute "dotnet restore" para começar. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + O modelo {0} foi instalado com êxito. Você pode usar "dotnet new {0}" para começar a trabalhar com um novo modelo. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Não foi possível criar o modelo {0}. O erro retornado foi: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Não foi possível instalar o modelo {0}. O erro retornado foi: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + O nome especificado {0} já existe. Especifique um nome diferente. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + O alias especificado {0} já existe. Especifique um alias diferente. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + O parâmetro obrigatório {0} está ausente no modelo {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.ru.xlf b/src/dotnet/xlf/LocalizableStrings.ru.xlf index a9f6db77b..08b228df5 100644 --- a/src/dotnet/xlf/LocalizableStrings.ru.xlf +++ b/src/dotnet/xlf/LocalizableStrings.ru.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Не удалось найти проекты в "{0}". + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Найдено несколько проектов в "{0}". Выберите один. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Проект уже содержит ссылку на "{0}". + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + Не удалось найти ссылку на проект "{0}". + Project reference `{0}` removed. - Project reference `{0}` removed. - + Ссылка на проект "{0}" удалена. + Required argument - Required argument - + Обязательный аргумент + Option - Option - + Параметр + Argument - Argument - + Аргумент + Help - Help - + Справка + Project - Project - + Проект + Project file - Project file - + Файл проекта + Reference - Reference - + Ссылка + Project reference - Project reference - + Ссылка на проект + Package reference - Package reference - + Ссылка на пакет + Project to Project - Project to Project - + Проект — проект + Project to Project reference - Project to Project reference - + Ссылка проекта на проект + Package - Package - + Пакет + Solution - Solution - + Решение + Solution file - Solution file - + Файл решения + Executable - Executable - + Исполняемый файл + Library - Library - + Библиотека + Program - Program - + Программа + Application - Application - + Приложение + Add - Add - + Добавить + Remove - Remove - + Удалить + Delete - Delete - + Удаление. + Update - Update - + Обновить + New - New - + Создать + List - List - + Список + Load - Load - + Загрузить + Save - Save - + Сохранить + Find - Find - + Найти + Error - Error - + Ошибка + Warning - Warning - + Предупреждение + File - File - + Файл + Directory - Directory - + Каталог + Type - Type - + Тип + Value - Value - + Значение + Group - Group - + Группа + {0} added to {1}. - {0} added to {1}. - + {0} добавл. в {1}. + {0} removed from {1}. - {0} removed from {1}. - + {0} удал. из {1}. + {0} deleted from {1}. - {0} deleted from {1}. - + {0} удал. из {1}. + {0} successfully updated. - {0} successfully updated. - + Успешно обновлено: {0}. + {0} is invalid. - {0} is invalid. - + Недопустимо: {0}. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} "{1}" найдено, однако недопустимо. + `{0}` found but is invalid. - `{0}` found but is invalid. - + "{0}" найдено, однако недопустимо. + Operation is invalid. - Operation is invalid. - + Операция недопустима. + Operation {0} is invalid. - Operation {0} is invalid. - + Операция "{0}" недопустима. + {0} not found. - {0} not found. - + {0}: не найдено. + {0} or {1} not found. - {0} or {1} not found. - + {0} или {1}: не найдено. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + {0} или {1}: не найдено в "{2}". + File `{0}` not found. - File `{0}` not found. - + Файл "{0}" не найден. + {0} does not exist. - {0} does not exist. - + {0} не существует. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} "{1}" не существует. + More than one {0} found. - More than one {0} found. - + Найдено несколько "{0}". + {0} already contains {1}. - {0} already contains {1}. - + {0} уже содержит {1}. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} уже содержит {1} "{2}". + {0} already has {1}. - {0} already has {1}. - + {0} уже имеет {1}. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} уже имеет {1} "{2}". + {0} was not expected. - {0} was not expected. - + Не ожидалось: {0}. + {0} not provided. - {0} not provided. - + Не указано: {0}. + Please specify at least one {0}. - Please specify at least one {0}. - + Укажите хотя бы один "{0}". + Could not connect with the server. - Could not connect with the server. - + Не удалось подключиться к серверу. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Обязательный аргумент {0} недопустим. + Option {0} is invalid. - Option {0} is invalid. - + Параметр {0} недопустим. + Argument {0} is invalid. - Argument {0} is invalid. - + Аргумент {0} недопустим. + Required argument {0} was not provided. - Required argument {0} was not provided. - + Обязательный аргумент {0} не указан. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + Не удалось найти проекты в "{0}". + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + Не удалось найти проект или каталог "{0}". + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + Найдено несколько проектов в "{0}". Выберите один. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Найден проект "{0}", однако он недопустим. + Invalid project `{0}`. - Invalid project `{0}`. - + Недопустимый проект "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Указанный файл решения "{0}" не существует, или в каталоге нет файла решения. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + Не удалось найти решение или каталог "{0}". + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + Найдено несколько файлов решений в {0}. Выберите один. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + Возможно, файл решения {0} недопустим. Убедитесь, что он является допустимым файлом решения. + Invalid solution `{0}`. - Invalid solution `{0}`. - + Недопустимое решение "{0}". + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Указанный файл решения "{0}" не существует, или в каталоге нет файла решения. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Решение {0} уже содержит проект {1}. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + Ссылка {0} не существует. Если требуется добавить ее, используйте параметр --force. Учтите, что это может отрицательно повлиять на проекты. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + Ссылка "{0}" недопустима. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Необходимо указать по крайней мере одну добавляемую ссылку. Для получения дополнительных сведений выполните команду dotnet add --help. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + Ссылка "{0}" добавлена в проект. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Проект "{0}" уже содержит ссылку "{1}". + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + Ссылка на пакет "{0}" не существует. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + Ссылка на пакет "{0}" недопустима. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Необходимо указать по крайней мере одну добавляемую ссылку. Для получения дополнительных сведений выполните команду dotnet add --help. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + Ссылка на проект "{0}" добавлена в проект. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + Проект "{0}" уже содержит ссылку "{1}". + Please specify a version of the package. - Please specify a version of the package. - + Укажите версию пакета. + Project `{0}` does not exist. - Project `{0}` does not exist. - + Проект "{0}" не существует. + Project `{0}` is invalid. - Project `{0}` is invalid. - + Проект "{0}" недопустим. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Необходимо указать по крайней мере один добавляемый проект. Для получения дополнительных сведений выполните команду dotnet add --help. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + Проект "{0}" добавлен в решение. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + Решение {0} уже содержит проект {1}. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Указанная ссылка {0} не существует в проекте {1}. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Ссылка "{0}" удалена из проекта. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. + Reference `{0}` deleted. - Reference `{0}` deleted. - + Ссылка "{0}" удалена. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + Ссылку на пакет "{0}" не удалось найти в проекте. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + Ссылка "{0}" удалена из проекта. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Необходимо указать по крайней мере одну удаляемую ссылку. Для получения дополнительных сведений выполните команду dotnet delete --help. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + Ссылка на пакет "{0}" удалена. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Необходимо указать по крайней мере одну удаляемую ссылку на пакет. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + Проект "{0}" не удалось найти в решении. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + Проект "{0}" удален из решения. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Необходимо указать по крайней мере один удаляемый проект. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + Проект "{0}" удален из решения. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Необходимо указать по крайней мере один проект, удаляемый из решения. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + В проекте {1} нет ссылок {0}. ;; {0} — тип запрашиваемого элемента (проект, пакет, p2p), а {1} — обрабатываемый объект (файл проекта или файл решения). + No projects found in the solution. - No projects found in the solution. - + Проекты не найдены в решении. + Please specify new version of the package. - Please specify new version of the package. - + Укажите новую версию пакета. + Please specify which package to update. - Please specify which package to update. - + Укажите обновляемый пакет. + Nothing to update. - Nothing to update. - + Нет элементов для обновления. + Everything is already up-to-date. - Everything is already up-to-date. - + Все элементы в актуальном состоянии. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + Версия пакета "{0}" обновлена до "{1}". + Version of package `{0}` updated. - Version of package `{0}` updated. - + Версия пакета "{0}" обновлена. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + Не удалось обновить версию пакета "{0}". + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + Шаблон "{0}" успешно создан. Выполните команду dotnet restore, чтобы приступить к работе. + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + Шаблон "{0}" успешно установлен. Чтобы начать работу с новым шаблоном, можно использовать команду dotnet new {0}. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + Не удалось создать шаблон "{0}". Возвращена ошибка: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + Не удалось установить шаблон "{0}". Возвращена ошибка: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Указанное имя "{0}" уже существует. Укажите другое имя. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Указанный псевдоним "{0}" уже существует. Укажите другой псевдоним. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + Отсутствует обязательный параметр {0} для шаблона {1}. + diff --git a/src/dotnet/xlf/LocalizableStrings.tr.xlf b/src/dotnet/xlf/LocalizableStrings.tr.xlf index 9a88101fa..55d9902b5 100644 --- a/src/dotnet/xlf/LocalizableStrings.tr.xlf +++ b/src/dotnet/xlf/LocalizableStrings.tr.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` içinde proje bulunamadı. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` içinde birden fazla proje bulundu. Lütfen hangisinin kullanılacağını belirtin. + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + Projede `{0}` başvurusu zaten var. + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + `{0}` proje başvurusu bulunamadı. + Project reference `{0}` removed. - Project reference `{0}` removed. - + `{0}` proje başvurusu kaldırıldı. + Required argument - Required argument - + Gerekli bağımsız değişken + Option - Option - + Seçenek + Argument - Argument - + Bağımsız değişken + Help - Help - + Yardım + Project - Project - + Proje + Project file - Project file - + Proje dosyası + Reference - Reference - + Başvuru + Project reference - Project reference - + Proje başvurusu + Package reference - Package reference - + Paket başvurusu + Project to Project - Project to Project - + Projeden Projeye + Project to Project reference - Project to Project reference - + Projeden Projeye başvuru + Package - Package - + Paket + Solution - Solution - + Çözüm + Solution file - Solution file - + Çözüm dosyası + Executable - Executable - + Yürütülebilir + Library - Library - + Kitaplık + Program - Program - + Program + Application - Application - + Uygulama + Add - Add - + Ekle + Remove - Remove - + Kaldır + Delete - Delete - + Sil + Update - Update - + Güncelleştir + New - New - + Yeni + List - List - + Liste + Load - Load - + Yükle + Save - Save - + Kaydet + Find - Find - + Bul + Error - Error - + Hata + Warning - Warning - + Uyarı + File - File - + Dosya + Directory - Directory - + Dizin + Type - Type - + Tür + Value - Value - + Değer + Group - Group - + Grup + {0} added to {1}. - {0} added to {1}. - + {0}, {1} konumuna eklendi. + {0} removed from {1}. - {0} removed from {1}. - + {0}, {1} konumundan kaldırıldı. + {0} deleted from {1}. - {0} deleted from {1}. - + {0}, {1} konumundan silindi. + {0} successfully updated. - {0} successfully updated. - + {0} başarıyla güncelleştirildi. + {0} is invalid. - {0} is invalid. - + {0} geçersiz. + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + {0} `{1}` bulundu, ancak geçersiz. + `{0}` found but is invalid. - `{0}` found but is invalid. - + `{0}` bulundu, ancak geçersiz. + Operation is invalid. - Operation is invalid. - + İşlem geçersiz. + Operation {0} is invalid. - Operation {0} is invalid. - + {0} işlemi geçersiz. + {0} not found. - {0} not found. - + {0} bulunamadı. + {0} or {1} not found. - {0} or {1} not found. - + {0} veya {1} bulunamadı. + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + `{2}` içinde {0} veya {1} bulunamadı. + File `{0}` not found. - File `{0}` not found. - + `{0}` dosyası bulunamadı. + {0} does not exist. - {0} does not exist. - + {0} yok. + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` yok. + More than one {0} found. - More than one {0} found. - + Birden fazla {0} bulundu. + {0} already contains {1}. - {0} already contains {1}. - + {0} zaten {1} içeriyor. + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} zaten {1} `{2}` içeriyor. + {0} already has {1}. - {0} already has {1}. - + {0} zaten {1} öğesine sahip. + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} zaten {1} `{2}` öğesine sahip. + {0} was not expected. - {0} was not expected. - + {0} beklenmiyor. + {0} not provided. - {0} not provided. - + {0} belirtilmedi. + Please specify at least one {0}. - Please specify at least one {0}. - + Lütfen en az bir {0} belirtin. + Could not connect with the server. - Could not connect with the server. - + Sunucuyla bağlantı kurulamadı. + Required argument {0} is invalid. - Required argument {0} is invalid. - + Gerekli olan {0} bağımsız değişkeni geçersiz. + Option {0} is invalid. - Option {0} is invalid. - + {0} seçeneği geçersiz. + Argument {0} is invalid. - Argument {0} is invalid. - + {0} bağımsız değişkeni geçersiz. + Required argument {0} was not provided. - Required argument {0} was not provided. - + Gerekli olan {0} bağımsız değişkeni belirtilmedi. + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + `{0}` içinde proje bulunamadı. + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + `{0}` projesi veya dizini bulunamadı. + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + `{0}` içinde birden fazla proje bulundu. Lütfen hangisinin kullanılacağını belirtin. + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + Bir `{0}` projesi bulundu ancak geçersiz. + Invalid project `{0}`. - Invalid project `{0}`. - + `{0}` projesi geçersiz. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Belirtilen {0} çözüm dosyası yok veya dizinde bir çözüm dosyası yok. + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + `{0}` çözümü veya dizini bulunamadı. + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + {0} içinde birden fazla çözüm dosyası bulundu. Lütfen hangisinin kullanılacağını belirtin. + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + {0} çözüm dosyası geçersiz gibi görünüyor. Lütfen bunun geçerli bir çözüm dosyası olup olmadığını denetleyin. + Invalid solution `{0}`. - Invalid solution `{0}`. - + `{0}` çözümü geçersiz. + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + Belirtilen {0} çözüm dosyası yok veya dizinde bir çözüm dosyası yok. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + {0} çözümü zaten {1} projesini içeriyor. + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + {0} başvurusu yok. Yine de eklemek istiyorsanız lütfen --force seçeneğini kullanın. Bunun yapılması projeyi olumsuz yönde etkileyebilir. + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + `{0}` başvurusu geçersiz. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Eklemek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + `{0}` başvurusu projeye eklendi. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} projesinde `{1}` başvurusu zaten var. + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + `{0}` paket başvurusu yok. + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + `{0}` paket başvurusu geçersiz. + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + Eklemek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + `{0}` paket başvurusu projeye eklendi. + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + {0} projesinde `{1}` başvurusu zaten var. + Please specify a version of the package. - Please specify a version of the package. - + Lütfen paket sürümünü belirtin. + Project `{0}` does not exist. - Project `{0}` does not exist. - + `{0}` projesi yok. + Project `{0}` is invalid. - Project `{0}` is invalid. - + `{0}` projesi geçersiz. + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + Eklemek için en az bir proje belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet add --help komutunu çalıştırın. + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + `{0}` projesi çözüme eklendi. + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + {0} çözümü zaten {1} projesini içeriyor. + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + Belirtilen {0} başvurusu {1} projesinde yok. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` başvurusu projeden silindi. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. + Reference `{0}` deleted. - Reference `{0}` deleted. - + `{0}` başvurusu silindi. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + `{0}` paket başvurusu projede bulunamadı. + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + `{0}` başvurusu projeden silindi. + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + Silmek için en az bir başvuru belirtmeniz gerekir. Daha fazla bilgi için lütfen dotnet delete --help komutunu çalıştırın. + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + `{0}` paket başvurusu silindi. + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + Silmek için en az bir paket başvurusu belirtmeniz gerekir. + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + `{0}` projesi çözümde bulunamadı. + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + `{0}` projesi çözümden kaldırıldı. + You must specify at least one project to remove. - You must specify at least one project to remove. - + Kaldırmak için en az bir proje belirtmeniz gerekir. + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + `{0}` projesi çözümden silindi. + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + Çözümden silmek için en az bir proje belirtmeniz gerekir. + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + {1} projesinde {0} başvurusu yok. ;; {0}, istenen öğenin türü (proje, paket, p2p) ve {1}, üzerinde işlem yapılan nesnedir (bir proje dosyası veya çözüm dosyası). + No projects found in the solution. - No projects found in the solution. - + Çözümde proje bulunamadı. + Please specify new version of the package. - Please specify new version of the package. - + Lütfen paketin yeni sürümünü belirtin. + Please specify which package to update. - Please specify which package to update. - + Lütfen güncelleştirilecek paketi belirtin. + Nothing to update. - Nothing to update. - + Güncelleştirilecek bir şey yok. + Everything is already up-to-date. - Everything is already up-to-date. - + Her şey güncel. + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + `{0}` paketinin sürümü `{1}` olarak güncelleştirildi. + Version of package `{0}` updated. - Version of package `{0}` updated. - + `{0}` paketinin sürümü güncelleştirildi. + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + `{0}` paketinin sürümü güncelleştirilemedi. + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + {0} şablonu başarıyla oluşturuldu. Başlamak için lütfen "dotnet restore" komutunu çalıştırın! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + {0} şablonu başarıyla yüklendi. Yeni şablonu kullanmaya başlamak için "dotnet new {0}" komutunu kullanabilirsiniz. + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + {0} şablonu oluşturulamadı. Döndürülen hata: {1}. + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + {0} şablonu yüklenemedi. Döndürülen hata: {1}. + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + Belirtilen {0} adı zaten var. Lütfen farklı bir ad belirtin. + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + Belirtilen {0} diğer adı zaten var. Lütfen farklı bir diğer ad belirtin. + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + {1} şablonunda, zorunlu olan {0} parametresi eksik. + diff --git a/src/dotnet/xlf/LocalizableStrings.zh-Hans.xlf b/src/dotnet/xlf/LocalizableStrings.zh-Hans.xlf index 3ca83e8db..0add89141 100644 --- a/src/dotnet/xlf/LocalizableStrings.zh-Hans.xlf +++ b/src/dotnet/xlf/LocalizableStrings.zh-Hans.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + “{0}”中找不到任何项目。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + “{0}”中找到多个项目。请指定使用哪一个。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 项目已经具有对“{0}”的引用。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 找不到项目引用“{0}”。 + Project reference `{0}` removed. - Project reference `{0}` removed. - + 已删除项目引用“{0}”。 + Required argument - Required argument - + 所需参数 + Option - Option - + 选项 + Argument - Argument - + 参数 + Help - Help - + 帮助 + Project - Project - + 项目 + Project file - Project file - + 项目文件 + Reference - Reference - + 引用 + Project reference - Project reference - + 项目引用 + Package reference - Package reference - + 包引用 + Project to Project - Project to Project - + 项目到项目 + Project to Project reference - Project to Project reference - + 项目到项目引用 + Package - Package - + 打包 + Solution - Solution - + 解决方案 + Solution file - Solution file - + 解决方案文件 + Executable - Executable - + 可执行文件 + Library - Library - + + Program - Program - + 程序 + Application - Application - + 应用程序 + Add - Add - + 添加 + Remove - Remove - + 移除 + Delete - Delete - + 删除 + Update - Update - + 更新 + New - New - + 新建 + List - List - + 列表 + Load - Load - + 负载 + Save - Save - + “保存” + Find - Find - + 查找 + Error - Error - + 错误 + Warning - Warning - + 警告 + File - File - + 文件 + Directory - Directory - + 目录 + Type - Type - + 类型 + Value - Value - + + Group - Group - + + {0} added to {1}. - {0} added to {1}. - + 向 {1} 添加了 {0}。 + {0} removed from {1}. - {0} removed from {1}. - + 从 {1} 中移除了 {0}。 + {0} deleted from {1}. - {0} deleted from {1}. - + 从 {1} 中删除了 {0}。 + {0} successfully updated. - {0} successfully updated. - + 已成功更新 {0}。 + {0} is invalid. - {0} is invalid. - + {0} 无效。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + 已找到 {0}“{1}”但无效。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + 已找到“{0}”但无效。 + Operation is invalid. - Operation is invalid. - + 操作无效。 + Operation {0} is invalid. - Operation {0} is invalid. - + 操作 {0} 无效。 + {0} not found. - {0} not found. - + 未找到 {0}。 + {0} or {1} not found. - {0} or {1} not found. - + 未找到 {0} 或 {1}。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + 未在“{2}”中找到 {0} 或 {1}。 + File `{0}` not found. - File `{0}` not found. - + 未找到文件“{0}”。 + {0} does not exist. - {0} does not exist. - + {0} 不存在。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0}“{1}”不存在。 + More than one {0} found. - More than one {0} found. - + 找到多个 {0}。 + {0} already contains {1}. - {0} already contains {1}. - + {0} 已包含 {1}。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} 已包含 {1}“{2}”。 + {0} already has {1}. - {0} already has {1}. - + {0} 已具有 {1}。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} 已具有 {1}“{2}”。 + {0} was not expected. - {0} was not expected. - + 不应有 {0}。 + {0} not provided. - {0} not provided. - + 未提供 {0}。 + Please specify at least one {0}. - Please specify at least one {0}. - + 请至少指定一个 {0}。 + Could not connect with the server. - Could not connect with the server. - + 无法连接到服务器。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 所需参数 {0} 无效。 + Option {0} is invalid. - Option {0} is invalid. - + 选项 {0} 无效。 + Argument {0} is invalid. - Argument {0} is invalid. - + 参数 {0} 无效。 + Required argument {0} was not provided. - Required argument {0} was not provided. - + 未提供所需参数 {0}。 + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + “{0}”中找不到任何项目。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + 找不到项目或目录“{0}”。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + “{0}”中找到多个项目。请指定使用哪一个。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + 找到项目“{0}”但无效。 + Invalid project `{0}`. - Invalid project `{0}`. - + 项目“{0}”无效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的解决方案文件 {0} 不存在,或目录中没有解决方案文件。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + 找不到解决方案或目录“{0}”。 + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + {0} 中找到多个解决方案文件。请指定使用哪一个。 + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 解决方案文件 {0} 似乎无效。请检查它是否是有效的解决方案文件。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 解决方案“{0}”无效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的解决方案文件 {0} 不存在,或目录中没有解决方案文件。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 解决方案 {0} 已包含项目 {1}。 + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 引用 {0} 不存在。如果仍想添加它,请使用 --force 选项。请注意,这可能会对项目产生负面影响。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 引用“{0}”无效。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 必须至少指定一个要添加的引用。请运行 dotnet add --help,获取更多信息。 + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 已将引用“{0}”添加到项目。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 项目 {0} 已经具有引用“{1}”。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 包引用“{0}”不存在。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 包引用“{0}”无效。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 必须至少指定一个要添加的引用。请运行 dotnet add --help,获取更多信息。 + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 已将包引用“{0}”添加到项目中。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 项目 {0} 已经具有引用“{1}”。 + Please specify a version of the package. - Please specify a version of the package. - + 请指定包的版本。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + 项目“{0}”不存在。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + 项目“{0}”无效。 + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + 必须至少指定一个要添加的项目。请运行 dotnet add --help,获取更多信息。 + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + 已将项目“{0}”添加到解决方案中。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 解决方案 {0} 已包含项目 {1}。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 项目 {1} 中不存在指定的引用 {0}。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 已从项目中删除引用“{0}”。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 + Reference `{0}` deleted. - Reference `{0}` deleted. - + 已删除引用“{0}”。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 未能在项目中找到包引用“{0}”。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 已从项目中删除引用“{0}”。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 必须至少指定一个要删除的引用。请运行 dotnet delete --help,获取更多信息。 + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + 已删除包引用“{0}”。 + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 必须至少指定一个要删除的包引用。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 未能在解决方案中找到项目“{0}”。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + 已从解决方案中移除项目“{0}”。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 必须至少指定一个要删除的项目。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + 已从解决方案中删除项目“{0}”。 + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + 必须至少指定一个要从解决方案中删除的项目。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + 项目 {1} 中没有 {0} 引用。;; {0} 是正在请求的项类型(项目、包、p2p)且 {1} 是项目文件或解决方案文件上操作的对象。 + No projects found in the solution. - No projects found in the solution. - + 未在解决方案中找到项目。 + Please specify new version of the package. - Please specify new version of the package. - + 请指定包的新版本。 + Please specify which package to update. - Please specify which package to update. - + 请指定要更新的包。 + Nothing to update. - Nothing to update. - + 没有需要更新的内容。 + Everything is already up-to-date. - Everything is already up-to-date. - + 所有内容已是最新。 + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + 包“{0}”的版本已更新为“{1}”。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + 已更新包“{0}”的版本。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + 未能更新包“{0}”的版本。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + 已成功创建模板 {0}。请运行 "dotnet restore" 以开始使用! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + 已成功安装模板 {0}。可通过 "dotnet new {0}" 开始使用新的模板。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + 未能创建模板 {0}。返回的错误为: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + 未能安装模板 {0}。返回的错误为: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 已存在指定的名称 {0}。请指定不同的名称。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 已存在指定的别名 {0}。请指定不同的别名。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + 模板 {1} 缺少强制参数 {0}。 + diff --git a/src/dotnet/xlf/LocalizableStrings.zh-Hant.xlf b/src/dotnet/xlf/LocalizableStrings.zh-Hant.xlf index 676c518d8..e6c3003b1 100644 --- a/src/dotnet/xlf/LocalizableStrings.zh-Hant.xlf +++ b/src/dotnet/xlf/LocalizableStrings.zh-Hant.xlf @@ -5,633 +5,633 @@ Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 在 `{0}` 中找不到任何專案。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 在 `{0}` 中找到多個專案。請指定要使用的專案。 + Project already has a reference to `{0}`. - Project already has a reference to `{0}`. - + 專案已經有 `{0}` 的參考。 + Project reference `{0}` could not be found. - Project reference `{0}` could not be found. - + 找不到專案參考 `{0}`。 + Project reference `{0}` removed. - Project reference `{0}` removed. - + 專案參考 `{0}` 已移除。 + Required argument - Required argument - + 必要引數 + Option - Option - + 選項 + Argument - Argument - + 引數 + Help - Help - + 說明 + Project - Project - + 專案 + Project file - Project file - + 專案檔 + Reference - Reference - + 參考 + Project reference - Project reference - + 專案參考 + Package reference - Package reference - + 套件參考 + Project to Project - Project to Project - + 專案對專案 + Project to Project reference - Project to Project reference - + 專案對專案參考 + Package - Package - + 套件 + Solution - Solution - + 解決方案 + Solution file - Solution file - + 方案檔 + Executable - Executable - + 可執行檔 + Library - Library - + 程式庫 + Program - Program - + 程式 + Application - Application - + 應用程式 + Add - Add - + 新增 + Remove - Remove - + 移除 + Delete - Delete - + 刪除 + Update - Update - + 更新 + New - New - + 新增 + List - List - + 列出 + Load - Load - + 載入 + Save - Save - + [儲存] + Find - Find - + 尋找 + Error - Error - + 錯誤 + Warning - Warning - + 警告 + File - File - + 檔案 + Directory - Directory - + 目錄 + Type - Type - + 類型 + Value - Value - + + Group - Group - + 群組 + {0} added to {1}. - {0} added to {1}. - + {0} 已新增至 {1}。 + {0} removed from {1}. - {0} removed from {1}. - + {0} 已從 {1} 移除。 + {0} deleted from {1}. - {0} deleted from {1}. - + {0} 已從 {1} 刪除。 + {0} successfully updated. - {0} successfully updated. - + {0} 已成功更新。 + {0} is invalid. - {0} is invalid. - + {0} 無效。 + {0} `{1}` found but is invalid. - {0} `{1}` found but is invalid. - + 找到 {0} `{1}` 但無效。 + `{0}` found but is invalid. - `{0}` found but is invalid. - + 找到 `{0}` 但無效。 + Operation is invalid. - Operation is invalid. - + 作業無效。 + Operation {0} is invalid. - Operation {0} is invalid. - + 作業 {0} 無效。 + {0} not found. - {0} not found. - + 找不到 {0}。 + {0} or {1} not found. - {0} or {1} not found. - + 找不到 {0} 或 {1}。 + {0} or {1} not found in `{2}`. - {0} or {1} not found in `{2}`. - + 在 `{2}` 中找不到 {0} 或 {1}。 + File `{0}` not found. - File `{0}` not found. - + 找不到檔案 `{0}`。 + {0} does not exist. - {0} does not exist. - + {0} 不存在。 + {0} `{1}` does not exist. - {0} `{1}` does not exist. - + {0} `{1}` 不存在。 + More than one {0} found. - More than one {0} found. - + 找到多個 {0}。 + {0} already contains {1}. - {0} already contains {1}. - + {0} 已經包含 {1}。 + {0} already contains {1} `{2}`. - {0} already contains {1} `{2}`. - + {0} 已經包含 {1} `{2}`。 + {0} already has {1}. - {0} already has {1}. - + {0} 已經有 {1}。 + {0} already has {1} `{2}`. - {0} already has {1} `{2}`. - + {0} 已經有 {1} `{2}`。 + {0} was not expected. - {0} was not expected. - + 未預期是 {0}。 + {0} not provided. - {0} not provided. - + 未提供 {0}。 + Please specify at least one {0}. - Please specify at least one {0}. - + 請至少指定一個 {0}。 + Could not connect with the server. - Could not connect with the server. - + 無法與伺服器連線。 + Required argument {0} is invalid. - Required argument {0} is invalid. - + 必要引數 {0} 無效。 + Option {0} is invalid. - Option {0} is invalid. - + 選項 {0} 無效。 + Argument {0} is invalid. - Argument {0} is invalid. - + 引數 {0} 無效。 + Required argument {0} was not provided. - Required argument {0} was not provided. - + 未提供必要引數 {0}。 + Could not find any project in `{0}`. - Could not find any project in `{0}`. - + 在 `{0}` 中找不到任何專案。 + Could not find project or directory `{0}`. - Could not find project or directory `{0}`. - + 找不到專案或目錄 `{0}`。 + Found more than one project in `{0}`. Please specify which one to use. - Found more than one project in `{0}`. Please specify which one to use. - + 在 `{0}` 中找到多個專案。請指定要使用的專案。 + Found a project `{0}` but it is invalid. - Found a project `{0}` but it is invalid. - + 找到專案 `{0}` 但無效。 + Invalid project `{0}`. - Invalid project `{0}`. - + 專案 `{0}` 無效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的方案檔 {0} 不存在,或目錄中沒有方案檔。 + Could not find solution or directory `{0}`. - Could not find solution or directory `{0}`. - + 找不到解決方案或目錄 `{0}`。 + Found more than one solution file in {0}. Please specify which one to use. - Found more than one solution file in {0}. Please specify which one to use. - + 在 {0} 中找到多個方案檔。請指定要使用的專案。 + The solution file {0} seems to be invalid. Please check if it is a valid solution file. - The solution file {0} seems to be invalid. Please check if it is a valid solution file. - + 方案檔 {0} 似乎無效。請檢查其是否為有效的方案檔。 + Invalid solution `{0}`. - Invalid solution `{0}`. - + 解決方案 `{0}` 無效。 + Specified solution file {0} does not exist, or there is no solution file in the directory. - Specified solution file {0} does not exist, or there is no solution file in the directory. - + 指定的方案檔 {0} 不存在,或目錄中沒有方案檔。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 解決方案 {0} 已經包含專案 {1}。 + Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - Reference {0} does not exist. If you still want to add it, please use --force option. Please note that this may have adverse effects on the project. - + 參考 {0} 不存在。如果您仍要加以新增,請使用 --force 選項。請注意,這可能會對專案產生不利影響。 + Reference `{0}` is invalid. - Reference `{0}` is invalid. - + 參考 `{0}` 無效。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 您必須至少指定一個要新增的參考。如需詳細資訊,請執行 dotnet add --help。 + Reference `{0}` added to the project. - Reference `{0}` added to the project. - + 參考 `{0}` 已新增至專案。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 專案 {0} 已經有參考 `{1}`。 + Package reference `{0}` does not exist. - Package reference `{0}` does not exist. - + 套件參考 `{0}` 不存在。 + Package reference `{0}` is invalid. - Package reference `{0}` is invalid. - + 套件參考 `{0}` 無效。 + You must specify at least one reference to add. Please run dotnet add --help for more information. - You must specify at least one reference to add. Please run dotnet add --help for more information. - + 您必須至少指定一個要新增的參考。如需詳細資訊,請執行 dotnet add --help。 + Package reference `{0}` added to the project. - Package reference `{0}` added to the project. - + 套件參考 `{0}` 已新增至專案。 + Project {0} already has a reference `{1}`. - Project {0} already has a reference `{1}`. - + 專案 {0} 已經有參考 `{1}`。 + Please specify a version of the package. - Please specify a version of the package. - + 請指定套件的版本。 + Project `{0}` does not exist. - Project `{0}` does not exist. - + 專案 `{0}` 不存在。 + Project `{0}` is invalid. - Project `{0}` is invalid. - + 專案 `{0}` 無效。 + You must specify at least one project to add. Please run dotnet add --help for more information. - You must specify at least one project to add. Please run dotnet add --help for more information. - + 您必須至少指定一個要新增的專案。如需詳細資訊,請執行 dotnet add --help。 + Project `{0}` added to the solution. - Project `{0}` added to the solution. - + 專案 `{0}` 已新增至解決方案。 + Solution {0} already contains project {1}. - Solution {0} already contains project {1}. - + 解決方案 {0} 已經包含專案 {1}。 + Specified reference {0} does not exist in project {1}. - Specified reference {0} does not exist in project {1}. - + 指定的參考 {0} 不存在於專案 {1}。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 參考 `{0}` 已從專案刪除。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 + Reference `{0}` deleted. - Reference `{0}` deleted. - + 參考 `{0}` 已刪除。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 + Package reference `{0}` could not be found in the project. - Package reference `{0}` could not be found in the project. - + 在專案中找不到套件參考 `{0}`。 + Reference `{0}` deleted from the project. - Reference `{0}` deleted from the project. - + 參考 `{0}` 已從專案刪除。 + You must specify at least one reference to delete. Please run dotnet delete --help for more information. - You must specify at least one reference to delete. Please run dotnet delete --help for more information. - + 您必須至少指定一個要刪除的參考。如需詳細資訊,請執行 dotnet delete --help。 + Package reference `{0}` deleted. - Package reference `{0}` deleted. - + 套件參考 `{0}` 已刪除。 + You must specify at least one package reference to delete. - You must specify at least one package reference to delete. - + 您必須至少指定一個要刪除的套件參考。 + Project `{0}` could not be found in the solution. - Project `{0}` could not be found in the solution. - + 在解決方案中找不到專案 `{0}`。 + Project `{0}` removed from solution. - Project `{0}` removed from solution. - + 專案 `{0}` 已從解決方案移除。 + You must specify at least one project to remove. - You must specify at least one project to remove. - + 您必須至少指定一個要移除的專案。 + Project `{0}` deleted from solution. - Project `{0}` deleted from solution. - + 專案 `{0}` 已從解決方案刪除。 + You must specify at least one project to delete from solution. - You must specify at least one project to delete from solution. - + 您必須至少指定一個要從解決方案刪除的專案。 + There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). - + 專案 {1} 中沒有任何 {0} 參考。;; {0} 是所要求項目的類型 (專案、套件、p2p),而 {1} 是操作的物件 (專案檔或方案檔)。 + No projects found in the solution. - No projects found in the solution. - + 在解決方案中找不到任何專案。 + Please specify new version of the package. - Please specify new version of the package. - + 請指定新的套件版本。 + Please specify which package to update. - Please specify which package to update. - + 請指定要更新的套件。 + Nothing to update. - Nothing to update. - + 沒有要更新的項目。 + Everything is already up-to-date. - Everything is already up-to-date. - + 所有項目均已處於最新狀態。 + Version of package `{0}` updated to `{1}`. - Version of package `{0}` updated to `{1}`. - + 套件 `{0}` 的版本已更新為 `{1}`。 + Version of package `{0}` updated. - Version of package `{0}` updated. - + 套件 `{0}` 的版本已更新。 + Could not update the version of the package `{0}`. - Could not update the version of the package `{0}`. - + 無法更新套件 `{0}` 的版本。 + The template {0} created successfully. Please run "dotnet restore" to get started! - The template {0} created successfully. Please run "dotnet restore" to get started! - + 已成功建立範本 {0}。請執行 "dotnet restore" 以開始使用! + The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - The template {0} installed successfully. You can use "dotnet new {0}" to get started with the new template. - + 已成功安裝範本 {0}。您可以使用 "dotnet new {0}" 來開始使用新的範本。 + Template {0} could not be created. Error returned was: {1}. - Template {0} could not be created. Error returned was: {1}. - + 無法建立範本 {0}。傳回的錯誤是: {1}。 + Template {0} could not be installed. Error returned was: {1}. - Template {0} could not be installed. Error returned was: {1}. - + 無法安裝範本 {0}。傳回的錯誤是: {1}。 + Specified name {0} already exists. Please specify a different name. - Specified name {0} already exists. Please specify a different name. - + 指定的名稱 {0} 已經存在。請指定其他名稱。 + Specified alias {0} already exists. Please specify a different alias. - Specified alias {0} already exists. Please specify a different alias. - + 指定的別名 {0} 已經存在。請指定其他別名。 + Mandatory parameter {0} missing for template {1}. - Mandatory parameter {0} missing for template {1}. - + 遺漏範本 {1} 的強制參數 {0}。 + diff --git a/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigrateBuildOptions.cs b/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigrateBuildOptions.cs index 1858c58d4..bee7bef76 100644 --- a/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigrateBuildOptions.cs +++ b/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigrateBuildOptions.cs @@ -60,7 +60,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Tests mockProj.Items.First(i => i.ItemType == "Compile").Include.Should().Be(@"**\*.cs"); mockProj.Items.First(i => i.ItemType == "Compile").Exclude.Should().BeEmpty(); mockProj.Items.First(i => i.ItemType == "EmbeddedResource").Include.Should().Be(@"compiler\resources\**\*;**\*.resx"); - mockProj.Items.First(i => i.ItemType == "EmbeddedResource").Exclude.Should().BeEmpty(); + mockProj.Items.First(i => i.ItemType == "EmbeddedResource").Exclude.Should().Be("@(EmbeddedResource)"); } [Fact] @@ -555,8 +555,16 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Tests private static IEnumerable GetDefaultExcludePatterns(string group) { - return group == "copyToOutput" ? ProjectFilesCollection.DefaultPublishExcludePatterns - : ProjectFilesCollection.DefaultBuiltInExcludePatterns; + var defaultExcludePatterns = new List(group == "copyToOutput" ? + ProjectFilesCollection.DefaultPublishExcludePatterns : + ProjectFilesCollection.DefaultBuiltInExcludePatterns); + + if (group == "embed") + { + defaultExcludePatterns.Add("@(EmbeddedResource)"); + } + + return defaultExcludePatterns; } private static IEnumerable GetDefaultIncludePatterns(string group) diff --git a/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs b/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs index 1cca412e9..deb1ef0ed 100644 --- a/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs +++ b/test/dotnet-migrate.Tests/GivenThatIWantToMigrateTestApps.cs @@ -22,6 +22,7 @@ namespace Microsoft.DotNet.Migration.Tests [InlineData("TestAppWithRuntimeOptions")] [InlineData("TestAppWithContents")] [InlineData("AppWithAssemblyInfo")] + [InlineData("TestAppWithEmbeddedResources")] public void ItMigratesApps(string projectName) { var projectDirectory = TestAssetsManager.CreateTestInstance(projectName, identifier: projectName)