diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-22 10:04:49 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-02-22 10:04:49 +0100 |
commit | dfa0b6d1b85b1836d18758f3ad66d6737c0e3033 (patch) | |
tree | eeaf73f9b1c191651a520f82280166b0737c5b1e | |
parent | 303110c526124e76ea40cf4abaad3bd4a5223104 (diff) | |
download | Ishtar-dfa0b6d1b85b1836d18758f3ad66d6737c0e3033.tar.bz2 Ishtar-dfa0b6d1b85b1836d18758f3ad66d6737c0e3033.zip |
Fix translation
-rw-r--r-- | archaeological_files/forms.py | 2 | ||||
-rw-r--r-- | archaeological_operations/forms.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_files/forms.py b/archaeological_files/forms.py index 8b3513438..128fd2ebc 100644 --- a/archaeological_files/forms.py +++ b/archaeological_files/forms.py @@ -56,7 +56,7 @@ class FileSelect(TableSelect): parcel = ParcelField(label=_("Parcel (section/number)")) if settings.ISHTAR_DPTS: towns__numero_insee__startswith = forms.ChoiceField( - label="Department", choices=[]) + label=_(u"Department"), choices=[]) name = forms.CharField(label=_(u"File name"), max_length=200) file_type = forms.ChoiceField(label=_("File type"), choices=[]) end_date = forms.NullBooleanField(label=_(u"Is active?")) diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 37ccbf277..9d6f27b50 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -417,7 +417,7 @@ class OperationSelect(TableSelect): parcel = ParcelField(label=_("Parcel (section/number)")) if settings.ISHTAR_DPTS: towns__numero_insee__startswith = forms.ChoiceField( - label="Department", choices=[]) + label=_(u"Department"), choices=[]) common_name = forms.CharField(label=_(u"Name"), max_length=30) operation_type = forms.ChoiceField(label=_(u"Operation type"), |