新增角色管理功能,初步新增多语言版本功能,更新readme,v1.6.0

This commit is contained in:
dathlin
2017-10-06 13:30:28 +08:00
parent 64e9d1990e
commit 9ed7e378d4
36 changed files with 1899 additions and 123 deletions

View File

@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonLibrary
{
public class EnglishLocalization : ILocalization
{
public string FormateDateTime { get; set; } = "yyyy/MM/dd HH:mm:ss";
public string ButtonEnsure { get; set; } = "Sure";
public string AccountSelect { get; set; } = "Select";
public string AccountName { get; set; } = "Name";
public string AccountAlias { get; set; } = "Alias";
public string AccountPassword { get; set; } = "Password";
public string AccountFactory { get; set; } = "Factory"; // 可以在此处修改为部门
public string AccountGrade { get; set; } = "Authority";
public string AccountRegisterTime { get; set; } = "Register Time";
public string AccountLoginEnable { get; set; } = "Login Enable";
public string AccountForbidMessage { get; set; } = "Forbid Reason";
public string AccountLoginFrequency { get; set; } = "Login Totle";
public string AccountLastLoginTime { get; set; } = "Login Last Time";
public string AccountLastLoginIpAddress { get; set; } = "Login Last Ip";
public string AccountLoginFailedCount { get; set; } = "Login Failed Totle";
public string AccountLastLoginWay { get; set; } = "Login Last Way";
public string AccountPortrait { get; set; } = "Portrait";
public string AccountDetails { get; set; } = "Account Details";
#region
public string SettingsText { get; set; } = "System parameters settings";
public string SettingsSystem { get; set; } = "System Settings";
public string SettingsGeneral { get; set; } = "General";
public string SettingsAccountFactory { get { return AccountFactory + " List"; } set { } }
public string SettingsTrustClient { get; set; } = "Trust Client";
public string SettingsRoleAssign { get; set; } = "Role Assign";
#endregion
}
}