2022-01-09 01:07:51 +00:00
|
|
|
# Generated by Django 3.2.10 on 2022-01-09 01:06
|
2022-01-08 15:38:14 +00:00
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2022-01-09 01:07:51 +00:00
|
|
|
("bookwyrm", "0124_auto_20220106_1759"),
|
2022-01-08 15:38:14 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
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)"),
|
|
|
|
("it-it", "Italiano (Italian)"),
|
|
|
|
("fr-fr", "Français (French)"),
|
|
|
|
("lt-lt", "Lietuvių (Lithuanian)"),
|
|
|
|
("no-no", "Norsk (Norwegian)"),
|
|
|
|
("pt-br", "Português do Brasil (Brazilian Portuguese)"),
|
|
|
|
("pt-pt", "Português Europeu (European Portuguese)"),
|
|
|
|
("zh-hans", "简体中文 (Simplified Chinese)"),
|
|
|
|
("zh-hant", "繁體中文 (Traditional Chinese)"),
|
|
|
|
],
|
|
|
|
max_length=255,
|
|
|
|
null=True,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]
|