summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
authorValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2016-02-23 13:00:11 +0100
committerValérie-Emma Leroux <valerie-emma.leroux@iggdrasil.net>2016-02-23 13:00:11 +0100
commit46113ade48a2286f2fe1e82d04b8ce50f84b5d45 (patch)
tree0be000a8f70cd6d99abb2bfd6ff26edfbbbdfa90 /archaeological_finds
parent5191370bd118bf975b1f0ac92c1d3c85b7186365 (diff)
downloadIshtar-46113ade48a2286f2fe1e82d04b8ce50f84b5d45.tar.bz2
Ishtar-46113ade48a2286f2fe1e82d04b8ce50f84b5d45.zip
Update translation
Diffstat (limited to 'archaeological_finds')
-rw-r--r--archaeological_finds/forms.py4
-rw-r--r--archaeological_finds/models.py8
2 files changed, 6 insertions, 6 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index 1498d4028..198d69035 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -51,7 +51,7 @@ class FindForm(forms.Form):
'preservation_to_consider': models.PreservationType,
'integritie': models.IntegrityType}
label = forms.CharField(
- label=_(u"Free-ID"),
+ label=_(u"Free ID"),
validators=[validators.MaxLengthValidator(60)])
previous_id = forms.CharField(label=_("Previous ID"), required=False)
description = forms.CharField(label=_("Description"),
@@ -292,7 +292,7 @@ class ResultFindForm(forms.Form):
form_label = _(u"Resulting find")
associated_models = {'material_type': models.MaterialType}
label = forms.CharField(
- label=_(u"Free-ID"),
+ label=_(u"Free ID"),
validators=[validators.MaxLengthValidator(60)])
description = forms.CharField(label=_(u"Precise description"),
widget=forms.Textarea)
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py
index 8fc4c9c31..9308be593 100644
--- a/archaeological_finds/models.py
+++ b/archaeological_finds/models.py
@@ -101,7 +101,7 @@ IS_ISOLATED_CHOICES = (
class BaseFind(BaseHistorizedItem, OwnPerms):
IS_ISOLATED_DICT = dict(IS_ISOLATED_CHOICES)
- label = models.TextField(_(u"Free-ID"))
+ label = models.TextField(_(u"Free ID"))
external_id = models.CharField(_(u"External ID"), blank=True, null=True,
max_length=120)
description = models.TextField(_(u"Description"), blank=True, null=True)
@@ -281,7 +281,7 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):
external_id = models.CharField(_(u"External ID"), blank=True, null=True,
max_length=120)
order = models.IntegerField(_(u"Order"), default=1)
- label = models.TextField(_(u"Free-ID"))
+ label = models.TextField(_(u"Free ID"))
description = models.TextField(_(u"Description"), blank=True, null=True)
material_types = models.ManyToManyField(
MaterialType, verbose_name=_(u"Material types"), related_name='finds')
@@ -341,7 +341,7 @@ class Find(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):
verbose_name = _(u"Find")
verbose_name_plural = _(u"Finds")
permissions = (
- ("view_find", ugettext(u"Can view all Find")),
+ ("view_find", ugettext(u"Can view all Finds")),
("view_own_find", ugettext(u"Can view own Find")),
("add_own_find", ugettext(u"Can add own Find")),
("change_own_find", ugettext(u"Can change own Find")),
@@ -575,7 +575,7 @@ class Treatment(BaseHistorizedItem, OwnPerms):
verbose_name = _(u"Treatment")
verbose_name_plural = _(u"Treatments")
permissions = (
- ("view_treatment", ugettext(u"Can view all Treatment")),
+ ("view_treatment", ugettext(u"Can view all Treatments")),
("view_own_treatment", ugettext(u"Can view own Treatment")),
("add_own_treatment", ugettext(u"Can add own Treatment")),
("change_own_treatment", ugettext(u"Can change own Treatment")),