Commit 96725da9 authored by Michal Čihař's avatar Michal Čihař

Better name for translated languages

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 6420c12e
......@@ -20,8 +20,8 @@ User profile
User profile contains your preferences, name and email. Name and email
are being used in VCS commits, so keep this information accurate.
Languages
+++++++++
Translated languages
++++++++++++++++++++
Choose here which languages you prefer to translate. These will be offered to
you on main page to have easier access to translations.
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('accounts', '0004_auto_20150108_1424'),
]
operations = [
migrations.AlterField(
model_name='profile',
name='languages',
field=models.ManyToManyField(help_text='Choose languages to which you can translate.', to='lang.Language', verbose_name='Translated languages', blank=True),
preserve_default=True,
),
]
......@@ -371,8 +371,9 @@ class Profile(models.Model):
)
languages = models.ManyToManyField(
Language,
verbose_name=_('Languages'),
verbose_name=_('Translated languages'),
blank=True,
help_text=_('Choose languages to which you can translate.')
)
secondary_languages = models.ManyToManyField(
Language,
......
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