Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
90001011=Incorrect configuration. Check whether the workflow orchestration is correct. Error cause: {0}
90001012=Duplicate property key are not allow.
90001013=The application name cannot be empty.
90001014=The application name already exists.
90001014=The application name already exists. It may be used by you or another user. Please change the name and try again.
90001015=The application instance log is empty.
90001018=The application name cannot exceed 64 characters.
90002000=Failed to upload the file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
90001011=配置有误,请查看工作流编排是否正确,错误原因:{0}
90001012=存在相同的应用属性。
90001013=应用名称不能为空。
90001014=应用名称已存在。
90001014=应用名称已存在,该名称可能已被您或其他用户使用,请更换名称后重试
90001015=应用实例日志为空。
90001018=应用名称长度超过最大值64。
90002000=文件上传失败。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public enum AippErrCode implements ErrorCode, RetCode {
/**
* 名称已存在
*/
AIPP_NAME_IS_DUPLICATE(90001014, "应用名称已存在。"),
AIPP_NAME_IS_DUPLICATE(90001014, "应用名称已存在,该名称可能已被您或其他用户使用,请更换名称后重试。"),

/**
* 实例历史记录不存在
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
90001011=Incorrect configuration. Check whether the workflow orchestration is correct. Error cause: {0}
90001012=Duplicate property key are not allow.
90001013=The application name cannot be empty.
90001014=The application name already exists.
90001014=The application name already exists. It may be used by you or another user. Please change the name and try again.
90001015=The application instance log is empty.
90001018=The application name cannot exceed 64 characters.
90002000=Failed to upload the file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
90001011=配置有误,请查看工作流编排是否正确,错误原因:{0}
90001012=存在相同的应用属性。
90001013=应用名称不能为空。
90001014=应用名称已存在。
90001014=应用名称已存在,该名称可能已被您或其他用户使用,请更换名称后重试
90001015=应用实例日志为空。
90001018=应用名称长度超过最大值64。
90002000=文件上传失败。
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/locale/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@
"90001011": "Configuration error, please check if the workflow orchestration is correct. Error reason: {error info}.",
"90001012": "Duplicate application property exists.",
"90001013": "Application name cannot be empty.",
"90001014": "Application name already exists.",
"90001014": "The application name already exists. It may be used by you or another user. Please change the name and try again.",
"90001015": "Application instance log is empty.",
"90002000": "File upload failed.",
"90002001": "File expired or corrupted.",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/locale/zh_CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@
"90001011": "配置有误,请查看工作流编排是否正确,错误原因:{错误信息}。",
"90001012": "存在相同的应用属性。",
"90001013": "应用名称不能为空。",
"90001014": "应用名称已存在。",
"90001014": "应用名称已存在,该名称可能已被您或其他用户使用,请更换名称后重试。",
"90001015": "应用实例日志为空。",
"90002000": "文件上传失败。",
"90002001": "文件过期或损坏。",
Expand Down
Loading