修改提示语言。

This commit is contained in:
helongjun
2022-05-25 16:47:55 +08:00
parent d0b617b5d6
commit 1aac09e3da
2 changed files with 19 additions and 19 deletions
@@ -55,7 +55,7 @@ namespace IRaCIS.Core.Application.Services
if (!studyIds.Any())
{
return ResponseOutput.NotOk("There is no image in the current study and cannot be shared! ");
return ResponseOutput.NotOk("当前检查没有影像可以分享。 ");
}
imageShareCommand.StudyId = studyIds.First();
@@ -91,17 +91,17 @@ namespace IRaCIS.Core.Application.Services
if (imageShare == null)
{
return ResponseOutput.NotOk("The resource does not exist! ");
return ResponseOutput.NotOk("资源不存在。");
}
if (pWord != imageShare.Password.Trim())
{
return ResponseOutput.NotOk("Shared password error!");
return ResponseOutput.NotOk("分享密码错误。");
}
if (DateTime.Now > imageShare.ExpireTime)
{
return ResponseOutput.NotOk("Resource sharing has expired!");
return ResponseOutput.NotOk("资源分享过期。");
}
var resource = new ResourceInfo()