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
I have done a translation for Simplified Chinese language and ready for contribute that.
Also, there is a small fix for a translation text missing problem.
models.py line 72
models.py
diff --git a/oidc_provider/models.py b/oidc_provider/models.py index 6504238..2a16c22 100644 --- a/oidc_provider/models.py +++ b/oidc_provider/models.py @@ -69,7 +69,7 @@ class Client(models.Model): u' of their credentials. <b>Public</b> clients are incapable.')) client_id = models.CharField(max_length=255, unique=True, verbose_name=_(u'Client ID')) client_secret = models.CharField(max_length=255, blank=True, verbose_name=_(u'Client SECRET')) - response_types = models.ManyToManyField(ResponseType) + response_types = models.ManyToManyField(ResponseType, verbose_name=_("Response Type")) jwt_alg = models.CharField( max_length=10, choices=JWT_ALGS,
The translation is missing for "Response Type". This also affected other languages' translation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have done a translation for Simplified Chinese language and ready for contribute that.
Also, there is a small fix for a translation text missing problem.
models.py
line 72The translation is missing for "Response Type". This also affected other languages' translation.
The text was updated successfully, but these errors were encountered: