diff options
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 |
commit | 71d726991b1577ea06aa96ee769e63a83422a814 (patch) | |
tree | dcf2a74cef2866fc5fc3a3779193ee08306ab72a /archaeological_operations | |
parent | 4e964c674bf24035c0d8c26bd1ae3cd2d04632a9 (diff) | |
download | Ishtar-71d726991b1577ea06aa96ee769e63a83422a814.tar.bz2 Ishtar-71d726991b1577ea06aa96ee769e63a83422a814.zip |
Update translations
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/forms.py | 2 | ||||
-rw-r--r-- | archaeological_operations/templates/ishtar/sheet_operation.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 7203da6c6..cf63b51c4 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -822,7 +822,7 @@ class OperationFormGeneral(CustomForm, ManageOldType): label=_("Remain type"), required=False ) period = widgets.Select2MultipleField( - label=_("Period"), required=False + label=_("Chronological period"), required=False ) abstract = forms.CharField( label=_("Abstract"), diff --git a/archaeological_operations/templates/ishtar/sheet_operation.html b/archaeological_operations/templates/ishtar/sheet_operation.html index 412d00473..4c1317aaf 100644 --- a/archaeological_operations/templates/ishtar/sheet_operation.html +++ b/archaeological_operations/templates/ishtar/sheet_operation.html @@ -236,7 +236,7 @@ {% endwith %} <hr class="clearfix"> {% field_flex_multiple_obj "Remains" item 'remains' %} - {% field_flex_multiple_obj "Periods" item 'periods' %} + {% field_flex_multiple_obj "Chronological period" item 'periods' %} {% field_flex "Record quality" item.record_quality_type %} {% field_flex "Report delivery date" item.report_delivery_date %} {% field_flex "Report processing" item.report_processing %} @@ -514,7 +514,7 @@ {% if item.nb_context_records_by_periods %} <div class="col-12 col-md-6 col-lg-4"> <table class="table table-striped"> - <tr><th>{% trans "Period" %}</th><th>{% trans "Number" %}</th></tr> + <tr><th>{% trans "Chronological period" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_context_records_by_periods %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> {% endfor %} @@ -551,7 +551,7 @@ {% if item.nb_finds_by_periods %} <div class="col-12 col-md-6 col-lg-4"> <table class="table table-striped"> - <tr><th>{% trans "Period" %}</th><th>{% trans "Number" %}</th></tr> + <tr><th>{% trans "Chronological period" %}</th><th>{% trans "Number" %}</th></tr> {% for label, nb in item.nb_finds_by_periods %} <tr><td>{{label|default:"-"}}</td><td>{{nb}}</td></tr> {% endfor %} |