Many efforts have been made to make Drupal 8 a great multilingual system. However, content types are never properly sorted when translations contain accentuated characters.
Content types are sorted using asort. Maybe we could set the locale beforehand.
Steps to reproduce:
Install Drupal 8
Enable the following modules
- Configuration Translation
- Content Translation
- Interface Translation
- Language
Add a language (French in the example)
Add a two content types (Show and Zone)
Translate the Show content type to Émission
Switch languages (fr/admin/structure/types)
Expected behavior
To have a list in this order
- Article
- Basic page
- Émission
- Zone
What happened instead
List was in this order:
- Article
- Basic page
- Zone
- Émission