diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-01-12 09:32:43 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:23 +0100 |
commit | e67a7ac0e246985beec12a8193928fe0f7e09280 (patch) | |
tree | f22d28d5355f61e74560be109e1b55ef5e211c64 /archaeological_finds/models_finds.py | |
parent | 0796dc6fc520eb4a42177893d48da2b509bf6885 (diff) | |
download | Ishtar-e67a7ac0e246985beec12a8193928fe0f7e09280.tar.bz2 Ishtar-e67a7ac0e246985beec12a8193928fe0f7e09280.zip |
Fix recommended treatments criteria name (refs #5028)
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r-- | archaeological_finds/models_finds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 97a408591..1e848a361 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -891,7 +891,7 @@ class Find(BulkUpdatedItem, ValueGetter, DocumentItem, BaseHistorizedItem, ("datings__period__label", _("Period")), ("material_types__label", _("Material type")), ("object_types__label", _("Object type")), - ("preservation_to_considers__label", _("Preservation to consider")), + ("preservation_to_considers__label", _("Recommended treatments")), ("conservatory_state__label", _("Conservatory state")), ("integrities__label", _("Integrity / interest")), ("remarkabilities__label", _("Remarkability")), @@ -1060,7 +1060,7 @@ class Find(BulkUpdatedItem, ValueGetter, DocumentItem, BaseHistorizedItem, 'object_types__label__iexact'), 'preservation_to_considers': SearchAltName( - pgettext_lazy("key for text search", "preservation"), + pgettext_lazy("key for text search", "recommended-treatments"), 'preservation_to_considers__label__iexact'), 'conservatory_state': SearchAltName( |