Fix typo: "locigal connection" (#305)

This commit is contained in:
Remi Rampin
2023-05-16 17:45:54 +02:00
committed by GitHub
parent fe83a62615
commit a1f4478305
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -126,7 +126,7 @@ class DeviceFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
label =_("Show Logical Connections"), required=False, initial=False
)
show_single_cable_logical_conns = forms.BooleanField(
label =_("Show redundant Cable and Locigal Connection"), required=False, initial=False
label =_("Show redundant Cable and Logical Connection"), required=False, initial=False
)
show_neighbors = forms.BooleanField(
label =_("Show Neighbors"), required=False, initial=False
@@ -212,7 +212,7 @@ class IndividualOptionsForm(NetBoxModelForm):
"are displayed as yellow dotted lines.")
)
show_single_cable_logical_conns = forms.BooleanField(
label = ("Show redundant Cable and Locigal Connection"),
label = ("Show redundant Cable and Logical Connection"),
required = False,
initial=False,
help_text=_("Shows a logical connection (in addition to a cable), "
@@ -263,4 +263,4 @@ class IndividualOptionsForm(NetBoxModelForm):
fields = [
'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags', 'show_unconnected', 'show_cables', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors', 'show_circuit', 'show_power', 'show_wireless', 'draw_default_layout'
]