Просмотр исходного кода

Fixes #20258: Correct typographical errors in labels (#20278)

Martin Hauser 5 месяцев назад
Родитель
Сommit
8311f457b5

+ 1 - 1
netbox/dcim/forms/bulk_import.py

@@ -1181,7 +1181,7 @@ class InventoryItemImportForm(NetBoxModelImportForm):
         help_text=_('Component Type')
     )
     component_name = forms.CharField(
-        label=_('Compnent name'),
+        label=_('Component name'),
         required=False,
         help_text=_('Component Name')
     )

+ 1 - 1
netbox/templates/core/rq_worker.html

@@ -60,7 +60,7 @@
               <td>{{ worker.pid|placeholder }}</td>
             </tr>
             <tr>
-              <th scope="row">{% trans "Curent Job" %}</th>
+              <th scope="row">{% trans "Current Job" %}</th>
               <td>{{ job.func_name|placeholder }}</td>
             </tr>
             <tr>

+ 1 - 1
netbox/tenancy/forms/bulk_edit.py

@@ -69,7 +69,7 @@ class ContactGroupBulkEditForm(NetBoxModelBulkEditForm):
         required=False
     )
     description = forms.CharField(
-        label=_('Desciption'),
+        label=_('Description'),
         max_length=200,
         required=False
     )