Use underscore in locales

This commit is contained in:
Alexandre Iooss 2020-09-13 20:10:26 +02:00
parent 0f53ac45f7
commit 2270a0aa82
2 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ from django.utils.translation import gettext_lazy as _
LANGUAGES = [
('de', _('German')),
('en', _('English')),
('en-pirate', _('Pirate Slang')),
('en_pirate', _('Pirate Slang')),
('es', _('Spanish')),
('fr', _('French')),
]