diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-03-11 18:55:33 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-04-24 19:41:37 +0200 |
commit | 20d5c7d28d127a2ef8deab2ba2c6a7045700b6c8 (patch) | |
tree | 28057054e3cea0aa7815dbe0ef21d71219fae5e2 /ishtar_common/models.py | |
parent | 630b7be7a5ee39bd418b81f8dc88831c1b65b39c (diff) | |
download | Ishtar-20d5c7d28d127a2ef8deab2ba2c6a7045700b6c8.tar.bz2 Ishtar-20d5c7d28d127a2ef8deab2ba2c6a7045700b6c8.zip |
Site translations in forms
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 247ab4f61..641a9b0a4 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2274,12 +2274,28 @@ TRANSLATED_SITE_LABELS = { 'new': _(u"New site"), 'modification': _(u"Site modification"), 'deletion': _(u"Site deletion"), + "attached-to-operation": _(u"Site (attached to the " + u"operation)"), + "name-attached-to-operation": _(u"Site name (attached " + u"to the operation)"), + "attached-to-cr": _(u"Site (attached to the context " + u"record)"), + "name-attached-to-cr": + _(u"Site name (attached to the context record)"), }, 'entity': { 'search': _(u"Archaeological entity search"), 'new': _(u"New archaeological entity"), 'modification': _(u"Archaeological entity modification"), 'deletion': _(u"Archaeological entity deletion"), + "attached-to-operation": _(u"Archaeological entity (attached to the " + u"operation)"), + "name-attached-to-operation": _(u"Archaeological entity name (attached " + u"to the operation)"), + "attached-to-cr": _(u"Archaeological entity (attached to the context " + u"record)"), + "name-attached-to-cr": + _(u"Archaeological entity name (attached to the context record)"), }, } |