summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-12-16 11:06:43 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:22 +0100
commit1bc958348b165fa4c3b9474384985f6047cd4e5d (patch)
tree23e06af316435efe5f33f3f9e5d304b5a54d8d2d /archaeological_warehouse/models.py
parent69291c8ebc37437517537736fcdaa2936ed69dcc (diff)
downloadIshtar-1bc958348b165fa4c3b9474384985f6047cd4e5d.tar.bz2
Ishtar-1bc958348b165fa4c3b9474384985f6047cd4e5d.zip
Fix english typo
Diffstat (limited to 'archaeological_warehouse/models.py')
-rw-r--r--archaeological_warehouse/models.py6
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)