-
Notifications
You must be signed in to change notification settings - Fork 191
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
Russian slug to Latin #696
Comments
@mamedovramil Which version of djangocms-blog are you using. I believe in 1.2.3 the Or are you talking about category slugs? I fear there the flag is missing in version 1.2.3. |
PS: Just included the |
@fsbraun sorry wrong, only setting allow_unicode = False helps to solve my problem. But I can't change that without editing blog model. My version is 1.2.3 -- |
@mamedovramil All right, I misunderstood. You get Cyrillic letters proposed for the slug but need latin letters, right? This means right now you have to manually change the slug to latin letters. Can you check if category slugs behave as you propose? If I get this right, you propose a feature to make configurable in the settings. |
@fsbraun Correct. Category slug behave as I need. |
Thanks a lot @fsbraun for taking care of this. Hopefully we will be able to merge support for this soon |
When creating a title in Russian, slug is also created in Russian, but the Latin alphabet is required.
Setting allow_unicode = False in the model Post.translations.slug helps, but there is no separate setting for that.
The text was updated successfully, but these errors were encountered: