dotnet-installer/src/dotnet/commands/dotnet-new/LocalizableStrings.cs

35 lines
1.2 KiB
C#
Raw Normal View History

2016-12-05 07:18:56 +00:00
namespace Microsoft.DotNet.Tools.New
{
internal class LocalizableStrings
{
2016-12-05 18:24:11 +00:00
public const string ProjectExistsError = "Creating new {0} project failed, project already exists.";
2016-12-05 07:18:56 +00:00
2016-12-05 18:24:11 +00:00
public const string ProjectContainsError = "Creating new {0} project failed, directory already contains {1}";
2016-12-05 07:18:56 +00:00
2016-12-05 18:24:11 +00:00
public const string ProjectFailedError = "Creating new {0} project failed.";
2016-12-05 07:18:56 +00:00
2016-12-05 18:24:11 +00:00
public const string CreatedNewProject = "Created new {0} project in {1}.";
2016-12-05 07:18:56 +00:00
public const string AppFullName = ".NET Initializer";
public const string AppDescription = "Initializes empty project for .NET Platform";
2016-12-05 18:47:10 +00:00
public const string ValidValuesText = "Valid values for {0}: {1}.";
2016-12-05 07:18:56 +00:00
public const string Language = "LANGUAGE";
2016-12-05 18:47:10 +00:00
public const string LanguageOfProject = "Language of project Valid values: {0}.";
2016-12-05 07:18:56 +00:00
public const string Type = "TYPE";
2016-12-05 18:47:10 +00:00
public const string TypeOfProject = "Type of project {0}";
2016-12-05 07:18:56 +00:00
2016-12-05 18:47:10 +00:00
public const string UnrecognizedLanguage = "Unrecognized language: {0}";
2016-12-05 07:18:56 +00:00
2016-12-05 18:24:11 +00:00
public const string UnrecognizedType = "Unrecognized type: {0}";
public const string AvailableTypes = "Available types for {0} :";
2016-12-05 07:18:56 +00:00
}
2016-12-05 18:24:11 +00:00
}