This commit is contained in:
Daniel Girtler 2025-04-08 16:45:21 +10:00 committed by GitHub
parent c1de65e5b3
commit 00e87eb15f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class ManualNetworkConfig(ListManager):
modes = ['DHCP (auto detect)', 'IP (static)']
default_mode = 'DHCP (auto detect)'
header = str(_('Select which mode to configure for "{}" or skip to use default mode "{}"').format(iface_name, default_mode)) + '\n'
header = str(_('Select which mode to configure for "{}"').format(iface_name)) + '\n'
items = [MenuItem(m, value=m) for m in modes]
group = MenuItemGroup(items, sort_items=True)
group.set_default_by_value(default_mode)