summaryrefslogtreecommitdiff
path: root/archaeological_finds/models_treatments.py
diff options
context:
space:
mode:
authorValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-01-09 22:40:32 +0100
committerValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2017-01-09 22:40:32 +0100
commit7d888972e14e30990ac361c5c7336c2fb484db8d (patch)
tree5ed943ed44c4b10ebf40eb7f56b41f8d8c32a99a /archaeological_finds/models_treatments.py
parent41c10f52fb23ba8e831a225b9d83108b1b853e93 (diff)
downloadIshtar-7d888972e14e30990ac361c5c7336c2fb484db8d.tar.bz2
Ishtar-7d888972e14e30990ac361c5c7336c2fb484db8d.zip
Update labels
Diffstat (limited to 'archaeological_finds/models_treatments.py')
-rw-r--r--archaeological_finds/models_treatments.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py
index 7586c7eca..0f4a53afc 100644
--- a/archaeological_finds/models_treatments.py
+++ b/archaeological_finds/models_treatments.py
@@ -62,8 +62,8 @@ post_delete.connect(post_save_cache, sender=TreatmentType)
class TreatmentState(GeneralType):
class Meta:
- verbose_name = _(u"Type of treatment state")
- verbose_name_plural = _(u"Type of treatment states")
+ verbose_name = _(u"Treatment state type")
+ verbose_name_plural = _(u"Treatment state types")
ordering = ('label',)
post_save.connect(post_save_cache, sender=TreatmentState)
post_delete.connect(post_save_cache, sender=TreatmentState)
@@ -445,7 +445,7 @@ class TreatmentFile(ClosedItem, BaseHistorizedItem, OwnPerms, ValueGetter,
max_length=200)
name = models.TextField(_(u"Name"), blank=True, null=True)
type = models.ForeignKey(TreatmentFileType, verbose_name=_(u"Treatment "
- u"file type"))
+ u"request type"))
in_charge = models.ForeignKey(
Person, related_name='treatmentfile_responsability',
verbose_name=_(u"Person in charge"), on_delete=models.SET_NULL,