forked from AlexPlesa/Switch-Trados-Studios-Environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
15 lines (14 loc) · 767 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
namespace Switch_Trados_Studios_Environment
{
public class Constants
{
public const string LanguageCloudMachineTranslation = "LanguageCloudMachineTranslation.bin";
public const string TradosStudioConfigFile = "SDLTradosStudio.exe.config";
public const string BestMatchServiceSettingsNode = "/configuration/BestMatchServiceSettings";
public const string BestMatchServiceUrlsConfigNode = "/configuration/BestMatchServiceUrlsConfig";
public const string LanguageCloudSyncConfigNode = "/configuration/LanguageCloudSyncConfig";
public const string SdlInstallRegistryPath = @"SOFTWARE\WOW6432Node\SDL";
public const string TradosInstallRegistryPath = @"SOFTWARE\WOW6432Node\Trados";
}
}