diff options
Diffstat (limited to 'archaeological_warehouse/models.py')
-rw-r--r-- | archaeological_warehouse/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py index 8f4d0662e..05b3a6043 100644 --- a/archaeological_warehouse/models.py +++ b/archaeological_warehouse/models.py @@ -336,7 +336,7 @@ class Warehouse(Address, DocumentItem, GeoItem, CompleteIdentifierItem, auto_external_id = models.BooleanField( _("External ID is set automatically"), default=False) max_division_number = models.IntegerField( - _("Number maximum of division"), default=0, + _("Maximum number of divisions"), default=0, help_text=_("Automatically generated")) SUB_ADDRESSES = ["organization", "person_in_charge"] @@ -503,8 +503,8 @@ class WarehouseDivisionLinkManager(models.Manager): class ContainerType(GeneralType): stationary = models.BooleanField( _("Stationary"), default=False, - help_text=_("Container that usually will not be moved. Ex: building, " - "room.")) + help_text=_("Container that will not usually be moved. Ex: building, " + "room, span, shelf.")) length = models.IntegerField(_("Length (mm)"), blank=True, null=True) width = models.IntegerField(_("Width (mm)"), blank=True, null=True) height = models.IntegerField(_("Height (mm)"), blank=True, null=True) |