diff --git a/internal/pkg/locale/active.en.toml b/internal/pkg/locale/active.en.toml index 503f84e7..d1d84a63 100644 --- a/internal/pkg/locale/active.en.toml +++ b/internal/pkg/locale/active.en.toml @@ -138,6 +138,7 @@ NotifyDataWorkflowBodyReason = "❌ Rejection Reason: %v" NotifyDataWorkflowBodyReport = "⭐ Data Export Workflow Audit Score: %v" NotifyDataWorkflowBodyStartEnd = "▶️ Execute Start Time: %v\n◀️ Execute End Time: %v" NotifyDataWorkflowBodyWorkFlowErr = "⚠️ Failed to read data export workflow task content, please check the workflow status through the SQLE interface" +NotifyDataWorkflowBodyApprovalReminder = "⏰ The export workflow has been approved. Please complete the export within 1 day, otherwise it will expire and cannot be executed" OAuth2AutoCreateUserErr = "Failed to automatically create user: %v" OAuth2AutoCreateUserWithoutDefaultPwdErr = "Failed to automatically create user: default password not configured" OAuth2BackendLogoutFailed = "; Failed to log out of third-party platform session: %v" diff --git a/internal/pkg/locale/active.zh.toml b/internal/pkg/locale/active.zh.toml index 2dbf403e..604aa6cc 100644 --- a/internal/pkg/locale/active.zh.toml +++ b/internal/pkg/locale/active.zh.toml @@ -138,6 +138,7 @@ NotifyDataWorkflowBodyReason = "❌ 驳回原因: %v" NotifyDataWorkflowBodyReport = "⭐ 数据导出工单审核得分: %v" NotifyDataWorkflowBodyStartEnd = "▶️ 数据导出开始时间: %v\n◀️ 数据导出结束时间: %v" NotifyDataWorkflowBodyWorkFlowErr = "❌ 读取工单任务内容失败,请通过SQLE界面确认工单状态" +NotifyDataWorkflowBodyApprovalReminder = "⏰ 导出工单已审批通过,请在1天内完成导出,过期后将无法执行" OAuth2AutoCreateUserErr = "自动创建用户失败: %v" OAuth2AutoCreateUserWithoutDefaultPwdErr = "自动创建用户失败,默认密码未配置" OAuth2BackendLogoutFailed = ";注销第三方平台会话失败: %v" diff --git a/internal/pkg/locale/message_zh.go b/internal/pkg/locale/message_zh.go index 63ceb7d0..9fcf3bcb 100644 --- a/internal/pkg/locale/message_zh.go +++ b/internal/pkg/locale/message_zh.go @@ -224,4 +224,5 @@ var ( NotifyDataWorkflowBodyReport = &i18n.Message{ID: "NotifyDataWorkflowBodyReport", Other: "⭐ 数据导出工单审核得分: %v"} NotifyDataWorkflowBodyStartEnd = &i18n.Message{ID: "NotifyDataWorkflowBodyStartEnd", Other: "▶️ 数据导出开始时间: %v\n◀️ 数据导出结束时间: %v"} NotifyDataWorkflowBodyWorkFlowErr = &i18n.Message{ID: "NotifyDataWorkflowBodyWorkFlowErr", Other: "❌ 读取工单任务内容失败,请通过SQLE界面确认工单状态"} + NotifyDataWorkflowBodyApprovalReminder = &i18n.Message{ID: "NotifyDataWorkflowBodyApprovalReminder", Other: "⏰ 导出工单已审批通过,请在1天内完成导出,过期后将无法执行"} )