🌐(backend) add Dutch language support to backend

Add Dutch (nl) language configuration to backend to match available frontend
languages. Ensures consistent language options across the entire application.
This commit is contained in:
lebaudantoine
2025-04-22 16:54:08 +02:00
committed by aleb_the_flash
parent 35cc6cd902
commit af6ac954e9
6 changed files with 458 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.8 on 2025-04-22 14:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0012_alter_room_access_level'),
]
operations = [
migrations.AlterField(
model_name='user',
name='language',
field=models.CharField(choices="(('en-us', 'English'), ('fr-fr', 'French'), ('nl-nl', 'Dutch'))", default='en-us', help_text='The language in which the user wants to see the interface.', max_length=10, verbose_name='language'),
),
]