tooltip message complete with AppConfig Manager

This commit is contained in:
2025-05-07 11:41:33 +02:00
parent 42870e2942
commit 742c6d0cc5
3 changed files with 17 additions and 14 deletions

View File

@ -158,6 +158,8 @@ class Msg:
}
TTIP: Dict[str, str] = {
#Strings for Tooltips
"settings": _("Click for Settings"),
"import_tl": _("Click to import a Wireguard Tunnel"),
"start_tl": _("Click to start selected Wireguard Tunnel"),
"empty_list": _("No tunnels to start in the list"),
"stop_tl": _("Click to stop selected Wireguard Tunnel"),
@ -171,7 +173,8 @@ class Msg:
"start_tl_info": _("Click to start selected Wireguard Tunnel"),
"rename_tl_info": _("To rename a tunnel, at least one must be in the list"),
"trash_tl_info": _("No tunnels to delete in the list"),
"list_auto_info": _("To use the autostart, a tunnel must be selected from the list")
"list_auto_info": _("To use the autostart, a tunnel must be selected from the list"),
"download": _("Click to download new version")
}