We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce:
>>> from collections import OrderedDict >>> from django.utils import translation >>> from django.utils.translation import gettext_lazy as _ >>> from extended_choices import Choices >>> STATES = Choices( ... ('ONLINE', 1, _('Online')), ... ('OFFLINE', 2, _('Offline')), ... dict_class=OrderedDict, ... ) >>> translation.activate('fr') >>> STATES.displays Traceback (most recent call last): File "/usr/local/lib/python3.6/code.py", line 91, in runcode exec(code, self.locals) File "<console>", line 1, in <module> KeyError: 'En ligne'
The text was updated successfully, but these errors were encountered:
Thanks for your report. I guess this one won't be easy.
I don't have time right now, but won't forget to look at this as soon as I can.
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce:
The text was updated successfully, but these errors were encountered: