diff options
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 294d07847..76e258994 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -2959,7 +2959,7 @@ class AdministrativeAct(DocumentItem, BaseHistorizedItem, OwnPerms, ValueGetter, ), "index": SearchAltName(pgettext_lazy("key for text search", "index"), "index"), "ref_sra": SearchAltName( - pgettext_lazy("key for text search", "other-ref"), "ref_sra__iexact" + pgettext_lazy("key for text search", "internal-reference"), "ref_sra__iexact" ), "operation__code_patriarche": SearchAltName( pgettext_lazy("key for text search", "patriarche"), @@ -3169,7 +3169,7 @@ class AdministrativeAct(DocumentItem, BaseHistorizedItem, OwnPerms, ValueGetter, year = models.IntegerField(_("Year"), blank=True, null=True) act_object = models.TextField(_("Object"), blank=True, default="") ref_sra = models.CharField( - _("Other reference"), max_length=200, blank=True, null=True + _("Internal reference"), max_length=200, blank=True, null=True ) departments_label = models.TextField( _("Departments"), |