mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-19 07:54:08 +01:00
19 lines
545 B
Python
19 lines
545 B
Python
# Generated by Django 5.1.5 on 2025-01-25 18:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0015_alter_usersettings_language'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='usersettings',
|
|
name='language',
|
|
field=models.CharField(choices=[('auto', 'Auto'), ('en', 'English'), ('nl', 'Nederlands'), ('pt-br', 'Português (Brasil)')], default='auto', max_length=10, verbose_name='Language'),
|
|
),
|
|
]
|