Skip to content

Commit 89666ec

Browse files
commit 30251bb migrations
1 parent 30251bb commit 89666ec

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# Generated by Django 4.2.21 on 2025-06-03 16:48
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("users", "0106_alter_userprofile_lang"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="userprofile",
14+
name="lang",
15+
field=models.CharField(
16+
blank=True,
17+
choices=[
18+
("ar", "العربية"),
19+
("as", "অসমীয়া"),
20+
("bcl", "Bikol Central"),
21+
("bn", "বাংলা"),
22+
("br", "brezhoneg"),
23+
("ca", "català"),
24+
("ce", "нохчийн"),
25+
("cy", "Cymraeg"),
26+
("da", "dansk"),
27+
("dag", "dagbanli"),
28+
("de", "Deutsch"),
29+
("diq", "Zazaki"),
30+
("en", "English"),
31+
("en-gb", "British English"),
32+
("eo", "Esperanto"),
33+
("es", "español"),
34+
("fa", "فارسی"),
35+
("fi", "suomi"),
36+
("fr", "français"),
37+
("gcf", "Guadeloupean Creole French"),
38+
("gu", "ગુજરાતી"),
39+
("guw", "gungbe"),
40+
("he", "עברית"),
41+
("hi", "हिन्दी"),
42+
("hu", "magyar"),
43+
("hy", "հայերեն"),
44+
("ia", "interlingua"),
45+
("id", "Bahasa Indonesia"),
46+
("io", "Ido"),
47+
("it", "italiano"),
48+
("ja", "日本語"),
49+
("kaa", "Qaraqalpaqsha"),
50+
("ko", "한국어"),
51+
("ks", "ks-arab"),
52+
("ku-latn", "kurdî"),
53+
("lb", "Lëtzebuergesch"),
54+
("lt", "lietuvių"),
55+
("lv", "latviešu"),
56+
("mk", "македонски"),
57+
("mni", "ꯃꯤꯇꯩ ꯂꯣꯟ"),
58+
("mnw", "ဘာသာ မန်"),
59+
("mr", "मराठी"),
60+
("ms", "Bahasa Melayu"),
61+
("my", "မြန်မာဘာသာ"),
62+
("nl", "Nederlands"),
63+
("pa", "pa-guru"),
64+
("pl", "polski"),
65+
("pnb", "پنجابی"),
66+
("pt", "português"),
67+
("pt-br", "português do Brasil"),
68+
("ro", "română"),
69+
("ru", "русский"),
70+
("scn", "sicilianu"),
71+
("sk", "slovenčina"),
72+
("skr-arab", "سرائیکی"),
73+
("sl", "slovenščina"),
74+
("sr-ec", "sr-cyrl"),
75+
("sv", "svenska"),
76+
("ta", "தமிழ்"),
77+
("tr", "Türkçe"),
78+
("uk", "українська"),
79+
("vi", "Tiếng Việt"),
80+
("yi", "ייִדיש"),
81+
("zh-hans", "中文(简体)"),
82+
("zh-hant", "中文(繁體)"),
83+
],
84+
help_text="Language",
85+
max_length=128,
86+
null=True,
87+
),
88+
),
89+
]

0 commit comments

Comments
 (0)