diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-05-28 16:27:09 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-05-28 16:27:09 +0200 |
commit | d949cd7866446e30ca3c14926358fc91f1535ded (patch) | |
tree | d5d09f5691aa310199bcc00f60802959a7b3dacd /ishtar_common/models.py | |
parent | 0e5ba6e7e7bb6a26fde543cd6cd934f247558afa (diff) | |
download | Ishtar-d949cd7866446e30ca3c14926358fc91f1535ded.tar.bz2 Ishtar-d949cd7866446e30ca3c14926358fc91f1535ded.zip |
✏️ geo, document form: fix label for "Site" when configuration is checked (refs #5890)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index fe7264c51..d13b2eaa2 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1041,6 +1041,7 @@ SITE_LABELS = [("site", _("Site")), ("entity", _("Archaeological entity"))] TRANSLATED_SITE_LABELS = { "site": { + "plural": _("Sites"), "search": _("Site search"), "new": _("New site"), "modification": _("Site modification"), @@ -1051,6 +1052,7 @@ TRANSLATED_SITE_LABELS = { "name-attached-to-cr": _("Site name (attached to the context record)"), }, "entity": { + "plural": _("Archaeological entities"), "search": _("Archaeological entity search"), "new": _("New archaeological entity"), "modification": _("Archaeological entity modification"), |