-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDefaultLanguage.cs
More file actions
18 lines (16 loc) · 863 Bytes
/
Copy pathDefaultLanguage.cs
File metadata and controls
18 lines (16 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Sync.Tools;
using Sync.Tools.ConfigurationAttribute;
namespace OsuDataDistributeRestful
{
public class DefaultLanguage : I18nProvider
{
public static LanguageElement AllowRequireAdministrator = "AllowLAN requires that the administrator run sync";
public static LanguageElement PortIsOccupied = "Port {0} is occupied";
public static LanguageElement MINIMUM_VERSION_HINT = "[ODDR]The version of {0} is required to be after {1}.";
public static GuiLanguageElement AllowLAN = "Allow LAN";
public static GuiLanguageElement EnableFileHttpServer = "Enable file HTTP server";
public static GuiLanguageElement FileServerRootPath = "File server root path";
public static GuiLanguageElement ApiPort = "Api Server Port";
public static GuiLanguageElement FilePort = "File Server Port";
}
}