Here is the base path for bat_type entity: admin/bat/config/types/manage/%bat_type
|
'base path' => 'admin/bat/config/types/manage/%bat_type', |
When entity translations are done using entity_translation module, then entity_translation programatically adds menu routes of such pattern: <base_path>/edit/add/%/%
in case of bat_type entity the full path will have 10 components:
admin/bat/config/types/manage/%bat_type/edit/add/%/%
but Drupal 7 supports only maximum 9 parts in menu path:

so as I result we will get 404 Not Found errors for translate pages of bat_type entity:

Here is the base path for
bat_typeentity:admin/bat/config/types/manage/%bat_typebat_drupal/modules/bat_unit/bat_unit.module
Line 194 in 67d355b
When entity translations are done using
entity_translationmodule, thenentity_translationprogramatically adds menu routes of such pattern:<base_path>/edit/add/%/%in case of
bat_typeentity the full path will have 10 components:admin/bat/config/types/manage/%bat_type/edit/add/%/%but Drupal 7 supports only maximum 9 parts in menu path:
so as I result we will get
404 Not Founderrors for translate pages of bat_type entity: