37 lines
No EOL
1.2 KiB
C#
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";
|
|
}
|
|
} |