docs: update User Type and welist server help texts

User Type help now says BASIC is safe for most users and lists
welist server URL config + always-editable fields as advanced features.
Welist server help text updated to 'Only available in ADVANCED mode'.
This commit is contained in:
2026-06-29 00:29:17 -04:00
parent 7a58c69533
commit ff00097af4

View File

@@ -634,12 +634,12 @@ class Plugin(BalPlugin):
8, 8,
( (
"Choose how much detail the plugin shows.\n\n" "Choose how much detail the plugin shows.\n\n"
"BASIC (default): a simpler interface. It hides the advanced " "BASIC: simplified interface, safe configuration for most "
"controls (the Raw/Date selector and the 'Check Alive' field) " "users.\n\n"
"and turns off the 'check alive' postpone behaviour, so you "
"only set the delivery date.\n\n"
"ADVANCED: shows every control, including the 'Check Alive' " "ADVANCED: shows every control, including the 'Check Alive' "
"field and the Raw/Date selector." "field and the Raw/Date selector. Allows configuring the "
"welist server URL and keeps all date/fee fields always "
"editable."
), ),
) )
# Welist server URL: shown only in ADVANCED mode. In BASIC mode the # Welist server URL: shown only in ADVANCED mode. In BASIC mode the
@@ -647,7 +647,7 @@ class Plugin(BalPlugin):
lbl_welist_server = QLabel(_("Welist Server URL")) lbl_welist_server = QLabel(_("Welist Server URL"))
help_welist_server = HelpButton( help_welist_server = HelpButton(
"URL of the server that provides the will-executor list. " "URL of the server that provides the will-executor list. "
"Only used in ADVANCED mode." "Only available in ADVANCED mode."
) )
grid.addWidget(lbl_welist_server, 9, 0) grid.addWidget(lbl_welist_server, 9, 0)
grid.addWidget(edit_welist_server, 9, 1) grid.addWidget(edit_welist_server, 9, 1)