From aea67653a0506461c2c5b696e064e30c9e6d0ddb Mon Sep 17 00:00:00 2001 From: xuxueli <931591021@qq.com> Date: Sun, 5 Apr 2026 18:36:52 +0800 Subject: [PATCH] update doc --- .../com/xxl/job/admin/controller/biz/JobCodeController.java | 2 +- xxl-job-admin/src/main/resources/i18n/message_en.properties | 2 +- xxl-job-admin/src/main/resources/i18n/message_zh_CN.properties | 2 +- xxl-job-admin/src/main/resources/i18n/message_zh_TC.properties | 2 +- xxl-job-admin/src/main/resources/templates/biz/job.list.ftl | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/xxl-job-admin/src/main/java/com/xxl/job/admin/controller/biz/JobCodeController.java b/xxl-job-admin/src/main/java/com/xxl/job/admin/controller/biz/JobCodeController.java index cb94be19..04e7f78c 100644 --- a/xxl-job-admin/src/main/java/com/xxl/job/admin/controller/biz/JobCodeController.java +++ b/xxl-job-admin/src/main/java/com/xxl/job/admin/controller/biz/JobCodeController.java @@ -47,7 +47,7 @@ public class JobCodeController { throw new RuntimeException(I18nUtil.getString("jobinfo_glue_jobid_invalid")); } if (GlueTypeEnum.BEAN == GlueTypeEnum.match(jobInfo.getGlueType())) { - throw new RuntimeException(I18nUtil.getString("jobinfo_glue_gluetype_unvalid")); + throw new RuntimeException(I18nUtil.getString("jobinfo_glue_gluetype_invalid")); } // valid jobGroup permission diff --git a/xxl-job-admin/src/main/resources/i18n/message_en.properties b/xxl-job-admin/src/main/resources/i18n/message_en.properties index efb8ad5b..f950fffc 100644 --- a/xxl-job-admin/src/main/resources/i18n/message_en.properties +++ b/xxl-job-admin/src/main/resources/i18n/message_en.properties @@ -140,7 +140,7 @@ jobinfo_glue_remark=Resource Remark jobinfo_glue_remark_limit=Resource Remark length is limited to 4~100 jobinfo_glue_rollback=Version Backtrack jobinfo_glue_jobid_invalid=Job ID is illegal -jobinfo_glue_gluetype_unvalid=The job is not GLUE Type +jobinfo_glue_gluetype_invalid=The job is not GLUE Type jobinfo_field_executorTimeout_placeholder=Job Timeout period,in seconds. effect if greater than zero schedule_type=Schedule Type schedule_type_none=None diff --git a/xxl-job-admin/src/main/resources/i18n/message_zh_CN.properties b/xxl-job-admin/src/main/resources/i18n/message_zh_CN.properties index e1c7dc0f..e5968600 100644 --- a/xxl-job-admin/src/main/resources/i18n/message_zh_CN.properties +++ b/xxl-job-admin/src/main/resources/i18n/message_zh_CN.properties @@ -140,7 +140,7 @@ jobinfo_glue_remark=源码备注 jobinfo_glue_remark_limit=源码备注长度限制为4~100 jobinfo_glue_rollback=版本回溯 jobinfo_glue_jobid_invalid=任务ID非法 -jobinfo_glue_gluetype_unvalid=该任务非GLUE模式 +jobinfo_glue_gluetype_invalid=该任务非GLUE模式 jobinfo_field_executorTimeout_placeholder=任务超时时间,单位秒,大于零时生效 schedule_type=调度类型 schedule_type_none=无 diff --git a/xxl-job-admin/src/main/resources/i18n/message_zh_TC.properties b/xxl-job-admin/src/main/resources/i18n/message_zh_TC.properties index 7026b723..e0f849ec 100755 --- a/xxl-job-admin/src/main/resources/i18n/message_zh_TC.properties +++ b/xxl-job-admin/src/main/resources/i18n/message_zh_TC.properties @@ -140,7 +140,7 @@ jobinfo_glue_remark=源碼備註 jobinfo_glue_remark_limit=源碼備註長度限制為4~100 jobinfo_glue_rollback=版本回復 jobinfo_glue_jobid_invalid=任務ID非法 -jobinfo_glue_gluetype_unvalid=該任務非GLUE模式 +jobinfo_glue_gluetype_invalid=該任務非GLUE模式 jobinfo_field_executorTimeout_placeholder=任務超時時間,單位秒,大於零時生效 schedule_type=調度類型 schedule_type_none=無 diff --git a/xxl-job-admin/src/main/resources/templates/biz/job.list.ftl b/xxl-job-admin/src/main/resources/templates/biz/job.list.ftl index ea87a9ad..d838cc45 100644 --- a/xxl-job-admin/src/main/resources/templates/biz/job.list.ftl +++ b/xxl-job-admin/src/main/resources/templates/biz/job.list.ftl @@ -975,7 +975,7 @@ exit 0 // valid if ('BEAN' === row.glueType) { - layer.msg(I18n.jobinfo_glue_gluetype_unvalid); + layer.msg(I18n.jobinfo_glue_gluetype_invalid); return; }