修改提示语言。
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user