summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-03-15 11:03:08 +0100
committerValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-03-15 11:03:08 +0100
commit37088e0e0a2dad1d201d5683315f3d3ae0787820 (patch)
treed6aeefbe9bc0a3ad6ac3644c8f579aaab9008989
parent4ac14d3e2e782a1f499724c685ce783003e9c146 (diff)
downloadIshtar-37088e0e0a2dad1d201d5683315f3d3ae0787820.tar.bz2
Ishtar-37088e0e0a2dad1d201d5683315f3d3ae0787820.zip
Update labels
-rw-r--r--archaeological_context_records/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py
index dd0f0b736..14e98e76b 100644
--- a/archaeological_context_records/models.py
+++ b/archaeological_context_records/models.py
@@ -122,8 +122,8 @@ post_delete.connect(post_save_cache, sender=IdentificationType)
class ExcavationTechnicType(GeneralType):
class Meta:
- verbose_name = _(u"Excavation technic type")
- verbose_name_plural = _(u"Excavation technic types")
+ verbose_name = _(u"Excavation technique type")
+ verbose_name_plural = _(u"Excavation technique types")
ordering = ('label',)
post_save.connect(post_save_cache, sender=ExcavationTechnicType)
post_delete.connect(post_save_cache, sender=ExcavationTechnicType)
@@ -252,7 +252,7 @@ class ContextRecord(BaseHistorizedItem, ImageModel, OwnPerms,
verbose_name=_(u"Activity"),)
excavation_technic = models.ForeignKey(
ExcavationTechnicType, blank=True, null=True,
- verbose_name=_(u"Excavation technic"))
+ verbose_name=_(u"Excavation technique"))
related_context_records = models.ManyToManyField(
'ContextRecord', through='RecordRelations', blank=True, null=True)
point = models.PointField(_(u"Point"), blank=True, null=True, dim=3)