diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-11-19 00:48:28 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-11-19 00:48:28 +0100 |
commit | 4e75df4a22da7e682224fd14914a9b711b794da5 (patch) | |
tree | 4a3a781d6cac4c2923dd199558b22772be5b7117 /archaeological_operations/models.py | |
parent | c0986961df4db737d41cb59fe00e2bab17abf548 (diff) | |
download | Ishtar-4e75df4a22da7e682224fd14914a9b711b794da5.tar.bz2 Ishtar-4e75df4a22da7e682224fd14914a9b711b794da5.zip |
Using zanata for translations
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 6fba0d7b3..7565c8288 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -150,11 +150,11 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, blank=True, null=True) operation_type = models.ForeignKey(OperationType, related_name='+', verbose_name=_(u"Operation type")) - surface = models.IntegerField(_(u"Surface (m²)"), blank=True, null=True) + surface = models.IntegerField(_(u"Surface (m2)"), blank=True, null=True) remains = models.ManyToManyField("RemainType", verbose_name=_(u'Remains'), null=True, blank=True) towns = models.ManyToManyField(Town, verbose_name=_(u"Towns")) - cost = models.IntegerField(_(u"Cost (€)"), + cost = models.IntegerField(_(u"Cost (euros)"), blank=True, null=True) # preventive periods = models.ManyToManyField(Period, verbose_name=_(u"Periods"), null=True, blank=True) |