@cloudtower/eagle 0.27.74 → 0.27.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -256,7 +256,12 @@ const Monthly = ({
256
256
  t,
257
257
  i18n
258
258
  } = useParrotTranslation();
259
- const mark = i18n.language === ParrotLngs.en ? " , " : "\u3001";
259
+ let date;
260
+ if (i18n.language === ParrotLngs.en && mayNotExistDays.length === 3) {
261
+ date = `${mayNotExistDays[0]}, ${mayNotExistDays[1]}, or ${mayNotExistDays[2]}`;
262
+ } else {
263
+ date = mayNotExistDays.join(i18n.t("components.date_mark"));
264
+ }
260
265
  return /* @__PURE__ */React__default.createElement("div", {
261
266
  className: Wrapper
262
267
  }, /* @__PURE__ */React__default.createElement(ParrotTrans, {
@@ -296,7 +301,7 @@ const Monthly = ({
296
301
  }), mayNotExistDays.length > 0 && /* @__PURE__ */React__default.createElement("span", {
297
302
  className: cx("help", Typo.Label.l4_regular)
298
303
  }, t("components.will_excute_at_last_day_with_date", {
299
- date: `${mayNotExistDays.join(mark)} `
304
+ date
300
305
  }))), t("components.execution_time"), /* @__PURE__ */React__default.createElement(TimePicker, {
301
306
  style: {
302
307
  marginLeft: 0
@@ -405,7 +410,7 @@ const CronPlan = props => {
405
410
  onChange: v => changeValue({
406
411
  enabled: v
407
412
  })
408
- }, value.enabled ? t("common.enable") : t("common.disable"))), /* @__PURE__ */React__default.createElement("span", {
413
+ }, value.enabled ? t("common.enabled") : t("common.disabled"))), /* @__PURE__ */React__default.createElement("span", {
409
414
  className: "close",
410
415
  onClick: onRemove
411
416
  }, /* @__PURE__ */React__default.createElement(CloseIcon, null)))),