locale(pt-BR): update translation

This commit is contained in:
Herculino Trotta
2025-01-20 19:46:50 -03:00
parent c089c49b7d
commit e3bab503a0
3 changed files with 225 additions and 180 deletions

View File

@@ -82,10 +82,12 @@ class UserSettingsForm(forms.ModelForm):
]
date_format = forms.ChoiceField(
choices=DATE_FORMAT_CHOICES, initial="SHORT_DATE_FORMAT"
choices=DATE_FORMAT_CHOICES, initial="SHORT_DATE_FORMAT", label=_("Date Format")
)
datetime_format = forms.ChoiceField(
choices=DATETIME_FORMAT_CHOICES, initial="SHORT_DATETIME_FORMAT"
choices=DATETIME_FORMAT_CHOICES,
initial="SHORT_DATETIME_FORMAT",
label=_("Datetime Format"),
)
class Meta: