2022-07-26 17:07:10 +00:00
|
|
|
|
namespace DataModel.Database;
|
|
|
|
|
|
|
|
|
|
public static class SettingNames
|
|
|
|
|
{
|
2022-07-30 21:07:04 +00:00
|
|
|
|
public static readonly string CULTURE = "Culture";
|
2022-07-30 14:38:38 +00:00
|
|
|
|
public static readonly string DEEPL_ACTION = "DeepL Action";
|
2022-07-30 13:49:19 +00:00
|
|
|
|
public static readonly string DEEPL_API_KEY = "DeepL API Key";
|
2022-10-03 16:13:07 +00:00
|
|
|
|
public static readonly string DEEPL_SOURCE_CULTURE = "DeepL Source Culture";
|
2022-07-26 17:07:10 +00:00
|
|
|
|
public static readonly string DEEPL_MODE = "DeepL Mode";
|
2022-10-03 16:13:07 +00:00
|
|
|
|
public static readonly string GENERATOR_MODE = "Generator Mode";
|
2022-10-03 17:10:39 +00:00
|
|
|
|
public static readonly string GENERATOR_DOTNET_ENABLED = "Generator .NET Enabled";
|
|
|
|
|
public static readonly string GENERATOR_DOTNET_DESTINATION_PATH = "Generator .NET Destination Path";
|
2022-10-30 14:49:22 +00:00
|
|
|
|
public static readonly string GENERATOR_DOTNET_NAMESPACE = "Generator .NET Namespace";
|
|
|
|
|
public static readonly string GENERATOR_DOTNET_DEFAULT_CULTURE = "Generator .NET Default Culture";
|
2022-10-29 16:48:38 +00:00
|
|
|
|
public static readonly string GENERATOR_GODOT_ENABLED = "Generator Godot Enabled";
|
|
|
|
|
public static readonly string GENERATOR_GODOT_DESTINATION_PATH = "Generator Godot Destination Path";
|
2023-01-22 18:35:57 +00:00
|
|
|
|
public static readonly string AUTO_EXPORT_ENABLED = "Auto-Export Enabled";
|
|
|
|
|
public static readonly string AUTO_EXPORT_DESTINATION_PATH = "Auto-Export Destination Path";
|
|
|
|
|
public static readonly string AUTO_EXPORT_FILENAME = "Auto-Export Filename";
|
|
|
|
|
public static readonly string AUTO_EXPORT_SENSITIVE_DATA = "Auto-Export Sensitive Data";
|
2022-07-26 17:07:10 +00:00
|
|
|
|
}
|