mirror of
https://github.com/netbox-community/netbox.git
synced 2025-09-06 14:23:36 -06:00
fix(forms): Correct typographical errors in form labels
Fixes typographical errors in form labels across multiple files. Corrects "Compnent name" to "Component name," "Curent Job" to "Current Job," and "Desciption" to "Description". Closes #20258
This commit is contained in:
parent
545773e221
commit
a97af7c641
@ -1181,7 +1181,7 @@ class InventoryItemImportForm(NetBoxModelImportForm):
|
|||||||
help_text=_('Component Type')
|
help_text=_('Component Type')
|
||||||
)
|
)
|
||||||
component_name = forms.CharField(
|
component_name = forms.CharField(
|
||||||
label=_('Compnent name'),
|
label=_('Component name'),
|
||||||
required=False,
|
required=False,
|
||||||
help_text=_('Component Name')
|
help_text=_('Component Name')
|
||||||
)
|
)
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
<td>{{ worker.pid|placeholder }}</td>
|
<td>{{ worker.pid|placeholder }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">{% trans "Curent Job" %}</th>
|
<th scope="row">{% trans "Current Job" %}</th>
|
||||||
<td>{{ job.func_name|placeholder }}</td>
|
<td>{{ job.func_name|placeholder }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -69,7 +69,7 @@ class ContactGroupBulkEditForm(NetBoxModelBulkEditForm):
|
|||||||
required=False
|
required=False
|
||||||
)
|
)
|
||||||
description = forms.CharField(
|
description = forms.CharField(
|
||||||
label=_('Desciption'),
|
label=_('Description'),
|
||||||
max_length=200,
|
max_length=200,
|
||||||
required=False
|
required=False
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user