-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSuggestion.cs
More file actions
59 lines (59 loc) · 4.08 KB
/
Copy pathSuggestion.cs
File metadata and controls
59 lines (59 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
namespace Blog.Common
{
public static class Suggestion
{
public static string PlaseChooseToOperatingRecords { get { return "请选择要操作的记录"; } }
public static string AreYouLogOff { get { return "您确定要注销系统吗?"; } }
public static string Cancel { get { return "取消"; } }
public static string CanNotOperationHasTheAudit { get { return "不能操作已经审核的记录"; } }
public static string Check { get { return "审核"; } }
public static string CheckFail { get { return "审核失败"; } }
public static string CheckSucceed { get { return "审核成功"; } }
public static string ClearLossJobs { get { return "清理离线任务"; } }
public static string Close { get { return "关闭"; } }
public static string CloseAll { get { return "关闭全部"; } }
public static string CloseLeft { get { return "关闭左侧标签"; } }
public static string CloseOther { get { return "除此之外全部关闭"; } }
public static string CloseRight { get { return "关闭右侧标签"; } }
public static string Create { get { return "创建"; } }
public static string Delete { get { return "删除"; } }
public static string DeleteFail { get { return "删除失败"; } }
public static string DeleteSucceed { get { return "删除成功"; } }
public static string Details { get { return "详细"; } }
public static string Disable { get { return "不可用"; } }
public static string Edit { get { return "编辑"; } }
public static string EditFail { get { return "修改失败"; } }
public static string EditSucceed { get { return "修改成功"; } }
public static string Export { get { return "导出"; } }
public static string InsertFail { get { return "创建失败"; } }
public static string InsertSucceed { get { return "创建成功"; } }
public static string Loading { get { return "加载中"; } }
public static string LoginSucceed { get { return "登录成功,您可以继续操作!"; } }
public static string LogOff { get { return "安全退出"; } }
public static string NoAnyChanges { get { return "没有作任何修改"; } }
public static string Operate { get { return "操作"; } }
public static string PrimaryRepeat { get { return "主键重复"; } }
public static string Query { get { return "查询"; } }
public static string Reload { get { return "刷新"; } }
public static string Return { get { return "返回"; } }
public static string Save { get { return "保存"; } }
public static string Select { get { return "选择"; } }
public static string SetFail { get { return "设置失败"; } }
public static string SetSucceed { get { return "设置成功"; } }
public static string SwitchingSkin { get { return "切换主题,系统将重新加载?"; } }
public static string Tip { get { return "提示"; } }
public static string UnCheck { get { return "反审核"; } }
public static string UnCheckFail { get { return "反审核失败"; } }
public static string UnCheckSucceed { get { return "反审核成功"; } }
public static string UnSelect { get { return "反选"; } }
public static string Update { get { return "更新"; } }
public static string UpdateFail { get { return "更新失败"; } }
public static string UpdateSucceed { get { return "更新成功"; } }
public static string UpLoad { get { return "上传"; } }
public static string UserTimeOver { get { return "用户登录超时,请重新登录"; } }
public static string Welcome { get { return "您好,欢迎您"; } }
public static string YouCanOnlyOperateARecord { get { return "一次只能操作一条记录"; } }
public static string YouWantToDeleteTheSelectedRecords { get { return "您确定要删除所选记录吗?"; } }
public static string ServerError { get { return "服务器错误,请联系管理员!"; } }
}
}