From 2475ee36a2ec0c9825ccea10683f7589e88239ca Mon Sep 17 00:00:00 2001 From: WikipediaLibraryBot <41753804+WikipediaLibraryBot@users.noreply.github.com> Date: Thu, 30 Jan 2025 12:25:12 +0000 Subject: [PATCH] commit 5938c8efcb62f8d0baf1015ef526f8da64029499 migrations --- .../migrations/0105_alter_userprofile_lang.py | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 TWLight/users/migrations/0105_alter_userprofile_lang.py diff --git a/TWLight/users/migrations/0105_alter_userprofile_lang.py b/TWLight/users/migrations/0105_alter_userprofile_lang.py new file mode 100644 index 000000000..37800fbdc --- /dev/null +++ b/TWLight/users/migrations/0105_alter_userprofile_lang.py @@ -0,0 +1,88 @@ +# Generated by Django 4.2.18 on 2025-01-30 12:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("users", "0104_alter_userprofile_lang"), + ] + + 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", "हिन्दी"), + ("hu", "magyar"), + ("hy", "հայերեն"), + ("ia", "interlingua"), + ("id", "Bahasa Indonesia"), + ("io", "Ido"), + ("it", "italiano"), + ("ja", "日本語"), + ("ko", "한국어"), + ("ks-arab", "کٲشُر"), + ("ku-latn", "kurdî"), + ("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, + ), + ), + ]