-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f00590a
commit 92e0b90
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# Generated by Django 4.2.18 on 2025-01-16 12:26 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("users", "0102_editor_ignore_wp_account_age_requirement_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="userprofile", | ||
name="lang", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("ar", "العربية"), | ||
("as", "অসমীয়া"), | ||
("bcl", "Bikol Central"), | ||
("bn", "বাংলা"), | ||
("br", "brezhoneg"), | ||
("ca", "català"), | ||
("ce", "нохчийн"), | ||
("cy", "Cymraeg"), | ||
("da", "dansk"), | ||
("dag", "dagbanli"), | ||
("de", "Deutsch"), | ||
("diq", "Zazaki"), | ||
("en", "English"), | ||
("en-gb", "British English"), | ||
("eo", "Esperanto"), | ||
("es", "español"), | ||
("fa", "فارسی"), | ||
("fi", "suomi"), | ||
("fr", "français"), | ||
("gcf", "Guadeloupean Creole French"), | ||
("gu", "ગુજરાતી"), | ||
("guw", "gungbe"), | ||
("he", "עברית"), | ||
("hi", "हिन्दी"), | ||
("hy", "հայերեն"), | ||
("ia", "interlingua"), | ||
("id", "Bahasa Indonesia"), | ||
("io", "Ido"), | ||
("it", "italiano"), | ||
("ja", "日本語"), | ||
("ko", "한국어"), | ||
("ks-arab", "کٲشُر"), | ||
("lb", "Lëtzebuergesch"), | ||
("lt", "lietuvių"), | ||
("lv", "latviešu"), | ||
("mk", "македонски"), | ||
("mni", "ꯃꯤꯇꯩ ꯂꯣꯟ"), | ||
("mnw", "ဘာသာ မန်"), | ||
("mr", "मराठी"), | ||
("ms", "Bahasa Melayu"), | ||
("my", "မြန်မာဘာသာ"), | ||
("nl", "Nederlands"), | ||
("pa", "pa-guru"), | ||
("pl", "polski"), | ||
("pnb", "پنجابی"), | ||
("pt", "português"), | ||
("pt-br", "português do Brasil"), | ||
("ro", "română"), | ||
("ru", "русский"), | ||
("scn", "sicilianu"), | ||
("sk", "slovenčina"), | ||
("skr-arab", "سرائیکی"), | ||
("sl", "slovenščina"), | ||
("sr-ec", "sr-cyrl"), | ||
("sv", "svenska"), | ||
("ta", "தமிழ்"), | ||
("tr", "Türkçe"), | ||
("uk", "українська"), | ||
("vi", "Tiếng Việt"), | ||
("yi", "ייִדיש"), | ||
("zh-hans", "中文(简体)"), | ||
("zh-hant", "中文(繁體)"), | ||
], | ||
help_text="Language", | ||
max_length=128, | ||
null=True, | ||
), | ||
), | ||
] |