dotnet-installer/src/dotnet/commands/dotnet-new/LocalizableStrings.cs
Piotr Puszkiewicz 3566b9309d PR feedback
2016-12-05 01:07:15 -08:00

37 lines
No EOL
1.2 KiB
C#

namespace Microsoft.DotNet.Tools.New
{
internal class LocalizableStrings
{
public const string CreatingNewError = "Creating new {0} project failed, project already exists.";
public const string CreatedNew = "Created new ";
public const string DirectoryContainsError = " project failed, directory already contains ";
public const string ProjectFailedError = " project failed.";
public const string ProjectIn = " project in ";
public const string AppFullName = ".NET Initializer";
public const string AppDescription = "Initializes empty project for .NET Platform";
public const string ValidValuesText = "Valid values for ";
public const string Language = "LANGUAGE";
public const string LanguageOfProject = "Language of project";
public const string ValidValues = "Valid values";
public const string Type = "TYPE";
public const string TypeOfProject = "Type of project";
public const string UnrecognizedLanguage = "Unrecognized language";
public const string UnrecognizedType = "Unrecognized type";
public const string AvailableTypes = "Available types for";
}
}