From f703ea43e3463d38c10520032bf17bf8736e3328 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 18 Jan 2022 05:51:57 +0100 Subject: [PATCH] ui: form/calendar event: add monthly and yearly examples like PBS Signed-off-by: Thomas Lamprecht --- www/manager6/form/CalendarEvent.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/manager6/form/CalendarEvent.js b/www/manager6/form/CalendarEvent.js index 56ab8650..7f17b1e2 100644 --- a/www/manager6/form/CalendarEvent.js +++ b/www/manager6/form/CalendarEvent.js @@ -29,7 +29,9 @@ Ext.define('PVE.form.CalendarEvent', { + Ext.String.format(gettext("Every {0} minutes"), 15), }, { value: 'sun 01:00', text: gettext("Sunday") + " 01:00" }, + { value: 'monthly', text: gettext("Every first day of the Month") + " 00:00" }, { value: 'sat *-1..7 15:00', text: gettext("First Saturday each month") + " 15:00" }, + { value: 'yearly', text: gettext("First day of the year") + " 00:00" }, ], },