소스 검색

#13230: Tweak field description

Jeremy Stretch 2 년 전
부모
커밋
dcd3f098ce
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      netbox/dcim/models/devices.py

+ 2 - 2
netbox/dcim/models/devices.py

@@ -109,12 +109,12 @@ class DeviceType(ImageAttachmentsMixin, PrimaryModel, WeightMixin):
     exclude_from_utilization = models.BooleanField(
         default=False,
         verbose_name=_('exclude from utilization'),
-        help_text=_('Exclude from rack utilization calculations.')
+        help_text=_('Devices of this type are excluded when calculating rack utilization.')
     )
     is_full_depth = models.BooleanField(
         default=True,
         verbose_name=_('is full depth'),
-        help_text=_('Device consumes both front and rear rack faces')
+        help_text=_('Device consumes both front and rear rack faces.')
     )
     subdevice_role = models.CharField(
         max_length=50,