summaryrefslogtreecommitdiff
path: root/ishtar_common/forms_common.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/forms_common.py')
-rw-r--r--ishtar_common/forms_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/forms_common.py b/ishtar_common/forms_common.py
index 697abd1cc..039c03e76 100644
--- a/ishtar_common/forms_common.py
+++ b/ishtar_common/forms_common.py
@@ -880,7 +880,7 @@ class AccountForm(IshtarForm):
HEADERS = {
'hidden_password': FormHeader(
_("New password"),
- help_message=_("Keep theses fields empty if you do not want to "
+ help_message=_("Keep these fields empty if you do not want to "
"change password. On creation, if you leave these "
"fields empty, the user will not be able to "
"connect.")),
@@ -1320,7 +1320,7 @@ class DocumentForm(forms.ModelForm, CustomForm, ManageOldType):
associated_model=models.Organization),
validators=[models.valid_id(models.Organization)], required=False)
licenses = widgets.Select2MultipleField(
- label=_("Licences"), required=False, model=models.LicenseType)
+ label=_("Licenses"), required=False, model=models.LicenseType)
tags = widgets.Select2MultipleField(
label=_("Tags"), required=False, model=models.DocumentTag,
remote="autocomplete-documenttag")