mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-11 19:31:04 +00:00
Adds Brazilian Portuguese locale
This commit is contained in:
parent
d7f8a7b99e
commit
69110497ae
3 changed files with 214 additions and 195 deletions
18
bookwyrm/migrations/0107_alter_user_preferred_language.py
Normal file
18
bookwyrm/migrations/0107_alter_user_preferred_language.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 3.2.5 on 2021-10-11 16:22
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('bookwyrm', '0106_user_preferred_language'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='user',
|
||||||
|
name='preferred_language',
|
||||||
|
field=models.CharField(blank=True, choices=[('en-us', 'English'), ('de-de', 'Deutsch (German)'), ('es', 'Español (Spanish)'), ('fr-fr', 'Français (French)'), ('pt-br', 'Português - Brasil (Brazilian Portugues)'), ('zh-hans', '简体中文 (Simplified Chinese)'), ('zh-hant', '繁體中文 (Traditional Chinese)')], max_length=255, null=True),
|
||||||
|
),
|
||||||
|
]
|
|
@ -162,11 +162,12 @@ AUTH_PASSWORD_VALIDATORS = [
|
||||||
LANGUAGE_CODE = "en-us"
|
LANGUAGE_CODE = "en-us"
|
||||||
LANGUAGES = [
|
LANGUAGES = [
|
||||||
("en-us", _("English")),
|
("en-us", _("English")),
|
||||||
("de-de", _("Deutsch (German)")), # German
|
("de-de", _("Deutsch (German)")),
|
||||||
("es", _("Español (Spanish)")), # Spanish
|
("es", _("Español (Spanish)")),
|
||||||
("fr-fr", _("Français (French)")), # French
|
("fr-fr", _("Français (French)")),
|
||||||
("zh-hans", _("简体中文 (Simplified Chinese)")), # Simplified Chinese
|
("pt-br", _("Português - Brasil (Brazilian Portugues)")),
|
||||||
("zh-hant", _("繁體中文 (Traditional Chinese)")), # Traditional Chinese
|
("zh-hans", _("简体中文 (Simplified Chinese)")),
|
||||||
|
("zh-hant", _("繁體中文 (Traditional Chinese)")),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue