This commit is contained in:
moxiliang
2025-10-24 14:08:41 +08:00
parent dcd9b20fb0
commit 7065cad6d7
479 changed files with 105341 additions and 647562 deletions

View File

@@ -0,0 +1,34 @@
namespace NetWorkHelper
{
internal class FileTransfersItemText : IFileTransfersItemText
{
public string Save
{
get
{
return "接收";
}
}
public string SaveTo
{
get
{
return "另存为...";
}
}
public string RefuseReceive
{
get
{
return "拒绝";
}
}
public string CancelTransfers
{
get
{
return "取消";
}
}
}
}