Skip to content

Commit

Permalink
commit f00590a migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
WikipediaLibraryBot committed Jan 16, 2025
1 parent f00590a commit 92e0b90
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions TWLight/users/migrations/0103_alter_userprofile_lang.py
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,
),
),
]

0 comments on commit 92e0b90

Please sign in to comment.