Adds Portuguese to the language list

This commit is contained in:
Mouse Reeve
2022-01-04 13:30:08 -08:00
parent 10792125ae
commit d8c682fb2b
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,34 @@
# Generated by Django 3.2.5 on 2022-01-04 21:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0122_alter_annualgoal_year"),
]
operations = [
migrations.AlterField(
model_name="user",
name="preferred_language",
field=models.CharField(
blank=True,
choices=[
("en-us", "English"),
("de-de", "Deutsch (German)"),
("es-es", "Español (Spanish)"),
("gl-es", "Galego (Galician)"),
("fr-fr", "Français (French)"),
("lt-lt", "Lietuvių (Lithuanian)"),
("pt-pt", "Portug- Brasil uês (Portuguese)"),
("pt-br", "Português - Brasil (Brazilian Portuguese)"),
("zh-hans", "简体中文 (Simplified Chinese)"),
("zh-hant", "繁體中文 (Traditional Chinese)"),
],
max_length=255,
null=True,
),
),
]