Update translations

This commit is contained in:
2022-02-17 15:46:20 +01:00
parent ba53e07595
commit 0d918aae95
3 changed files with 5 additions and 5 deletions

View File

@@ -123,7 +123,7 @@ class QuestionnaireStorage(models.Model):
ordering = ['name']
id = models.UUIDField(_('ID'), default=uuid.uuid4, editable=False, unique=True, primary_key=True)
name = models.CharField(_('Name'), max_length=200, help_text=_('Name of the questionnaire storage.'))
name = models.CharField(_('Name'), max_length=200, help_text=_('Name of the questionnaire storage'))
type = models.CharField(_('Type'), max_length=15, choices=QuestionnaireStorageTypes.choices, default=QuestionnaireStorageTypes.WEBDAV, help_text=_('Storage type'))
server = models.CharField(_('Server'), max_length=200, help_text=_('Server url'))
username = EncryptedCharField(_('Username'), max_length=200, help_text=_('Username'))