Commit 6aaa84d3 authored by Michal Čihař's avatar Michal Čihař

Add clarification to secondary languages selection

Fixes #992
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 217e121b
...@@ -477,6 +477,10 @@ class Profile(models.Model): ...@@ -477,6 +477,10 @@ class Profile(models.Model):
secondary_languages = models.ManyToManyField( secondary_languages = models.ManyToManyField(
Language, Language,
verbose_name=_('Secondary languages'), verbose_name=_('Secondary languages'),
help_text=_(
'Choose languages you can understand, strings in those languages '
'will be shown in addition to the source string.'
),
related_name='secondary_profile_set', related_name='secondary_profile_set',
blank=True, blank=True,
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment