mirror of https://github.com/snachodog/mybuddy.git
Add German to list of language options.
This commit is contained in:
parent
50a92435c7
commit
1d1b994e1a
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.1 on 2019-06-07 14:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('babybuddy', '0006_auto_20190502_1744'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='settings',
|
||||
name='language',
|
||||
field=models.CharField(choices=[('en', 'English'), ('fr', 'French'), ('de', 'German'), ('sv', 'Swedish')], default='en', max_length=255, verbose_name='Language'),
|
||||
),
|
||||
]
|
|
@ -127,6 +127,7 @@ LOCALE_PATHS = [
|
|||
LANGUAGES = [
|
||||
('en', _('English')),
|
||||
('fr', _('French')),
|
||||
('de', _('German')),
|
||||
('sv', _('Swedish')),
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue