更新readme.md,适配我的信息的中英文,v1.6.5
This commit is contained in:
@@ -92,6 +92,14 @@ namespace ClientsLibrary
|
|||||||
label9.Text = UserLocalization.Localization.AccountLastLoginIpAddress + ":";
|
label9.Text = UserLocalization.Localization.AccountLastLoginIpAddress + ":";
|
||||||
label10.Text = UserLocalization.Localization.AccountLastLoginWay + ":";
|
label10.Text = UserLocalization.Localization.AccountLastLoginWay + ":";
|
||||||
label11.Text = UserLocalization.Localization.AccountLoginFailedCount + ":";
|
label11.Text = UserLocalization.Localization.AccountLoginFailedCount + ":";
|
||||||
|
userButton_upload.UIText = UserLocalization.Localization.ButtonUpload;
|
||||||
|
userButton_download.UIText = UserLocalization.Localization.ButtonDownload;
|
||||||
|
userButton_delete.UIText = UserLocalization.Localization.ButtonDelete;
|
||||||
|
|
||||||
|
groupBox2.Text = UserLocalization.Localization.FileMyListTitle;
|
||||||
|
label_fileName.Text = UserLocalization.Localization.FileName + ":";
|
||||||
|
label_fileSize.Text = UserLocalization.Localization.FileSize + ":";
|
||||||
|
label_uploadTime.Text = UserLocalization.Localization.FileUploadTime + ":";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -148,7 +156,7 @@ namespace ClientsLibrary
|
|||||||
|
|
||||||
public void DownloadUserFileNames()
|
public void DownloadUserFileNames()
|
||||||
{
|
{
|
||||||
treeView1.Nodes[0].Text = "我的云端文件(下载中)";
|
treeView1.Nodes[0].Text = UserLocalization.Localization.FileDownloading;
|
||||||
treeView1.Nodes[0].Nodes.Clear();
|
treeView1.Nodes[0].Nodes.Clear();
|
||||||
treeView1.Refresh();
|
treeView1.Refresh();
|
||||||
|
|
||||||
@@ -168,16 +176,16 @@ namespace ClientsLibrary
|
|||||||
treeView1.Nodes[0].Nodes.Add(node);
|
treeView1.Nodes[0].Nodes.Add(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
treeView1.Nodes[0].Text = "我的云端文件(" + files.Length + ")";
|
treeView1.Nodes[0].Text = UserLocalization.Localization.FileMy + "(" + files.Length + ")";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
treeView1.Nodes[0].Text = "我的云端文件(NULL)";
|
treeView1.Nodes[0].Text = UserLocalization.Localization.FileMy + "(NULL)";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
treeView1.Nodes[0].Text = "我的云端文件(下载失败)";
|
treeView1.Nodes[0].Text = UserLocalization.Localization + "(下载失败)";
|
||||||
}
|
}
|
||||||
|
|
||||||
treeView1.ExpandAll();
|
treeView1.ExpandAll();
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ namespace ClientsLibrary
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 本软件的当前版本,用来验证更新的关键依据
|
/// 本软件的当前版本,用来验证更新的关键依据
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static SystemVersion CurrentVersion { get; } = new SystemVersion("1.0.0.171007");
|
public static SystemVersion CurrentVersion { get; } = new SystemVersion("1.0.0.171008");
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -32,6 +32,17 @@ namespace CommonLibrary
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region 文件相关
|
||||||
|
|
||||||
|
public string FileName { get; set; } = "文件名";
|
||||||
|
public string FileSize { get; set; } = "文件大小";
|
||||||
|
public string FileUploadTime { get; set; } = "上传时间";
|
||||||
|
public string FileDownloading { get; set; } = "我的云端文件(下载中)";
|
||||||
|
public string FileMy { get; set; } = "我的云端文件";
|
||||||
|
public string FileMyListTitle { get; set; } = "个人文件,支持拖拽上传,双击下载";
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region 按钮相关
|
#region 按钮相关
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -59,6 +70,14 @@ namespace CommonLibrary
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string ButtonCancel { get; set; } = "取消";
|
public string ButtonCancel { get; set; } = "取消";
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// 上传
|
||||||
|
/// </summary>
|
||||||
|
public string ButtonUpload { get; set; } = "上传";
|
||||||
|
/// <summary>
|
||||||
|
/// 下载
|
||||||
|
/// </summary>
|
||||||
|
public string ButtonDownload { get; set; } = "下载";
|
||||||
|
/// <summary>
|
||||||
/// 删除选中项
|
/// 删除选中项
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ButtonDeleteSelected { get; set; } = "删除选中项";
|
public string ButtonDeleteSelected { get; set; } = "删除选中项";
|
||||||
|
|||||||
@@ -31,6 +31,19 @@ namespace CommonLibrary
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#region 文件相关
|
||||||
|
|
||||||
|
public string FileName { get; set; } = "Name";
|
||||||
|
public string FileSize { get; set; } = "Size";
|
||||||
|
public string FileUploadTime { get; set; } = "Time";
|
||||||
|
public string FileDownloading { get; set; } = "My Cloud Files(downloading)";
|
||||||
|
public string FileMy { get; set; } = "My Cloud Files";
|
||||||
|
public string FileMyListTitle { get; set; } = "Personal files,drag to upload";
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region 按钮相关
|
#region 按钮相关
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -58,6 +71,14 @@ namespace CommonLibrary
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string ButtonCancel { get; set; } = "Cancel";
|
public string ButtonCancel { get; set; } = "Cancel";
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// 上传
|
||||||
|
/// </summary>
|
||||||
|
public string ButtonUpload { get; set; } = "Upload";
|
||||||
|
/// <summary>
|
||||||
|
/// 下载
|
||||||
|
/// </summary>
|
||||||
|
public string ButtonDownload { get; set; } = "Download";
|
||||||
|
/// <summary>
|
||||||
/// 删除选中项
|
/// 删除选中项
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ButtonDeleteSelected { get; set; } = "Delete Selected";
|
public string ButtonDeleteSelected { get; set; } = "Delete Selected";
|
||||||
|
|||||||
@@ -101,6 +101,17 @@ namespace CommonLibrary
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region 文件相关
|
||||||
|
|
||||||
|
string FileName { get; set; }
|
||||||
|
string FileSize { get; set; }
|
||||||
|
string FileUploadTime { get; set; }
|
||||||
|
string FileDownloading { get; set; }
|
||||||
|
string FileMy { get; set; }
|
||||||
|
string FileMyListTitle { get; set; }
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region 按钮相关
|
#region 按钮相关
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -128,6 +139,14 @@ namespace CommonLibrary
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
string ButtonCancel { get; set; }
|
string ButtonCancel { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// 上传
|
||||||
|
/// </summary>
|
||||||
|
string ButtonUpload { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 下载
|
||||||
|
/// </summary>
|
||||||
|
string ButtonDownload { get; set; }
|
||||||
|
/// <summary>
|
||||||
/// 删除选中项
|
/// 删除选中项
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string ButtonDeleteSelected { get; set; }
|
string ButtonDeleteSelected { get; set; }
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace CommonLibrary
|
|||||||
*
|
*
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
||||||
SoftBasic.FrameworkVersion = new SystemVersion("1.6.4");
|
SoftBasic.FrameworkVersion = new SystemVersion("1.6.5");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -247,6 +247,11 @@ using HslCommunication;
|
|||||||
###### 统一的系统配置界面,门牌为【管理员】-【系统配置】
|
###### 统一的系统配置界面,门牌为【管理员】-【系统配置】
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
##### 中英文双语支持,目前仅先适配我的信息和系统配置界面
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
BIN
软件系统客户端模版/screenshots/client18.png
Normal file
BIN
软件系统客户端模版/screenshots/client18.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 111 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 56 KiB |
Reference in New Issue
Block a user