- Issue created by @jan kellermann
Hi!
Thank you for your work! I have added some suggestions to the commit, please check.- 🇩🇪Germany jan kellermann
Thank you for feedback! I changed the MR like suggested.
Some question (a little offtopic):
You hardcode the bundles:
```
$this->checkContentTypeTranslationEnabled(StringType::NODE, [
'article',
'page',
]);
$this->checkContentTypeTranslationEnabled(StringType::COMMENT, ['comment']);
$this->checkContentTypeTranslationEnabled(StringType::TAG, ['tags']);
```
Wouldnt it be better to get all bundles per content type? Wouldnt it be better to get all bundles per content type?
Are there any other significant items (bundles) that are not included currently? I guess it would be better, but not sure if the module would support their translation automatically. If the properties to translate are the same, then maybe...
- 🇩🇪Germany jan kellermann
Every Drupal has its own entities. In webt.module you are testing for instanceof
ContentEntityBase
and that is a good way.Many modules are creating their own entities. There are config entities also which may need translation.
Ok, thanks for suggestion, I will look into this! It looks like $translatableEntityKeys property could be used to determine which entity fields are translatable.
Versions 1.1.x-dev and 1.1.0 add translation to all enabled & translatable entity types which are now detected dynamically. No need to check for comment type anymore, so will close the MR.