From 5a045e0dac27fb80abac68a3cb5abd6da6881b18 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Tue, 17 Nov 2020 16:22:59 +0100
Subject: [PATCH] Bug 27026: (bug 24159 follow-up) Add a tooltip to explain the
values of "Days mode"
There was a tooltip for values of the existing rules, but not the only
you were editing.
Now there is the same tooltip (title) on the option elements of the
dropdown list.
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
---
.../intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
index 25a62b0e62d..6d727233f6a 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt
@@ -379,11 +379,11 @@
<td><input type="text" name="issuelength" id="issuelength" size="3" /> </td>
<td>
<select name="daysmode" id="daysmode">
- <option value="">Default</option>
- <option value="Calendar">Calendar</option>
- <option value="Datedue">Datedue</option>
- <option value="Days">Days</option>
- <option value="Dayweek">Dayweek</option>
+ <option value="" title="Use the system preference 'useDaysMode' as a default value">Default</option>
+ <option value="Calendar" title="Use the calendar to skip days the library is closed">Calendar</option>
+ <option value="Datedue" title="Use the calendar to push the due date to the next open day">Datedue</option>
+ <option value="Days" title="Ignore the calendar">Days</option>
+ <option value="Dayweek" title="Use the calendar to push the due date to the next open matching weekday for weekly loan periods, or the next open day otherwise">Dayweek</option>
</select>
</td>
<td>
--
2.29.2