mirror of
https://github.com/unraid/webgui.git
synced 2026-05-05 01:09:25 -05:00
Change wording of notification "lifetime" to "auto-close". Also a little shuffing of the settings and update Help text.
This commit is contained in:
@@ -2003,12 +2003,22 @@ Write mover messages to the syslog file.
|
||||
|
||||
:notifications_display_help:
|
||||
In *Detailed* view all notifications will be displayed on screen as soon as they arrive.<br>
|
||||
Notifications can be acknowledged individually or all in once.
|
||||
Notifications can be acknowledged individually or all at once.
|
||||
|
||||
In *Summarized* view notifications will be counted only and the number of unread notifications is shown in the menu header per category.<br>
|
||||
Click on the counters to either acknowledge or view the unread notifications.
|
||||
:end
|
||||
|
||||
:notifications_display_position_help:
|
||||
Choose the position of where notifications appear on screen in *Detailed* view. Multiple notifications are stacked, bottom-to-top or
|
||||
top-to-bottom depending on the selected placement.
|
||||
:end
|
||||
|
||||
:notifications_auto_close_help:
|
||||
Number of seconds before notifications are automatically closed in *Detailed* view.<br>
|
||||
A value of 0 disables automatic closure.
|
||||
:end
|
||||
|
||||
:notifications_date_format_help:
|
||||
Select the desired date format which is used in the notifications archive. Recommended is YYYY-MM-DD, which makes the date/time column sortable in a sensible way.
|
||||
:end
|
||||
@@ -2017,10 +2027,6 @@ Select the desired date format which is used in the notifications archive. Recom
|
||||
Select the desired time format which is used in the notifications archive. Recommended is 24 hours, which makes the date/time column sortable in a sensible way.
|
||||
:end
|
||||
|
||||
:notifications_display_position_help:
|
||||
Choose the position of where notifications appear on screen. Multiple notifications are stacked, bottom-to-top or top-to-bottom depending on the selected placement.
|
||||
:end
|
||||
|
||||
:notifications_store_flash_help:
|
||||
By default notifications are stored on RAM disk, which will get lost upon system reboot.
|
||||
Notifications may be stored permanently on the flash drive under folder '/boot/config/plugins/dynamix' instead.
|
||||
|
||||
@@ -124,10 +124,21 @@ _(Notifications display)_:
|
||||
|
||||
:notifications_display_help:
|
||||
|
||||
_(Notifications life time)_ (_(seconds)_):
|
||||
_(Display position)_:
|
||||
: <select name="position" class="a">
|
||||
<?=mk_option($notify['position'], "top-left", _("top-left"))?>
|
||||
<?=mk_option($notify['position'], "top-right", _("top-right"))?>
|
||||
<?=mk_option($notify['position'], "bottom-left", _("bottom-left"))?>
|
||||
<?=mk_option($notify['position'], "bottom-right", _("bottom-right"))?>
|
||||
<?=mk_option($notify['position'], "center", _("center"))?>
|
||||
</select>
|
||||
|
||||
:notifications_display_position_help:
|
||||
|
||||
_(Auto-close)_ (_(seconds)_):
|
||||
: <input type="number" name="life" class="a" min="0" max="60" value="<?=$notify['life']?>"> _(a value of zero means no automatic closure)_
|
||||
|
||||
:notifications_life_time_help:
|
||||
:notifications_auto_close_help:
|
||||
|
||||
_(Date format)_:
|
||||
: <select name="date" class="a">
|
||||
@@ -146,17 +157,6 @@ _(Time format)_:
|
||||
|
||||
:notifications_time_format_help:
|
||||
|
||||
_(Display position)_:
|
||||
: <select name="position" class="a">
|
||||
<?=mk_option($notify['position'], "top-left", _("top-left"))?>
|
||||
<?=mk_option($notify['position'], "top-right", _("top-right"))?>
|
||||
<?=mk_option($notify['position'], "bottom-left", _("bottom-left"))?>
|
||||
<?=mk_option($notify['position'], "bottom-right", _("bottom-right"))?>
|
||||
<?=mk_option($notify['position'], "center", _("center"))?>
|
||||
</select>
|
||||
|
||||
:notifications_display_position_help:
|
||||
|
||||
_(Store notifications to flash)_:
|
||||
: <select name="path" class="a">
|
||||
<?=mk_option($notify['path'], "/tmp/notifications", _("No"))?>
|
||||
|
||||
Reference in New Issue
Block a user