-
Notifications
You must be signed in to change notification settings - Fork 320
Add Hungarian locale #643
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Hungarian locale #643
Conversation
karolyi
commented
Sep 23, 2025
- Remove fuzzy markers from de locale messages for national/international phone number validation in form fields.
- Refine German translations for phone number input prompts to include international prefix examples.
- Introduce new hu locale django.po with translations for form fields, model fields, serializer fields, and validators for phone numbers.
Really nigga... Coverals shitting the bed isn't really my problem and it seems it does it even if I restart the pipeline (force-push). Please merge & release ASAP, losing german translations are a blunder. I took the opportunity and added hungarian translations too, being trilingual. |
7d29991
to
2f03e70
Compare
Thanks! An earlier PR was addressing more locales. I merged it, then rebased your branch on it. |
Yes, I was following what you've been doing (getting emails) and things look good. Just a humble advice, you want to use |
2f03e70
to
5dac0f3
Compare
The lines can easily change with code change, which requires updating the messages file frequently. Keep the file as a pointer to help technical-savvy translators find the message context, but without a line number. They’ll be able to search within the file easily. Messages were collected with: ``` django-admin makemessages --all --add-location=file ``` Recommended-by: stefanfoulis#643 (comment)
Thanks for the advice, proposed in #644. |
The lines can easily change with code change, which requires updating the messages file frequently. Keep the file as a pointer to help technical-savvy translators find the message context, but without a line number. They’ll be able to search within the file easily. Messages were collected with: ``` django-admin makemessages --all --add-location=file ``` Recommended-by: #643 (comment)