Skip to content

Commit

Permalink
commit 5938c8e migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
WikipediaLibraryBot committed Jan 30, 2025
1 parent 5938c8e commit 2475ee3
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions TWLight/users/migrations/0105_alter_userprofile_lang.py
Original file line number Diff line number Diff line change
@@ -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,
),
),
]

0 comments on commit 2475ee3

Please sign in to comment.