summaryrefslogtreecommitdiff
path: root/archaeological_context_records/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2023-01-16 11:45:10 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2023-01-16 11:45:10 +0100
commit8ba152f7fb995eb7a4cdf3b0fd99e4f59f67c061 (patch)
treedcf2a74cef2866fc5fc3a3779193ee08306ab72a /archaeological_context_records/models.py
parentf930d9612fe14ff1bb97ab7cdf2373c3fd8be87d (diff)
downloadIshtar-8ba152f7fb995eb7a4cdf3b0fd99e4f59f67c061.tar.bz2
Ishtar-8ba152f7fb995eb7a4cdf3b0fd99e4f59f67c061.zip
Update translations
Diffstat (limited to 'archaeological_context_records/models.py')
-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 0a3a9c256..72a835cc2 100644
--- a/archaeological_context_records/models.py
+++ b/archaeological_context_records/models.py
@@ -104,7 +104,7 @@ class Dating(models.Model, SerializeItem):
SERIALIZE_EXCLUDE = ["find", "context_record"]
uuid = models.UUIDField(default=uuid.uuid4)
period = models.ForeignKey(
- Period, verbose_name=_("Period"), on_delete=models.PROTECT
+ Period, verbose_name=_("Chronological period"), on_delete=models.PROTECT
)
start_date = models.IntegerField(_("Start date"), blank=True, null=True)
end_date = models.IntegerField(_("End date"), blank=True, null=True)
@@ -122,7 +122,7 @@ class Dating(models.Model, SerializeItem):
blank=True,
null=True,
)
- precise_dating = models.TextField(_("Precise dating"), blank=True, default="")
+ precise_dating = models.TextField(_("Precise on dating"), blank=True, default="")
objects = UUIDModelManager()
ASSOCIATED_ALT_NAMES = {
"datings__period": SearchAltName(
@@ -529,7 +529,7 @@ class ContextRecord(
[
("unit__label", _("Context record type")),
("operation__cached_label", _("Operation")),
- ("datings__period__label", _("Period")),
+ ("datings__period__label", _("Chronological period")),
("identification__label", _("Identification")),
("activity__label", _("Activity")),
("excavation_technics__label", _("Excavation techniques")),