Prepare for 1.3.3 release.
[mailman-postorious.git] / src / postorius / migrations / 0007_auto_20180712_0536.py
blobe237fba5dead73eb1235eb8035ac53d51098d811
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.14 on 2018-07-12 05:36
3 from __future__ import unicode_literals
5 from django.db import migrations, models
8 # flake8: noqa
11 class Migration(migrations.Migration):
13 dependencies = [
14 ('postorius', '0006_auto_20180711_1359'),
17 operations = [
18 migrations.AlterField(
19 model_name='emailtemplate',
20 name='language',
21 field=models.CharField(blank=True, choices=[('ar', 'Arabic'), ('ast', 'Asturian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('da', 'Danish'), ('de', 'German'), ('el', 'Greek'), ('es', 'Spanish'), ('et', 'Estonian'), ('eu', 'Euskara'), ('fi', 'Finnish'), ('fr', 'French'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hr', 'Croatian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('it', 'Italian'), ('ja', 'Japanese'), ('ko', 'Korean'), ('lt', 'Lithuanian'), ('nl', 'Dutch'), ('no', 'Norwegian'), ('pl', 'Polish'), ('pt', 'Protuguese'), ('pt_BR', 'Protuguese (Brazil)'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sr', 'Serbian'), ('sv', 'Swedish'), ('tr', 'Turkish'), ('uk', 'Ukrainian'), ('vi', 'Vietnamese'), ('zh_CN', 'Chinese'), ('zh_TW', 'Chinese (Taiwan)'), ('en', 'English (USA)')], help_text="Language for the template, this should be the list's preferred language.", max_length=5),